/*
Theme styles for Azul Cantina & Grill.
Cascade contract: rules that style Elementor widget internals are prefixed with
`body .elementor` so they beat Elementor's kit defaults (loaded after this sheet
in the editor iframe) without beating the client's own per-widget settings.
*/

:root {
  --navy: #0e2a4f;
  --navy-2: #123561;
  --blue: #1d4f9c;
  --blue-2: #2563b8;
  --sky: #3aa8dc;
  --sky-deep: #1a7aae;
  --sky-soft: #e7f4fc;
  --cream: #faf6ee;
  --sand: #f2ead9;
  --ink: #22303f;
  --muted: #5b6b7c;
  --line: #e5ddcd;
  --terra: #bd4a26;
  --terra-2: #9d3c1c;
  --gold: #e9a13b;
  --ff-head: 'Montserrat', 'Trebuchet MS', Arial, sans-serif;
  --ff-body: 'Source Sans 3', 'Segoe UI', Arial, sans-serif;
  --ff-script: 'Lobster Two', 'Brush Script MT', Georgia, cursive;
  --shadow: 0 12px 32px rgba(14, 42, 79, 0.10);
  --shadow-sm: 0 4px 14px rgba(14, 42, 79, 0.08);
  --radius: 16px;
  --container: 1200px;
  --header-h: 74px;
}

html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: var(--blue); }
.screen-reader-text {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px); word-wrap: normal;
}
.container { max-width: var(--container); margin-inline: auto; padding-inline: 22px; }

/* ------------------------------------------------------------------ header */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: #fff;
  border-bottom: 1px solid rgba(14, 42, 79, 0.08);
}
.site-header.scrolled { box-shadow: 0 6px 24px rgba(14, 42, 79, 0.12); }
.header-inner {
  display: flex; align-items: center; gap: 28px;
  min-height: var(--header-h);
}
.brand { display: flex; flex-direction: column; text-decoration: none; line-height: 1; }
.brand-script {
  font-family: var(--ff-script); font-style: italic; font-weight: 700;
  font-size: 2rem; color: var(--blue); letter-spacing: 0.01em;
}
.brand-sub {
  font-family: var(--ff-head); font-weight: 700; font-size: 0.6rem;
  letter-spacing: 0.34em; text-transform: uppercase; color: var(--navy);
  margin-top: 4px;
}
.site-nav { margin-left: auto; }
.site-nav ul { list-style: none; display: flex; gap: 6px; margin: 0; padding: 0; }
.site-nav a {
  display: inline-block; padding: 10px 14px;
  font-family: var(--ff-head); font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--navy); text-decoration: none; border-radius: 999px;
}
.site-nav a:hover, .site-nav .current-menu-item > a, .site-nav .current_page_item > a {
  color: var(--blue); background: var(--sky-soft);
}
.header-cta {
  display: inline-block; white-space: nowrap;
  font-family: var(--ff-head); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.05em;
  color: #fff; background: var(--terra); text-decoration: none;
  padding: 12px 20px; border-radius: 999px;
}
.header-cta:hover { background: var(--terra-2); color: #fff; }
.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: 10px;
}
.nav-toggle-bar, .nav-toggle-bar::before, .nav-toggle-bar::after {
  display: block; content: ""; width: 24px; height: 3px; border-radius: 2px;
  background: var(--navy); transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle-bar { position: relative; }
.nav-toggle-bar::before { position: absolute; top: -8px; }
.nav-toggle-bar::after { position: absolute; top: 8px; }
body.nav-open .nav-toggle-bar { background: transparent; }
body.nav-open .nav-toggle-bar::before { transform: translateY(8px) rotate(45deg); }
body.nav-open .nav-toggle-bar::after { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: block; order: 3; }
  .header-cta { margin-left: auto; }
  .site-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 30px rgba(14, 42, 79, 0.14);
    margin-left: 0; padding: 10px 22px 18px;
  }
  body.nav-open .site-nav { display: block; }
  .site-nav ul { flex-direction: column; gap: 2px; }
  .site-nav a { display: block; }
}

