/* ============================================================
   El Cubano Market — playful Cuban "mercadito" theme
   Palette: Havana navy + brand blue + sun-gold + Cuban-flag red
   on warm paper. Market-first, festive, hand-made feel.
   ============================================================ */

:root {
  /* Blue matched to the logo's deep navy background */
  --navy:      #1b2a4a;
  --navy-2:    #121d36;
  --blue:      #2f4c86;
  --blue-lt:   #46689f;
  --gold:      #f4a823;
  --gold-lt:   #f8c766;
  --gold-deep: #cf8a12;
  --red:       #d83a2f;
  --red-deep:  #b62d23;
  --paper:     #fdf7ea;
  --paper-2:   #f7ecd6;
  --card:      #fffdf7;
  --ink:       #1b2a4a;
  --ink-soft:  #5a6076;
  --white:     #ffffff;

  --line:      rgba(27,42,74,.12);
  --shadow:    0 22px 50px -22px rgba(15,24,48,.42);
  --shadow-sm: 0 12px 26px -16px rgba(15,24,48,.36);
  --radius:    22px;
  --radius-sm: 14px;
  --maxw:      1180px;

  --ff-display: "Fraunces", Georgia, serif;
  --ff-body:    "Poppins", system-ui, -apple-system, sans-serif;
  --ff-script:  "Caveat", "Segoe Script", cursive;

  /* festive papel-picado bunting (blue + red triangle flags on a gold string) */
  --bunting: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='34' viewBox='0 0 80 34'%3E%3Cline x1='0' y1='3' x2='80' y2='3' stroke='%23cf8a12' stroke-width='2'/%3E%3Cpolygon points='6,3 34,3 20,30' fill='%232f4c86'/%3E%3Cpolygon points='46,3 74,3 60,30' fill='%23d83a2f'/%3E%3C/svg%3E");
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { font-family: var(--ff-display); line-height: 1.1; margin: 0; font-weight: 600; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* Warm tropical paper texture behind everything */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(closest-side, rgba(244,168,35,.10), transparent 70%) 8% 12%/40% 45% no-repeat,
    radial-gradient(closest-side, rgba(10,82,176,.08), transparent 70%) 92% 78%/45% 45% no-repeat,
    radial-gradient(closest-side, rgba(216,58,47,.06), transparent 70%) 78% 8%/35% 35% no-repeat;
}

/* ---------- Shared bits ---------- */
.script { font-family: var(--ff-script); font-weight: 700; color: var(--red); font-size: 1.8rem; line-height: 1; }
.eyebrow {
  font-family: var(--ff-body); text-transform: uppercase; letter-spacing: .22em;
  font-size: .72rem; font-weight: 700; color: var(--gold-deep);
  display: inline-flex; align-items: center; gap: 10px; margin: 0 0 14px;
}
.eyebrow::before { content: "★"; color: var(--red); letter-spacing: 0; }
.eyebrow.center { justify-content: center; }
.eyebrow.center::after { content: "★"; color: var(--red); }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-body); font-weight: 600; font-size: .95rem;
  padding: 14px 30px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-3px) rotate(-1deg); }
