*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --black: #111111;
      --white: #FDFAF4;
      --yellow: #F5C842;
      --red: #D93A2B;
      --gray: #888;
      --placeholder: #D8D4CC;
      --font: 'Inter', sans-serif;
    }

    html { scroll-behavior: smooth; }

    body.nav-open {
      overflow: hidden;
    }

    body {
      font-family: var(--font-base, var(--font));
      font-size: var(--fs-base, 16px);
      background: var(--white);
      color: var(--black);
      overflow-x: hidden;
    }

    /* ─────────────────────────────
       NAV
    ───────────────────────────── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 40px;
      background: var(--white);
      border-bottom: 1.5px solid var(--black);
      gap: 20px;
    }

    nav img.nav-logo { height: 42px; width: auto; }

    .mobile-menu {
      display: none;
      width: 42px;
      height: 42px;
      border: 1.5px solid var(--black);
      background: var(--white);
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
    }

    .mobile-menu span {
      display: block;
      width: 18px;
      height: 2px;
      background: var(--black);
      transition: transform 0.18s ease, opacity 0.18s ease;
    }

    nav.is-open .mobile-menu span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    nav.is-open .mobile-menu span:nth-child(2) { opacity: 0; }
    nav.is-open .mobile-menu span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .nav-links {
      display: flex;
      gap: 28px;
      align-items: center;
    }

    nav a {
      font-family: var(--font-nav, var(--font-base, var(--font)));
      text-decoration: none;
      color: var(--black);
      font-weight: 700;
      font-size: var(--fs-nav, 12px);
      letter-spacing: 0.09em;
      text-transform: uppercase;
      border-bottom: 2px solid transparent;
      padding-bottom: 2px;
      transition: border-color 0.2s;
    }
    nav a:hover { border-color: var(--yellow); }

    /* Language switcher */
    .lang-switch {
      display: flex;
      align-items: center;
      gap: 4px;
      border: 1.5px solid var(--black);
      padding: 5px 8px;
      margin-left: 8px;
    }

    .lang-switch a {
      font-family: var(--font-nav, var(--font-base, var(--font)));
      background: none;
      border: none;
      cursor: pointer;
      font-size: var(--fs-nav, 11px);
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gray);
      padding: 2px 5px;
      transition: color 0.15s, background 0.15s;
      line-height: 1;
      text-decoration: none;
    }

    .lang-switch a.active {
      background: var(--black);
      color: var(--white);
    }

    .lang-switch a:hover:not(.active) { color: var(--black); }

    .lang-switch .lang-sep {
      color: var(--placeholder);
      font-size: 11px;
      user-select: none;
    }

    .nav-ig {
      font-family: var(--font-nav, var(--font-base, var(--font)));
      background: var(--black);
      color: var(--white) !important;
      padding: 8px 16px;
      border-bottom: none !important;
      transition: background 0.2s, color 0.2s !important;
    }
    .nav-ig:hover { background: var(--yellow) !important; color: var(--black) !important; }

    /* ─────────────────────────────
       PLACEHOLDER IMAGES
    ───────────────────────────── */
    .img-placeholder {
      width: 100%; height: 100%;
      background: var(--placeholder);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
      text-align: center;
      padding: 20px;
    }

    .img-placeholder .ph-icon { font-size: 28px; opacity: 0.5; }

    .img-placeholder .ph-label {
      font-family: var(--font-label, var(--font-base, var(--font)));
      font-size: var(--fs-label, 11px);
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #666;
      line-height: 1.4;
    }

    /* ─────────────────────────────
       HERO
    ───────────────────────────── */
    .hero {
      height: 100vh;
      padding-top: 72px; /* nav height */
      display: grid;
      grid-template-columns: 1fr 1fr;
    }

    .hero-left {
      padding: 0 60px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 0;
    }

    .hero-tag {
      font-family: var(--font-label, var(--font-base, var(--font)));
      display: inline-block;
      background: var(--yellow);
      color: var(--black);
      font-size: var(--fs-label, 11px);
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      padding: 5px 11px;
      margin-bottom: 24px;
      width: fit-content;
    }

    /* HEADING HIERARCHY */
    .hero h1 {
      font-family: var(--font-h1, var(--font-base, var(--font)));
      font-size: var(--fs-h1, clamp(72px, 10vw, 130px));
      font-weight: 900;
      letter-spacing: -0.04em;
      line-height: 0.9;
      margin-bottom: 14px;
    }

    .hero h2 {
      font-family: var(--font-h2, var(--font-base, var(--font)));
      font-size: var(--fs-h2, clamp(16px, 2vw, 22px));
      font-weight: 500;
      letter-spacing: 0.01em;
      line-height: 1.3;
      color: var(--black);
      margin-bottom: 10px;
    }

    .hero h3 {
      font-family: var(--font-h3, var(--font-base, var(--font)));
      font-size: var(--fs-h3, clamp(12px, 1.2vw, 14px));
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gray);
      margin-bottom: 40px;
    }

    .hero-claim-box {
      border-left: 4px solid var(--yellow);
      padding-left: 18px;
      margin-bottom: 40px;
    }

    .hero-claim-box p {
      font-family: var(--font-p, var(--font-base, var(--font)));
      font-size: var(--fs-p, clamp(20px, 2.5vw, 28px));
      font-weight: 900;
      letter-spacing: -0.02em;
      line-height: 1.15;
    }

    .hero-claim-box .heart { color: var(--red); }

    .hero-ctas {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .hero-right {
      position: relative;
      height: 100%;
      background: var(--black);
      overflow: hidden;
    }

    .hero-right img {
      width: 100%; height: 100%;
      object-fit: cover;
      opacity: 0.88;
      will-change: transform;
    }

    .hero-right .hero-badge {
      font-family: var(--font-label, var(--font-base, var(--font)));
      position: absolute;
      bottom: 36px; right: 36px;
      background: var(--yellow);
      color: var(--black);
      font-size: var(--fs-label, 11px);
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      padding: 12px 14px;
      text-align: center;
      line-height: 1.5;
    }

    /* ─────────────────────────────
       BUTTONS
    ───────────────────────────── */
    .btn {
      font-family: var(--font-button, var(--font-base, var(--font)));
      display: inline-block;
      text-decoration: none;
      font-size: var(--fs-button, 12px);
      font-weight: 700;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      padding: 13px 26px;
      border: 2px solid var(--black);
      transition: background 0.2s, color 0.2s, border-color 0.2s;
      cursor: pointer;
    }

    .btn-fill { background: var(--black); color: var(--white); }
    .btn-fill:hover { background: var(--yellow); color: var(--black); border-color: var(--yellow); }

    .btn-outline { background: transparent; color: var(--black); }
    .btn-outline:hover { background: var(--black); color: var(--white); }

    /* ─────────────────────────────
       CLAIM STRIP
    ───────────────────────────── */
    .claim-strip {
      background: var(--black);
      color: var(--white);
      padding: 22px 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 48px;
      flex-wrap: wrap;
    }

    .strip-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-label, var(--font-base, var(--font)));
      font-size: var(--fs-label, 11px);
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .strip-item .dot {
      width: 5px; height: 5px;
      background: var(--yellow);
      border-radius: 50%;
      flex-shrink: 0;
    }

    /* ─────────────────────────────
       SECTION BASE
    ───────────────────────────── */
    section { padding: 96px 60px; }

    .section-label {
      font-family: var(--font-label, var(--font-base, var(--font)));
      font-size: var(--fs-label, 11px);
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gray);
      margin-bottom: 12px;
    }

    .section-title {
      font-family: var(--font-h2, var(--font-base, var(--font)));
      font-size: var(--fs-h2, clamp(32px, 4vw, 52px));
      font-weight: 900;
      letter-spacing: -0.03em;
      line-height: 1.0;
      margin-bottom: 18px;
    }

    .section-desc {
      font-family: var(--font-p, var(--font-base, var(--font)));
      font-size: var(--fs-p, 15px);
      color: var(--gray);
      line-height: 1.7;
      max-width: 500px;
    }

    /* ─────────────────────────────
       ENTREPANS
    ───────────────────────────── */
    .entrepans-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: end;
      margin-bottom: 56px;
    }

    .note-veg {
      font-family: var(--font-p, var(--font-base, var(--font)));
      font-size: var(--fs-p, 12px);
      color: var(--gray);
      margin-top: 20px;
      line-height: 1.7;
      max-width: 480px;
    }

    /* 2 filas × 2 cols → 4 items. Cada uno con foto + info */
    .ent-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2px;
    }
    /* En móvil (2 cols) span-4 ocupa tota la fila, span-2 ocupa tota la fila també */
    @media (max-width: 960px) {
      .ent-grid .ent-card[style*="span 4"],
      .ent-grid .ent-card[style*="span 2"] { grid-column: span 2; }
    }

    .ent-card {
      position: relative;
      aspect-ratio: 3/4;
      overflow: hidden;
      background: var(--placeholder);
    }

    .ent-card img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
    }

    .ent-card:hover img { transform: scale(1.04); }

    .ent-info {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 28px 18px 18px;
      background: linear-gradient(transparent, rgba(0,0,0,0.78));
      color: white;
    }

    .ent-name {
      font-family: var(--font-h3, var(--font-base, var(--font)));
      font-size: var(--fs-h3, 13px);
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.07em;
      line-height: 1.2;
      margin-bottom: 4px;
    }

    .ent-desc {
      font-family: var(--font-p, var(--font-base, var(--font)));
      font-size: var(--fs-p, 11px);
      opacity: 0.75;
      line-height: 1.4;
      margin-bottom: 8px;
    }

    .ent-price {
      font-family: var(--font-label, var(--font-base, var(--font)));
      display: inline-block;
      background: var(--yellow);
      color: var(--black);
      font-size: var(--fs-label, 12px);
      font-weight: 800;
      padding: 3px 8px;
    }

    /* placeholder inside card with gradient */
    .ent-card .img-placeholder {
      position: absolute;
      inset: 0;
    }

    /* ─────────────────────────────
       TORRADES (fondo negro)
    ───────────────────────────── */
    .torrades {
      background: var(--black);
      color: var(--white);
    }

    .torrades .section-label { color: #555; }
    .torrades .section-desc { color: #999; }

    .torrades-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      margin-top: 56px;
      align-items: start;
    }

    /* foto izq + 2 placeholders apilados */
    .torrades-photos {
      display: grid;
      grid-template-rows: auto auto;
      gap: 2px;
    }

    .torrades-photo-main {
      position: relative;
      aspect-ratio: 4/3;
      overflow: hidden;
      background: var(--placeholder);
    }

    .torrades-photo-main img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s;
    }

    .torrades-photo-main .img-placeholder {
      position: absolute;
      inset: 0;
    }

    .torrades-photo-main:hover img { transform: scale(1.04); }

    .torrades-photos-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2px;
    }

    /* Galeria tipus “widgets”: 1 espai = mitat, 2 espais = amplada completa */
    .torrades-photo-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2px;
    }

    .torrades-photo-cell {
      position: relative;
      overflow: hidden;
      background: var(--placeholder);
    }

    .torrades-photo-cell--half {
      grid-column: span 1;
      aspect-ratio: 1;
    }

    .torrades-photo-cell--full {
      grid-column: span 2;
      aspect-ratio: 2 / 1;
    }

    .torrades-photo-cell img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s;
    }

    .torrades-photo-cell:hover img { transform: scale(1.04); }

    .torrades-photo-cell .img-placeholder {
      position: absolute;
      inset: 0;
    }

    .torrades-photo-sm {
      position: relative;
      aspect-ratio: 1;
      overflow: hidden;
      background: var(--placeholder);
    }

    .torrades-photo-sm .img-placeholder {
      position: absolute;
      inset: 0;
    }

    .torrades-photo-sm img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
    }

    .menu-list { display: flex; flex-direction: column; }

    .menu-item {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 20px;
      padding: 20px 0;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .menu-item:first-child { border-top: 1px solid rgba(255,255,255,0.08); }

    .mi-left { flex: 1; }

    .mi-name {
      font-family: var(--font-h3, var(--font-base, var(--font)));
      font-size: var(--fs-h3, 14px);
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.07em;
      margin-bottom: 5px;
    }

    .mi-desc {
      font-family: var(--font-p, var(--font-base, var(--font)));
      font-size: var(--fs-p, 12px);
      color: #888;
      line-height: 1.55;
    }

    .mi-extras {
      font-family: var(--font-p, var(--font-base, var(--font)));
      font-size: calc(var(--fs-p, 11px) - 1px);
      color: #666;
      margin-top: 5px;
      font-style: italic;
    }

    .mi-price {
      font-family: var(--font-h3, var(--font-base, var(--font)));
      font-size: var(--fs-h3, 16px);
      font-weight: 800;
      color: var(--yellow);
      flex-shrink: 0;
      padding-top: 1px;
    }

    /* ─────────────────────────────
       BRUNCH (Bowls + Pancakes)
    ───────────────────────────── */
    .brunch-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: end;
      margin-bottom: 56px;
    }

    /* Grid: foto grande arriba, 3 celdas abajo */
    .brunch-mosaic {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
    }

    .bm-main {
      grid-column: span 3;
      aspect-ratio: 16/7;
      overflow: hidden;
      background: var(--placeholder);
      position: relative;
    }

    .bm-cell {
      aspect-ratio: 1;
      overflow: hidden;
      background: var(--placeholder);
      position: relative;
    }

    .bm-cell--span1 {
      grid-column: span 1;
    }

    .bm-cell--span2 {
      grid-column: span 2;
      aspect-ratio: 2 / 1;
    }

    .bm-cell--span3 {
      grid-column: span 3;
      aspect-ratio: 16 / 7;
    }

    .bm-main img, .bm-cell img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s;
    }

    .bm-main:hover img, .bm-cell:hover img { transform: scale(1.03); }

    .bm-main .img-placeholder,
    .bm-cell .img-placeholder {
      position: absolute;
      inset: 0;
    }

    .bm-label {
      font-family: var(--font-label, var(--font-base, var(--font)));
      position: absolute;
      top: 16px; left: 16px;
      background: var(--yellow);
      color: var(--black);
      font-size: var(--fs-label, 10px);
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      padding: 4px 9px;
      z-index: 2;
    }

    .bm-info {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 28px 18px 16px;
      background: linear-gradient(transparent, rgba(0,0,0,0.7));
      color: white;
      z-index: 2;
    }

    .bm-name {
      font-family: var(--font-h3, var(--font-base, var(--font)));
      font-size: var(--fs-h3, 15px);
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      line-height: 1.2;
    }

    .bm-price {
      font-family: var(--font-h3, var(--font-base, var(--font)));
      font-size: var(--fs-h3, 13px);
      color: var(--yellow);
      font-weight: 700;
      margin-top: 3px;
    }

    /* ─────────────────────────────
       INFO BAND (amarilla)
    ───────────────────────────── */
    .info-band {
      background: var(--yellow);
      padding: 80px 60px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .info-band h2 {
      font-family: var(--font-h2, var(--font-base, var(--font)));
      font-size: var(--fs-h2, clamp(28px, 3.5vw, 46px));
      font-weight: 900;
      letter-spacing: -0.03em;
      line-height: 1.05;
      margin-bottom: 32px;
    }

    .info-items { display: flex; flex-direction: column; gap: 18px; }

    .info-row {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-family: var(--font-p, var(--font-base, var(--font)));
      font-size: var(--fs-p, 14px);
      line-height: 1.5;
    }

    .ir-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
    .info-row strong { font-weight: 800; display: block; margin-bottom: 2px; }
    .info-row span { font-family: var(--font-p, var(--font-base, var(--font))); font-size: var(--fs-p, 13px); color: #333; }

    .info-img {
      aspect-ratio: 1;
      overflow: hidden;
    }

    .info-img img {
      width: 100%; height: 100%;
      object-fit: cover;
    }

    /* ─────────────────────────────
       EXTERIOR + VISITA
    ───────────────────────────── */
    .exterior {
      display: grid;
      grid-template-columns: 1fr 1fr;
      padding: 0;
    }

    .exterior-img {
      padding: 80px 60px;
      background: #F0EBE0;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

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

    .exterior-text { padding: 80px 60px; }

    .xt-address {
      font-family: var(--font-h2, var(--font-base, var(--font)));
      font-size: var(--fs-h2, 22px);
      font-weight: 800;
      margin-bottom: 4px;
    }

    .xt-city {
      font-family: var(--font-p, var(--font-base, var(--font)));
      font-size: var(--fs-p, 14px);
      color: var(--gray);
      margin-bottom: 36px;
    }

    .hours-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px 32px;
      margin-bottom: 12px;
    }

    .hour-item .day {
      font-family: var(--font-label, var(--font-base, var(--font)));
      font-size: var(--fs-label, 10px);
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gray);
      margin-bottom: 3px;
    }

    .hour-item .time { font-family: var(--font-h3, var(--font-base, var(--font))); font-size: var(--fs-h3, 17px); font-weight: 800; }

    .hours-note {
      font-family: var(--font-p, var(--font-base, var(--font)));
      font-size: var(--fs-p, 12px);
      color: var(--gray);
      margin-bottom: 36px;
      margin-top: 4px;
    }

    /* ─────────────────────────────
       CAFÉ MENU
    ───────────────────────────── */
    .cafe-menu {
      background: #F0EBE0;
    }

    .cafe-header { margin-bottom: 56px; }

    .cafe-cols {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
    }

    .cafe-col {
      background: var(--white);
      padding: 36px 32px;
    }

    .cafe-col-title {
      font-family: var(--font-h3, var(--font-base, var(--font)));
      font-size: var(--fs-h3, 12px);
      font-weight: 800;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      margin-bottom: 24px;
      padding-bottom: 12px;
      border-bottom: 2px solid var(--black);
    }

    .ci {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      gap: 8px;
      padding: 7px 0;
      border-bottom: 1px solid #e8e3d8;
      font-family: var(--font-p, var(--font-base, var(--font)));
      font-size: var(--fs-p, 13px);
    }

    .ci:last-child { border-bottom: none; }
    .ci-name { font-weight: 400; }
    .ci-price { font-weight: 700; flex-shrink: 0; }

    /* ─────────────────────────────
       INSTAGRAM CTA
    ───────────────────────────── */
    .instagram {
      background: var(--black);
      color: var(--white);
      padding: 96px 60px;
      text-align: center;
    }

    .instagram .section-label { color: #555; }
    .instagram .section-title { margin: 0 auto 14px; }
    .instagram .section-desc { margin: 0 auto 48px; color: #666; }

    .ig-handle {
      font-family: var(--font-h2, var(--font-base, var(--font)));
      display: inline-block;
      font-size: var(--fs-h2, 56px);
      font-weight: 900;
      color: var(--yellow);
      text-decoration: none;
      letter-spacing: -0.02em;
      border-bottom: 4px solid transparent;
      padding-bottom: 4px;
      transition: border-color 0.2s;
    }
    .ig-handle:hover { border-color: var(--yellow); }

    /* ─────────────────────────────
       FOOTER
    ───────────────────────────── */
    footer {
      background: var(--white);
      border-top: 1.5px solid var(--black);
      padding: 36px 60px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
    }

    footer img { height: 34px; width: auto; }

    .foot-center {
      font-size: var(--fs-base, 12px);
      color: var(--gray);
      text-align: center;
      line-height: 1.7;
    }

    .foot-right {
      font-size: var(--fs-base, 12px);
      text-align: right;
      line-height: 1.7;
    }

    .foot-right a { text-decoration: none; color: var(--black); font-weight: 700; }
    .foot-right a:hover { color: var(--red); }

    /* ─────────────────────────────
       RESPONSIVE
    ───────────────────────────── */
    @media (max-width: 960px) {
      nav { padding: 12px 20px; }
      .mobile-menu { display: flex; margin-left: auto; }
      .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 99;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 14px 20px 18px;
        background: var(--white);
        border-bottom: 1.5px solid var(--black);
        max-height: calc(100vh - 67px);
        max-height: calc(100dvh - 67px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
      }
      nav.is-open .nav-links { display: flex; }
      .nav-links a {
        display: block;
        padding: 13px 0;
        border-bottom: 1px solid rgba(17, 17, 17, 0.14);
      }
      .lang-switch {
        justify-content: center;
        margin: 12px 0 4px;
        padding: 9px 10px;
      }
      .lang-switch a {
        display: inline-flex;
        border-bottom: none;
        padding: 5px 8px;
      }
      .nav-ig {
        margin-top: 10px;
        text-align: center;
        border-bottom: none !important;
      }

      section { padding: 64px 24px; }

      .hero { grid-template-columns: 1fr; height: auto; min-height: 100vh; }
      .hero-right {
        display: block;
        height: auto;
        min-height: 260px;
        aspect-ratio: 4 / 3;
      }
      .hero-left { padding: 24px 24px; }

      .claim-strip { gap: 20px; padding: 18px 24px; }

      .entrepans-header,
      .brunch-header { grid-template-columns: 1fr; gap: 20px; }

      .ent-grid { grid-template-columns: 1fr; }
      .ent-card {
        grid-column: 1 / -1 !important;
        min-height: 280px;
        aspect-ratio: 4 / 5;
      }

      .torrades-layout { grid-template-columns: 1fr; gap: 40px; }
      .torrades-photo-main {
        min-height: 240px;
      }
      .torrades-photo-grid,
      .torrades-photos-row {
        grid-template-columns: 1fr;
      }
      .torrades-photo-cell,
      .torrades-photo-cell--half,
      .torrades-photo-cell--full,
      .torrades-photo-sm {
        grid-column: 1 / -1 !important;
        min-height: 220px;
        aspect-ratio: 4 / 3;
      }
      .bm-main,
      .bm-cell,
      .bm-cell--span1,
      .bm-cell--span2,
      .bm-cell--span3 {
        grid-column: 1 / -1 !important;
        min-height: 220px;
        aspect-ratio: 4 / 3;
      }
      .ent-card img,
      .torrades-photo-main img,
      .torrades-photo-cell img,
      .torrades-photo-sm img,
      .bm-main img,
      .bm-cell img,
      .info-img img,
      .exterior-img img {
        width: 100%;
        min-height: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }
      .brunch-mosaic {
        grid-template-columns: 1fr;
      }

      .info-band { grid-template-columns: 1fr; padding: 60px 24px; gap: 36px; }
      .info-img {
        display: block;
        width: 100%;
        min-height: 240px;
        max-height: 420px;
      }

      .exterior { grid-template-columns: 1fr; }
      .exterior-img, .exterior-text { padding: 48px 24px; }

      .cafe-cols { grid-template-columns: 1fr; gap: 2px; }
      .cafe-menu { padding: 64px 24px; }

      .instagram { padding: 64px 24px; }

      footer { flex-direction: column; text-align: center; padding: 28px 24px; }
      footer .foot-right { text-align: center; }

      .hours-grid { grid-template-columns: 1fr; }
    }