/* ------------------------------------------------------------------ footer */
.site-footer { background: var(--navy); color: #c9d6e6; }
.footer-grid {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px;
  padding: 60px 0 40px;
}
.site-footer .brand-script { color: #fff; font-size: 2.2rem; }
.site-footer .brand-sub { color: var(--sky); }
.footer-tag { margin-top: 14px; max-width: 34ch; }
.site-footer h4 {
  font-family: var(--ff-head); font-size: 0.8rem; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase; color: #fff; margin: 0 0 16px;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: #cfe6f5; text-decoration: none; }
.site-footer a:hover { color: var(--sky); text-decoration: underline; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 18px 0 22px; font-size: 0.88rem;
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between;
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }

/* ---------------------------------------------------------------- sections */
body .elementor .elementor-section.section { padding-block: clamp(58px, 8vw, 100px); }
body .elementor .elementor-section.section-tight { padding-block: clamp(38px, 5vw, 60px); }
body .elementor .elementor-section.section-cream { background-color: var(--cream); }
body .elementor .elementor-section.section-sand { background-color: var(--sand); }
body .elementor .elementor-section.section-navy { background-color: var(--navy); }
body .elementor .elementor-section[id] { scroll-margin-top: calc(var(--header-h) + 66px); }

/* Hero — bright brand backdrop: white-washed wood + soft azul/gold glows */
body .elementor .elementor-section.hero-main {
  position: relative; min-height: min(72vh, 700px);
  display: flex; align-items: center;
  padding-block: clamp(76px, 10vw, 128px);
  background-color: #f7f4ed;
}
body .elementor .elementor-section.hero-main::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(880px 480px at 86% 4%, rgba(58, 168, 220, 0.20), transparent 62%),
    radial-gradient(720px 440px at -6% 104%, rgba(233, 161, 59, 0.14), transparent 58%),
    linear-gradient(100deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.45) 55%, rgba(231, 244, 252, 0.25) 100%);
}
/* soft wave into the cream features section below */
body .elementor .elementor-section.hero-main::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 58px; z-index: 1;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 64' preserveAspectRatio='none'><path d='M0 42 C 240 66 480 8 740 24 C 1000 40 1220 62 1440 22 L1440 64 L0 64 Z' fill='%23faf6ee'/></svg>") bottom / 100% 100% no-repeat;
}
body .elementor .elementor-section.hero-main > .elementor-container { position: relative; z-index: 2; align-items: center; }
body .elementor .hero-copy > .elementor-widget-wrap { padding-right: 5%; align-content: center; }

/* "Now Open" chip */
body .elementor .hero-chip .elementor-heading-title {
  display: inline-block; font-family: var(--ff-head); font-weight: 700;
  font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--blue); background: rgba(58, 168, 220, 0.14);
  border: 1px solid rgba(29, 79, 156, 0.30);
  padding: 8px 16px; border-radius: 999px;
}

/* layered photo collage */
.hero-collage { position: relative; max-width: 470px; margin-left: auto; padding: 16px 10px 52px 30px; }
.hc-main {
  margin: 0; transform: rotate(-2deg); border-radius: 22px; overflow: hidden;
  border: 6px solid #fff;
  box-shadow: 0 30px 60px rgba(14, 42, 79, 0.28);
}
body .elementor .hc-main img, .hc-main img { display: block; width: 100%; height: auto; }
.hc-side {
  position: absolute; bottom: 0; left: -34px; width: 190px; margin: 0;
  transform: rotate(3deg); border-radius: 18px; overflow: hidden;
  border: 5px solid #fff;
  box-shadow: 0 22px 46px rgba(14, 42, 79, 0.26);
}
body .elementor .hc-side img, .hc-side img {
  display: block; width: 100%; height: 175px; object-fit: cover; object-position: center 28%;
}
.hc-badge {
  position: absolute; top: -4px; right: -10px;
  background: #fff; color: var(--navy); border-radius: 14px; padding: 12px 18px;
  box-shadow: 0 14px 34px rgba(14, 42, 79, 0.24);
  border: 1px solid rgba(14, 42, 79, 0.06);
  display: flex; flex-direction: column; gap: 2px; text-align: left;
}
.hc-stars { color: var(--gold); letter-spacing: 0.2em; font-size: 0.82rem; }
.hc-badge-t {
  font-family: var(--ff-head); font-weight: 800; font-size: 0.78rem;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.hc-badge-s { font-size: 0.76rem; color: var(--muted); }
@media (prefers-reduced-motion: no-preference) {
  html.js .hc-badge { animation: hc-float 5.5s ease-in-out infinite; }
}
@keyframes hc-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}
@media (max-width: 1100px) {
  .hc-side { left: -8px; width: 165px; }
}
@media (max-width: 767px) {
  .hero-collage { max-width: 330px; margin: 36px auto 0; padding: 10px 0 44px 0; }
  .hc-side { left: -4px; width: 145px; }
  body .elementor .hc-side img, .hc-side img { height: 135px; }
  .hc-badge { right: -2px; padding: 10px 14px; }
  body .elementor .hero-copy > .elementor-widget-wrap { padding-right: 0; }
}