.btn-gold  { background: var(--gold); color: var(--navy); box-shadow: 0 12px 22px -10px rgba(244,168,35,.9); }
.btn-gold:hover { background: var(--gold-lt); }
.btn-red   { background: var(--red); color: #fff; box-shadow: 0 12px 22px -10px rgba(216,58,47,.8); }
.btn-red:hover { background: var(--red-deep); }
.btn-navy  { background: var(--navy); color: var(--paper); }
.btn-navy:hover { background: var(--blue); }
.btn-ghost { background: transparent; color: var(--navy); border-color: rgba(23,42,77,.25); }
.btn-ghost:hover { background: rgba(23,42,77,.06); border-color: var(--navy); }
.btn-ghost-lt { background: transparent; color: var(--paper); border-color: rgba(253,247,234,.5); }
.btn-ghost-lt:hover { background: rgba(253,247,234,.12); border-color: var(--paper); }

/* Papel-picado bunting strip */
.bunting {
  height: 34px; width: 100%;
  background-image: var(--bunting);
  background-repeat: repeat-x; background-size: 80px 34px;
}

/* ---------- Top info bar ---------- */
.topbar {
  background: var(--navy); color: var(--paper);
  font-size: .82rem; letter-spacing: .02em;
}
.topbar .wrap { display: flex; align-items: center; justify-content: center; gap: 22px; padding: 8px 24px; flex-wrap: wrap; }
.topbar b { color: var(--gold-lt); font-weight: 600; }
.topbar .sep { opacity: .4; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(253,247,234,.92); backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(244,168,35,.35);
  transition: box-shadow .3s ease;
}
.site-header.scrolled { box-shadow: 0 12px 30px -20px rgba(7,31,71,.5); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 12px 0; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand .logo-badge {
  background: linear-gradient(150deg, var(--navy), var(--blue)); border-radius: 16px; padding: 8px 12px;
  display: grid; place-items: center; box-shadow: var(--shadow-sm);
}
.brand .logo-badge img { height: 56px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text .b1 { font-family: var(--ff-display); font-weight: 600; color: var(--navy); font-size: 1.4rem; }
.brand-text .b2 { font-family: var(--ff-body); color: var(--gold-deep); font-size: .64rem; letter-spacing: .28em; text-transform: uppercase; margin-top: 4px; }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: var(--navy); font-weight: 500; font-size: .95rem; position: relative; padding: 4px 0; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -3px; width: 0; height: 3px; background: var(--red); border-radius: 3px; transition: width .3s ease; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-ig {
  display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px;
  border-radius: 12px; background: var(--navy); color: var(--paper); transition: transform .2s ease, background .2s ease;
}
.nav-ig:hover { transform: translateY(-2px) rotate(-4deg); background: var(--red); }
.nav-ig svg { width: 20px; height: 20px; fill: var(--paper); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; width: 44px; height: 44px; flex-direction: column; justify-content: center; gap: 6px; }
.nav-toggle span { display: block; height: 3px; width: 26px; background: var(--navy); border-radius: 3px; transition: transform .3s ease, opacity .3s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 70px 0 90px; overflow: hidden; }
.hero-inner { display: grid; grid-template-columns: 1.02fr .98fr; gap: 56px; align-items: center; }
.hero-logo-badge {
  display: inline-grid; place-items: center; background: linear-gradient(150deg, var(--navy), var(--blue));
  border-radius: 26px; padding: 20px 30px; box-shadow: var(--shadow); margin-bottom: 22px;
  border: 3px solid rgba(255,255,255,.6); transform: rotate(-2deg);
}
.hero-logo-badge img { width: 170px; height: auto; }
.hero .script { font-size: 2.2rem; display: block; margin-bottom: 6px; transform: rotate(-3deg); }
.hero h1 { font-size: clamp(2.7rem, 6vw, 4.6rem); font-weight: 600; letter-spacing: -.01em; margin-bottom: 20px; color: var(--navy); }
.hero h1 .mark { position: relative; color: var(--red); white-space: nowrap; }
.hero h1 .mark::after { content: ""; position: absolute; left: 0; right: 0; bottom: 4px; height: 12px; background: rgba(244,168,35,.5); z-index: -1; border-radius: 6px; transform: rotate(-1deg); }
.hero p.lead { font-size: 1.15rem; max-width: 40ch; color: var(--ink-soft); margin: 0 0 30px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.hero-trust { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; font-size: .9rem; color: var(--navy); font-weight: 500; }
.hero-trust .pill { display: inline-flex; align-items: center; gap: 8px; background: var(--card); border: 2px solid var(--line); border-radius: 999px; padding: 8px 16px; box-shadow: var(--shadow-sm); }
.hero-trust .pill span.d { width: 9px; height: 9px; border-radius: 50%; }

/* Hero photo collage — playful polaroids */
.hero-collage { position: relative; height: 500px; }
.polaroid {
  position: absolute; background: var(--white); padding: 10px 10px 44px; border-radius: 8px;
  box-shadow: var(--shadow); border: 1px solid rgba(0,0,0,.05);
}
.polaroid img { width: 100%; height: 100%; object-fit: cover; border-radius: 4px; }
.polaroid .cap { position: absolute; left: 0; right: 0; bottom: 12px; text-align: center; font-family: var(--ff-script); font-size: 1.25rem; color: var(--navy); }
.polaroid::before { /* tape */
  content: ""; position: absolute; top: -12px; left: 50%; transform: translateX(-50%) rotate(-4deg);
  width: 74px; height: 24px; background: rgba(244,168,35,.55); border: 1px dashed rgba(207,138,18,.5);
}
.hero-collage .p1 { width: 54%; height: 66%; top: 0; left: 2%; transform: rotate(-5deg); z-index: 2; }
.hero-collage .p2 { width: 48%; height: 58%; bottom: 0; right: 0; transform: rotate(4deg); z-index: 3; }
.hero-collage .p3 { width: 34%; height: 40%; bottom: 6%; left: 0; transform: rotate(-2deg); z-index: 4; }
.hero-collage .sticker {
  position: absolute; top: -6%; right: 4%; z-index: 5; width: 108px; height: 108px; border-radius: 50%;
  background: var(--red); color: #fff; display: grid; place-content: center; text-align: center;
  transform: rotate(10deg); box-shadow: var(--shadow); border: 3px dashed rgba(255,255,255,.6);
}
.hero-collage .sticker b { font-family: var(--ff-script); font-size: 1.9rem; line-height: .9; display: block; }
.hero-collage .sticker span { font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; }
.hero-collage .leaf { position: absolute; width: 90px; bottom: -8%; right: 34%; z-index: 1; opacity: .9; transform: rotate(8deg); }

/* ---------- Marquee ---------- */
.marquee { background: var(--red); color: #fff; padding: 0; overflow: hidden; }
.marquee-strip { padding: 14px 0; overflow: hidden; white-space: nowrap; }
.marquee-track { display: inline-flex; gap: 40px; animation: marquee 28s linear infinite; }
.marquee-track span { font-family: var(--ff-display); font-style: italic; font-size: 1.2rem; font-weight: 600; display: inline-flex; align-items: center; gap: 40px; }
.marquee-track span::after { content: "✦"; color: var(--gold-lt); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Section shells ---------- */
.section { padding: 96px 0; position: relative; }
.section-head { max-width: 640px; margin: 0 auto 52px; text-align: center; }
.section-head.left { margin: 0 0 40px; text-align: left; }
.section-head h2 { font-size: clamp(2.1rem, 4.4vw, 3.2rem); color: var(--navy); margin-bottom: 14px; }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; }

/* scalloped top edge (market-awning feel) */
.scallop { position: relative; }
.scallop::before {
  content: ""; position: absolute; top: -13px; left: 0; right: 0; height: 14px;
  background: radial-gradient(circle at 12px 14px, var(--paper) 12px, transparent 13px) repeat-x;
  background-size: 24px 14px;
}

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-media { position: relative; padding: 10px; }
.about-media .m-main { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transform: rotate(-2deg); border: 8px solid var(--white); }
.about-media .m-main img { width: 100%; height: 520px; object-fit: cover; }
.about-media .m-sub { position: absolute; bottom: -24px; right: -10px; width: 46%; border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow); transform: rotate(4deg); border: 6px solid var(--white); }
.about-media .m-sub img { width: 100%; height: 200px; object-fit: cover; }
.about-media .stamp {
  position: absolute; top: -18px; left: -14px; z-index: 3; width: 96px; height: 96px; border-radius: 50%;
  background: var(--gold); color: var(--navy); display: grid; place-content: center; text-align: center;
  transform: rotate(-12deg); box-shadow: var(--shadow-sm); border: 3px solid var(--white);
}
.about-media .stamp b { font-family: var(--ff-script); font-size: 1.5rem; line-height: .9; }
.about-media .stamp span { font-size: .56rem; letter-spacing: .14em; text-transform: uppercase; }
.about-copy h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--navy); margin-bottom: 18px; }
.about-copy p { color: var(--ink-soft); margin: 0 0 16px; }
.about-copy .script { display: block; margin-bottom: 4px; transform: rotate(-2deg); }
.about-features { list-style: none; padding: 0; margin: 24px 0 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.about-features li { display: flex; gap: 12px; align-items: center; font-weight: 500; }
.about-features li i { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 10px; background: var(--navy); color: var(--gold-lt); display: grid; place-items: center; font-style: normal; font-size: .95rem; }

/* ---------- Departments (aisles) ---------- */
.depts { background: var(--navy); color: var(--paper); overflow: hidden; }
.depts::after {
  content: ""; position: absolute; z-index: 0; left: -60px; bottom: -40px; width: 360px; height: 360px;
  background: url("../assets/images/logo.png") no-repeat center/contain; opacity: .06; pointer-events: none;
}
.depts .wrap { position: relative; z-index: 1; }
.depts .section-head h2 { color: var(--paper); }
.depts .section-head p { color: rgba(253,247,234,.75); }
.dept-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.dept-card {
  position: relative; background: var(--card); color: var(--ink); border-radius: var(--radius);
  padding: 0 28px 28px; box-shadow: var(--shadow); overflow: hidden; transition: transform .25s ease;
}
.dept-card:hover { transform: translateY(-6px) rotate(-.6deg); }
.dept-card .awning { height: 16px; margin: 0 -28px 22px; background: repeating-linear-gradient(90deg, var(--red) 0 22px, #fff 22px 44px); }
.dept-card .emoji { font-size: 2.4rem; line-height: 1; margin-bottom: 12px; }
.dept-card h3 { font-size: 1.4rem; color: var(--navy); margin-bottom: 8px; }
.dept-card p { color: var(--ink-soft); font-size: .95rem; margin: 0; }
.dept-card .tag { position: absolute; top: 26px; right: -30px; transform: rotate(45deg); background: var(--gold); color: var(--navy); font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 4px 34px; }

/* ---------- Cocina (food at Irving) ---------- */
.cocina { background: var(--paper-2); position: relative; overflow: hidden; }
.cocina-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.cocina-copy .badge-loc { display: inline-flex; align-items: center; gap: 8px; background: var(--red); color: #fff; font-weight: 600; font-size: .82rem; padding: 7px 16px; border-radius: 999px; margin-bottom: 18px; }
.cocina-copy h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--navy); margin-bottom: 16px; }
.cocina-copy p { color: var(--ink-soft); margin: 0 0 20px; }
.menu-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.menu-chips span { background: var(--card); border: 2px solid var(--line); border-radius: 999px; padding: 8px 16px; font-weight: 500; font-size: .9rem; box-shadow: var(--shadow-sm); }
.menu-chips span::before { content: "🍽 "; }
.cocina-media { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cocina-media img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); border: 5px solid var(--white); }
.cocina-media .c1 { grid-row: span 2; height: 420px; transform: rotate(-2deg); }
.cocina-media .c2 { height: 202px; transform: rotate(2deg); }
.cocina-media .c3 { height: 202px; transform: rotate(-1deg); }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 210px; gap: 18px; }
.gallery-grid figure { margin: 0; border-radius: var(--radius-sm); overflow: hidden; position: relative; box-shadow: var(--shadow-sm); border: 5px solid var(--white); }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-grid figure:hover img { transform: scale(1.09) rotate(1deg); }
.gallery-grid figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,31,71,.4), transparent 55%); opacity: 0; transition: opacity .3s ease; }
.gallery-grid figure:hover::after { opacity: 1; }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

/* ---------- Instagram feed ---------- */
.insta { background: var(--paper-2); }
.insta-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 40px; flex-wrap: wrap; }
.insta-head .handle { display: inline-flex; align-items: center; gap: 12px; }
.insta-head .handle .ig-badge {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; color: #fff;
  background: linear-gradient(135deg, #f4a823 0%, #d83a2f 45%, #2f4c86 100%);
}
.insta-head .handle .ig-badge svg { width: 30px; height: 30px; fill: currentColor; }
.insta-head .script { color: var(--red); display: block; }
.insta-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); color: var(--navy); line-height: 1; }
.insta-head p { color: var(--ink-soft); margin: 6px 0 0; font-size: .95rem; }
.insta-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.insta-grid a { position: relative; aspect-ratio: 1 / 1; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-sm); }
.insta-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.insta-grid a:hover img { transform: scale(1.1); }
.insta-grid a .ov {
  position: absolute; inset: 0; display: grid; place-items: center; color: #fff;
  background: linear-gradient(160deg, rgba(216,58,47,.72), rgba(27,42,74,.82)); opacity: 0; transition: opacity .3s ease;
}
.insta-grid a:hover .ov { opacity: 1; }
.insta-grid a .ov svg { width: 30px; height: 30px; fill: currentColor; }