body .elementor .elementor-section.page-hero {
  position: relative; padding-block: clamp(64px, 8vw, 104px);
  background:
    radial-gradient(900px 420px at 90% -20%, rgba(58, 168, 220, 0.25), transparent 60%),
    linear-gradient(133deg, #0a1f40 0%, #123561 55%, #17457e 100%);
}

/* --------------------------------------------------------------- headings */
body .elementor .elementor-widget-heading .elementor-heading-title {
  font-family: var(--ff-head); color: var(--navy); line-height: 1.15;
}
body .elementor .eyebrow .elementor-heading-title {
  font-family: var(--ff-script); font-style: italic; font-weight: 700;
  font-size: clamp(1.45rem, 2.4vw, 1.9rem); color: var(--terra);
  text-transform: none; letter-spacing: 0.01em; line-height: 1.2;
}
body .elementor .section-navy .eyebrow .elementor-heading-title,
body .elementor .page-hero .eyebrow .elementor-heading-title { color: var(--sky); }
body .elementor .eyebrow-c .elementor-heading-title { text-align: center; }

body .elementor .sec-title .elementor-heading-title {
  font-weight: 800; text-transform: uppercase; letter-spacing: 0.03em;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin-top: 6px;
}
body .elementor .sec-title .elementor-heading-title::after {
  content: ""; display: block; width: 68px; height: 4px; border-radius: 2px;
  margin-top: 16px;
  background: linear-gradient(90deg, var(--sky), var(--blue));
}
body .elementor .sec-center .elementor-heading-title { text-align: center; }
body .elementor .sec-center .elementor-heading-title::after { margin-inline: auto; }

body .elementor .hero-title .elementor-heading-title {
  color: #fff; font-weight: 800; text-transform: uppercase; letter-spacing: 0.02em;
  font-size: clamp(2.3rem, 5.6vw, 4.2rem); line-height: 1.06;
  text-shadow: 0 3px 24px rgba(4, 14, 30, 0.5);
}
body .elementor .section-navy .elementor-widget-heading .elementor-heading-title,
body .elementor .page-hero .elementor-widget-heading .elementor-heading-title { color: #fff; }
body .elementor .hero-main .hero-title .elementor-heading-title {
  color: var(--navy); text-shadow: none;
}
body .elementor .section-navy .sec-title .elementor-heading-title::after {
  background: linear-gradient(90deg, var(--sky), var(--gold));
}

/* ------------------------------------------------------------------- text */
body .elementor .elementor-widget-text-editor { color: var(--ink); }
body .elementor .elementor-widget-text-editor p { margin: 0 0 1em; }
body .elementor .elementor-widget-text-editor p:last-child { margin-bottom: 0; }
body .elementor .lead .elementor-widget-container { max-width: 62ch; }
body .elementor .lead { color: var(--muted); font-size: 1.08rem; }
body .elementor .lead-center .elementor-widget-container { max-width: 62ch; margin-inline: auto; text-align: center; }
body .elementor .lead-center { color: var(--muted); font-size: 1.08rem; }
body .elementor .page-hero .elementor-widget-text-editor { color: #dfe9f5; }
body .elementor .hero-main .elementor-widget-text-editor { color: var(--muted); }
body .elementor .section-navy .elementor-widget-text-editor { color: #d5e2f0; }
body .elementor .hero-lead { font-size: clamp(1.05rem, 1.8vw, 1.3rem); }
body .elementor .hero-lead .elementor-widget-container { max-width: 56ch; }
.hero-stars { color: var(--gold); letter-spacing: 0.2em; font-size: 1.05rem; }
.hero-stars-note { color: #cfe0f2; font-size: 0.95rem; margin-left: 8px; letter-spacing: 0.02em; }
body .elementor .fine-print { font-size: 0.88rem; color: var(--muted); font-style: italic; }
body .elementor .fine-print .elementor-widget-container { max-width: 78ch; margin-inline: auto; text-align: center; }

/* ---------------------------------------------------------------- buttons */
body .elementor .elementor-button {
  font-family: var(--ff-head); font-weight: 700; font-size: 0.88rem;
  letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none;
  background-color: var(--terra); color: #fff;
  padding: 16px 30px; border-radius: 999px;
  transition: background-color 0.18s ease, transform 0.18s ease;
}
body .elementor .elementor-button:hover { background-color: var(--terra-2); color: #fff; transform: translateY(-1px); }
body .elementor .btn-blue .elementor-button { background-color: var(--blue); }
body .elementor .btn-blue .elementor-button:hover { background-color: var(--navy-2); }
body .elementor .btn-ghost .elementor-button {
  background-color: transparent; border: 2px solid rgba(255, 255, 255, 0.85); color: #fff;
}
body .elementor .btn-ghost .elementor-button:hover { background-color: rgba(255, 255, 255, 0.14); }
body .elementor .btn-ghost-blue .elementor-button {
  background-color: transparent; border: 2px solid var(--blue); color: var(--blue);
}
body .elementor .btn-ghost-blue .elementor-button:hover { background-color: var(--sky-soft); color: var(--blue); }
/* Deliberate narrowing so consecutive buttons sit side by side. */
body .elementor .elementor-widget-button.btn-inline {
  width: auto; display: inline-block; margin-right: 14px; margin-bottom: 10px;
}

/* --------------------------------------------------------------- columns */
body .elementor .split-pad .elementor-widget-wrap { padding: 4% 7%; }
body .elementor .feature-card > .elementor-widget-wrap {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--sky);
  padding: 34px 30px; margin: 10px 12px; align-content: flex-start;
}
body .elementor .feature-card .elementor-widget-heading .elementor-heading-title {
  font-size: 1.12rem; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase;
}
body .elementor .feature-card .elementor-widget-text-editor { color: var(--muted); font-size: 0.98rem; }
body .elementor .feature-kicker .elementor-heading-title {
  font-family: var(--ff-script); font-style: italic; font-weight: 700;
  color: var(--sky-deep); font-size: 1.35rem; text-transform: none; letter-spacing: 0;
}

/* rounded imagery */
body .elementor .img-round img { border-radius: var(--radius); box-shadow: var(--shadow); }

@media (max-width: 767px) {
  body .elementor .feature-card > .elementor-widget-wrap { margin: 10px 0; }
  body .elementor .split-pad .elementor-widget-wrap { padding: 8% 0 2%; }
}

/* -------------------------------------------------------------- icon list */
body .elementor .elementor-icon-list-items { list-style: none; margin: 0; padding: 0; }
body .elementor .elementor-icon-list-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; }
body .elementor .elementor-icon-list-icon i { color: var(--sky); font-size: 1.05rem; line-height: 1.5; }
body .elementor .elementor-icon-list-text { color: inherit; }
body .elementor .section-navy .elementor-icon-list-item,
body .elementor .section-navy .elementor-icon-list-text { color: #d5e2f0; }
body .elementor .checklist .elementor-icon-list-item { margin-bottom: 12px; }
body .elementor .checklist .elementor-icon-list-text { font-weight: 600; color: var(--ink); }

/* ------------------------------------------------------------- dish cards */
.dish-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 18px;
}
.dish-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease; margin: 0;
}
.dish-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.dish-img { aspect-ratio: 4 / 3; overflow: hidden; background: #f4f6f8; }
body .elementor .dish-img img,
.dish-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dish-body { padding: 20px 22px 24px; }
.dish-body h3 {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  margin: 0 0 8px; font-family: var(--ff-head); font-size: 1.02rem; font-weight: 800;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--navy);
}
.dish-body h3 .price { color: var(--terra); font-size: 1rem; white-space: nowrap; }
.dish-body p { margin: 0; color: var(--muted); font-size: 0.95rem; line-height: 1.55; }
@media (max-width: 980px) { .dish-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .dish-grid { grid-template-columns: 1fr; } }

/* ----------------------------------------------------------- review cards */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 18px; }
.review-card {
  background: #fff; border-radius: var(--radius); padding: 26px 26px 22px;
  box-shadow: var(--shadow-sm); margin: 0; display: flex; flex-direction: column;
  border-top: 4px solid var(--gold);
}
.review-stars { color: var(--gold); font-size: 1rem; letter-spacing: 0.22em; margin-bottom: 12px; }
.review-card blockquote { margin: 0 0 16px; }
.review-card blockquote p { margin: 0; color: var(--ink); font-size: 0.98rem; line-height: 1.6; }
.review-card figcaption {
  margin-top: auto; font-family: var(--ff-head); font-weight: 700; font-size: 0.85rem;
  letter-spacing: 0.04em; color: var(--navy);
}
.review-card figcaption span { display: block; font-family: var(--ff-body); font-weight: 400; color: var(--muted); font-size: 0.82rem; margin-top: 3px; letter-spacing: 0; }
@media (max-width: 980px) { .review-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .review-grid { grid-template-columns: 1fr; } }

/* -------------------------------------------------------------- gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 18px; }
.gallery-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.gallery-grid figure { margin: 0; border-radius: 14px; overflow: hidden; position: relative; box-shadow: var(--shadow-sm); }
body .elementor .gallery-grid img,
.gallery-grid img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; transition: transform 0.25s ease; }
.gallery-grid figure:hover img { transform: scale(1.045); }
.gallery-grid figcaption {
  position: absolute; inset: auto 0 0 0; padding: 26px 14px 12px;
  background: linear-gradient(0deg, rgba(8, 20, 40, 0.82), rgba(8, 20, 40, 0));
  color: #fff; font-family: var(--ff-head); font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.08em; text-transform: uppercase;
}
@media (max-width: 900px) { .gallery-grid, .gallery-grid.cols-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .gallery-grid, .gallery-grid.cols-4 { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------- menu page */
/* The whole nav SECTION is sticky (its parent spans the full page, so it never
   scrolls away — a sticky bar inside its own short section would). */
body .elementor .elementor-section.menu-nav-wrap {
  position: sticky; top: var(--header-h); z-index: 45;
  background: rgba(250, 246, 238, 0.97);
  border-bottom: 1px solid var(--line);
}
body.elementor-editor-active .menu-nav-wrap { position: static; }
.menu-nav {
  position: relative;
  display: flex; gap: 8px; overflow-x: auto; -webkit-overflow-scrolling: touch;
  padding: 12px 0; scrollbar-width: thin;
}
.menu-nav a {
  flex: 0 0 auto; white-space: nowrap; text-decoration: none;
  font-family: var(--ff-head); font-weight: 700; font-size: 0.76rem;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--navy); background: #fff; border: 1px solid var(--line);
  padding: 9px 16px; border-radius: 999px;
}
.menu-nav a:hover { border-color: var(--sky); color: var(--blue); }
.menu-nav a.active { background: var(--blue); border-color: var(--blue); color: #fff; }

body .elementor .menu-cat-head .elementor-heading-title {
  font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em;
  font-size: clamp(1.45rem, 2.6vw, 2rem);
}
body .elementor .menu-cat-head .elementor-heading-title::after {
  content: ""; display: block; width: 56px; height: 4px; border-radius: 2px;
  margin-top: 12px; background: linear-gradient(90deg, var(--sky), var(--blue));
}
body .elementor .menu-cat-note { color: var(--muted); font-style: italic; font-size: 0.98rem; }

.menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 56px; margin-top: 16px; }
.menu-photo {
  margin: 0 0 10px; border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow-sm); align-self: start; position: relative;
  border: none; padding: 0;
}
body .elementor .menu-photo img,
.menu-photo img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block; }
.menu-photo figcaption {
  position: absolute; left: 10px; bottom: 10px;
  background: rgba(14, 42, 79, 0.88); color: #fff;
  font-family: var(--ff-head); font-weight: 700; font-size: 0.66rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
}
.menu-item { padding: 15px 0; border-bottom: 1px dashed #d9d2c2; break-inside: avoid; }
.mi-head { display: flex; align-items: baseline; gap: 10px; }
.mi-head h3 {
  margin: 0; font-family: var(--ff-head); font-weight: 800; font-size: 0.98rem;
  letter-spacing: 0.03em; text-transform: uppercase; color: var(--navy);
}
.mi-dots { flex: 1 1 24px; min-width: 24px; border-bottom: 2px dotted #c4cdd8; transform: translateY(-4px); }
.mi-price { font-family: var(--ff-head); font-weight: 700; color: var(--terra); white-space: nowrap; font-size: 0.95rem; }
.menu-item > p { margin: 7px 0 0; color: var(--muted); font-size: 0.94rem; line-height: 1.55; }
.mi-variants { list-style: none; margin: 8px 0 0; padding: 0; }
.mi-variants li { display: flex; align-items: baseline; gap: 10px; padding: 3px 0; color: var(--ink); font-size: 0.94rem; }
.mi-variants .mi-dots { transform: translateY(-3px); }
.mi-variants .mi-price { font-size: 0.88rem; }
@media (max-width: 820px) { .menu-grid { grid-template-columns: 1fr; gap: 0; } }

/* ------------------------------------------------------------ visit / map */
.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--navy-2); }
.map-embed iframe { display: block; width: 100%; height: 350px; border: 0; }
body .elementor .visit-detail .elementor-icon-list-text strong {
  display: block; font-family: var(--ff-head); font-size: 0.78rem; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--sky); margin-bottom: 2px;
}
body .elementor .visit-detail .elementor-icon-list-text a { color: #fff; text-decoration: none; }
body .elementor .visit-detail .elementor-icon-list-text a:hover { color: var(--sky); }
body .elementor .visit-detail .elementor-icon-list-item { margin-bottom: 20px; }

/* pull quote band */
body .elementor .pull-quote .elementor-widget-container { max-width: 46rem; margin-inline: auto; text-align: center; }
body .elementor .pull-quote { color: #eaf2fa; font-size: clamp(1.15rem, 2.2vw, 1.5rem); font-style: italic; line-height: 1.55; }

/* --------------------------------------------------- reveal (fail open) */
.reveal { opacity: 1; transform: none; }
html.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s ease; }
html.js .reveal.in { opacity: 1; transform: none; }
body.elementor-editor-active .reveal,
body.elementor-editor-active .reveal.in { opacity: 1 !important; transform: none !important; }

/* ------------------------------------------------- fallback structure
   Applied only when a designed page renders WITHOUT Elementor (plugin not yet
   active). Mirrors Elementor's structural CSS, scoped so it can never fight
   the real plugin. */
.azul-fallback .elementor *, .azul-fallback .elementor *::before, .azul-fallback .elementor *::after { box-sizing: border-box; }
.azul-fallback .elementor-section { position: relative; }
.azul-fallback .elementor-section-boxed > .elementor-container { max-width: var(--container); margin-inline: auto; padding-inline: 22px; }
.azul-fallback .elementor-container { display: flex; margin-inline: auto; position: relative; }
.azul-fallback .elementor-column { position: relative; min-height: 1px; display: flex; }
.azul-fallback .elementor-col-100 { width: 100%; }
.azul-fallback .elementor-col-50 { width: 50%; }
.azul-fallback .elementor-col-33 { width: 33.333%; }
.azul-fallback .elementor-col-34 { width: 33.334%; }
.azul-fallback .elementor-widget-wrap { position: relative; width: 100%; flex-wrap: wrap; align-content: flex-start; display: flex; }
.azul-fallback .elementor-widget { position: relative; width: 100%; }
.azul-fallback .elementor-widget:not(:last-child) { margin-bottom: 20px; }
.azul-fallback .elementor-widget-container { width: 100%; }
.azul-fallback .elementor-heading-title { padding: 0; margin: 0; }
.azul-fallback .elementor-button { display: inline-block; text-decoration: none; }
.azul-fallback .elementor-button-content-wrapper { display: flex; justify-content: center; }
.azul-fallback .elementor-widget-image img { display: block; }
.azul-fallback .elementor-widget-image figure { margin: 0; }
.azul-fallback .elementor-icon-list-icon i::before { content: "\2726"; font-style: normal; color: var(--sky); }
.azul-fallback [data-bg] { background-position: center center; background-size: cover; background-repeat: no-repeat; }
@media (max-width: 880px) {
  .azul-fallback .elementor-container { flex-wrap: wrap; }
  .azul-fallback .elementor-col-50, .azul-fallback .elementor-col-33, .azul-fallback .elementor-col-34 { width: 100%; }
}

/* boxed container padding on real Elementor render */
body .elementor .elementor-section-boxed > .elementor-container { padding-inline: 22px; }