/* ---------- Find us on Google ---------- */
.gsection { background: var(--paper); position: relative; overflow: hidden; }
.gs-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 50px; align-items: center; }
.gs-copy .script { color: var(--red); display: block; margin-bottom: 2px; }
.gs-copy h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--navy); margin-bottom: 14px; }
.gs-copy p { color: var(--ink-soft); margin: 0 0 22px; }
.gcard {
  display: inline-flex; align-items: center; gap: 14px; background: var(--card);
  border: 2px solid var(--line); border-radius: 16px; padding: 14px 20px; box-shadow: var(--shadow-sm); margin-bottom: 24px;
}
.gcard .g-logo { width: 34px; height: 34px; flex: 0 0 auto; }
.gcard .g-logo svg { width: 100%; height: 100%; }
.gcard b { display: block; font-family: var(--ff-body); font-weight: 600; color: var(--navy); font-size: .98rem; }
.gcard .stars { color: var(--gold); letter-spacing: 2px; font-size: .95rem; }
.gcard .stars span { color: var(--ink-soft); font-family: var(--ff-body); letter-spacing: 0; font-size: .8rem; margin-left: 6px; }
.gs-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.gs-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 6px solid var(--white); }
.gs-map iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ---------- Palm accents ---------- */
.palm-accent { position: absolute; pointer-events: none; z-index: 0; width: 110px; opacity: .9; }
.palm-title { width: 46px; margin: 0 auto 10px; display: block; }
.section-head.center .palm-title { margin-left: auto; margin-right: auto; }

/* ---------- Locations ---------- */
.locations { background: var(--navy); color: var(--paper); position: relative; overflow: hidden; }
.locations::after {
  content: ""; position: absolute; z-index: 0; right: -70px; top: -50px; width: 380px; height: 380px;
  background: url("../assets/images/logo.png") no-repeat center/contain; opacity: .06; pointer-events: none;
}
.locations .wrap { position: relative; z-index: 1; }
.locations .section-head h2 { color: var(--paper); }
.locations .section-head p { color: rgba(253,247,234,.75); }
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.loc-card { background: var(--card); color: var(--ink); border-radius: var(--radius); padding: 0 34px 34px; box-shadow: var(--shadow); overflow: hidden; transition: transform .25s ease; }
.loc-card:hover { transform: translateY(-5px); }
.loc-card .awning { height: 16px; margin: 0 -34px 24px; }
.loc-card.irving .awning { background: repeating-linear-gradient(90deg, var(--blue) 0 22px, #fff 22px 44px); }
.loc-card.fw .awning { background: repeating-linear-gradient(90deg, var(--red) 0 22px, #fff 22px 44px); }
.loc-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; gap: 12px; }
.loc-top h3 { font-size: 1.7rem; color: var(--navy); }
.loc-pill { font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; padding: 6px 12px; border-radius: 999px; }
.loc-pill.market { background: rgba(10,82,176,.14); color: var(--blue); }
.loc-pill.cocina { background: rgba(216,58,47,.14); color: var(--red); }
.loc-row { display: flex; gap: 14px; align-items: center; padding: 12px 0; border-bottom: 1px dashed var(--line); }
.loc-row:last-of-type { border-bottom: 0; }
.loc-row .ic { flex: 0 0 auto; width: 38px; height: 38px; border-radius: 11px; background: rgba(244,168,35,.16); color: var(--gold-deep); display: grid; place-items: center; }
.loc-row .ic svg { width: 20px; height: 20px; fill: currentColor; }
.loc-row b { display: block; font-family: var(--ff-body); font-weight: 600; font-size: .95rem; color: var(--navy); margin-bottom: 2px; }
.loc-row span, .loc-row a { color: var(--ink-soft); font-size: .93rem; }
.loc-row a:hover { color: var(--red); }
.loc-actions { margin-top: 22px; display: flex; gap: 12px; flex-wrap: wrap; }
.loc-actions .btn { padding: 11px 22px; font-size: .88rem; }

/* ---------- CTA / Newsletter ---------- */
.cta { background: linear-gradient(120deg, var(--gold) 0%, var(--gold-deep) 100%); color: var(--navy); position: relative; overflow: hidden; }
.cta .wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: center; }
.cta .script { color: var(--red); display: block; margin-bottom: 4px; }
.cta h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); color: var(--navy); margin-bottom: 12px; }
.cta p { margin: 0; color: rgba(23,42,77,.8); font-size: 1.05rem; }
.news-form { display: flex; gap: 12px; flex-wrap: wrap; }
.news-form input { flex: 1 1 220px; padding: 15px 20px; border-radius: 999px; border: 2px solid rgba(23,42,77,.2); font-family: var(--ff-body); font-size: .95rem; background: rgba(255,255,255,.92); color: var(--navy); }
.news-form input:focus { outline: none; border-color: var(--navy); background: #fff; }
.news-note { margin-top: 12px !important; font-size: .82rem !important; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-2); color: rgba(253,247,234,.8); padding: 0 0 30px; position: relative; overflow: hidden; }
.site-footer .foot-inner { padding: 66px 0 0; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.foot-brand .logo-badge { background: linear-gradient(150deg, var(--navy), var(--blue)); border-radius: 20px; padding: 16px 20px; display: inline-grid; place-items: center; margin-bottom: 18px; box-shadow: var(--shadow-sm); }
.foot-brand .logo-badge img { width: 128px; }
.foot-brand p { font-size: .92rem; max-width: 30ch; color: rgba(253,247,234,.65); }
.foot-col h4 { font-family: var(--ff-body); text-transform: uppercase; letter-spacing: .16em; font-size: .8rem; color: var(--gold-lt); margin: 0 0 18px; }
.foot-col a, .foot-col p { display: block; color: rgba(253,247,234,.72); font-size: .92rem; margin-bottom: 10px; }
.foot-col a:hover { color: var(--gold-lt); }
.foot-social { display: flex; gap: 12px; margin-top: 6px; }
.foot-social a { width: 42px; height: 42px; border-radius: 12px; background: rgba(253,247,234,.08); color: var(--paper); display: grid; place-items: center; margin: 0; transition: background .2s ease, transform .2s ease; }
.foot-social a:hover { background: var(--red); transform: translateY(-2px) rotate(-4deg); }
.foot-social svg { width: 20px; height: 20px; fill: var(--paper); }
.foot-bottom { border-top: 1px solid rgba(253,247,234,.12); margin-top: 46px; padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .84rem; color: rgba(253,247,234,.55); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Page hero (contact) ---------- */
.page-hero { background: var(--navy); color: var(--paper); padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
.page-hero .script { display: block; margin-bottom: 4px; color: var(--gold-lt); font-size: 2rem; }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); color: var(--paper); margin-bottom: 14px; }
.page-hero p { color: rgba(253,247,234,.8); max-width: 48ch; margin: 0 auto; font-size: 1.08rem; }
.page-hero .leaf { position: absolute; opacity: .16; width: 220px; right: -20px; bottom: -30px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 50px; align-items: start; }
.contact-card { background: var(--card); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow); border: 1px solid var(--line); }
.contact-info-list { list-style: none; padding: 0; margin: 0; }
.contact-info-list li { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px dashed var(--line); }
.contact-info-list li:last-child { border-bottom: 0; }
.contact-info-list .ic { flex: 0 0 auto; width: 50px; height: 50px; border-radius: 15px; background: linear-gradient(140deg, var(--navy), var(--blue)); color: var(--gold-lt); display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.contact-info-list .ic svg { width: 24px; height: 24px; fill: currentColor; }
.contact-info-list b { display: block; font-family: var(--ff-body); font-weight: 600; margin-bottom: 3px; color: var(--navy); }
.contact-info-list a, .contact-info-list span { color: var(--ink-soft); }
.contact-info-list a:hover { color: var(--red); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .85rem; margin-bottom: 8px; color: var(--navy); }
.field input, .field textarea, .field select { width: 100%; padding: 14px 16px; border-radius: 12px; border: 2px solid var(--line); font-family: var(--ff-body); font-size: .95rem; background: var(--paper); color: var(--ink); transition: border-color .2s ease; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); background: #fff; }
.field textarea { min-height: 130px; resize: vertical; }
.form-msg { margin-top: 14px; font-weight: 600; color: var(--red); display: none; }
.form-msg.show { display: block; }

.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 5px solid var(--white); }
.map-embed iframe { width: 100%; height: 340px; border: 0; display: block; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-collage { height: 420px; max-width: 460px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-media .m-main img { height: 420px; }
  .dept-grid { grid-template-columns: 1fr 1fr; }
  .cocina-grid { grid-template-columns: 1fr; gap: 40px; }
  .gs-grid { grid-template-columns: 1fr; gap: 36px; }
  .loc-grid { grid-template-columns: 1fr; }
  .cta .wrap { grid-template-columns: 1fr; gap: 24px; }
  .contact-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-logo-badge img { width: 140px; }

  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 82vw);
    background: var(--navy); flex-direction: column; align-items: flex-start;
    padding: 90px 34px 40px; gap: 22px; transform: translateX(100%); transition: transform .35s ease; box-shadow: -20px 0 50px rgba(0,0,0,.4);
  }
  .nav-links.open { transform: none; }
  .nav-links a { color: var(--paper); font-size: 1.15rem; }
  .nav-links a::after { background: var(--gold); }
}
@media (max-width: 560px) {
  .section { padding: 66px 0; }
  .topbar .wrap { gap: 10px; font-size: .74rem; }
  .about-features { grid-template-columns: 1fr; }
  .dept-grid { grid-template-columns: 1fr; }
  .cocina-media { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .g-wide, .g-tall { grid-column: auto; grid-row: auto; }
  .contact-card { padding: 26px 20px; }
  .hero-collage { height: 360px; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .insta-head { justify-content: center; text-align: center; }
}
