/* Serranos Taco Truck — palette lifted straight off their own truck: the logo's
   grass green (#5aaf2d), the cactus green, the magenta and gold desert flowers
   painted along the side, and the near-black plate the wordmark sits on. */
@font-face {
  font-family: 'Anton';
  src: url('assets/anton.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
:root {
  --ink: #0d1410;
  --ink-2: #16221a;
  --deep: #1f5c2a;
  --text: #1d221c;
  --muted: #5f6a5f;
  --paper: #f7f6f0;
  --soft: #ecebe0;
  --cream: #fdf7ea;
  --white: #fff;
  --green: #5aaf2d;
  /* The logo green only hits ~2.5:1 on white, so it fails WCAG AA as small text.
     Backgrounds, borders and gradients use --green; small text on a light panel
     (card eyebrows, field labels) uses --green-ink, which clears 5:1. */
  --green-ink: #35791b;
  --green-bright: #7ed957;
  --cactus: #69de72;
  --rose: #c2415f;
  --rose-light: #d95c78;
  --gold: #f2c230;
  --gold-deep: #e0a028;
  --purple: #6c4486;
  --purple-light: #99619d;
  --line: rgba(13, 20, 16, .13);
  --shadow: 0 24px 74px rgba(13, 20, 16, .2);
  --radius: 14px;
  --display: 'Anton', Impact, 'Arial Narrow Bold', sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--text); font-family: var(--body); line-height: 1.6; overflow-x: hidden; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
h1, h2, h3, p, a, span, strong, article, section, div { min-width: 0; }
h1, h2, h3, p { overflow-wrap: break-word; }
h1, h2 { font-family: var(--display); font-weight: 400; text-transform: uppercase; }
/* Anton is a single-weight display face; loosen the tracking a touch so long
   headlines do not read as a solid block. */
h1 { letter-spacing: .01em; }
h2 { letter-spacing: .012em; }

/* ---------- header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 10px clamp(16px, 4vw, 56px); background: rgba(13, 20, 16, .95); border-bottom: 1px solid rgba(126, 217, 87, .28); backdrop-filter: blur(18px); }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
/* The wordmark is die-cut off its black plate, so it needs a dark surface: the
   "Fine Mexican Food" script is white and would vanish on a light header. */
.brand-logo { height: 46px; width: auto; object-fit: contain; flex: 0 0 auto; }
.nav-links { display: flex; gap: 20px; color: rgba(255,255,255,.86); font-size: 13.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.nav-links a:hover { color: var(--green-bright); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.phone-link { display: grid; color: #fff; font-weight: 900; white-space: nowrap; line-height: 1.15; font-size: 1.02rem; }
.phone-link small { color: var(--gold); font-size: .62rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.phone-link:hover { color: var(--green-bright); }

/* ---------- buttons ---------- */
.btn { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; border: 1px solid transparent; border-radius: 999px; padding: 0 24px; font-size: 13.5px; font-weight: 900; text-transform: uppercase; letter-spacing: .05em; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease; text-align: center; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(13, 20, 16, .26); }
.btn.primary, .btn.small { background: var(--rose); color: #fff; border-color: var(--rose); }
.btn.primary:hover, .btn.small:hover { background: var(--rose-light); border-color: var(--rose-light); }
.btn.secondary { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.34); }
.btn.secondary:hover { background: rgba(255,255,255,.18); }
.btn.light { background: #fff; color: var(--ink); border-color: #fff; }
.btn.ghost { color: #fff; border-color: rgba(255,255,255,.5); background: transparent; }
.btn.ghost:hover { background: rgba(255,255,255,.12); }
/* On the light-on-dark promise band the ghost button needs a visible edge. */
.btn.ghost-light { color: #fff; border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.08); }
.btn.dark-btn { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn.dark-btn:hover { background: var(--deep); border-color: var(--deep); }
.btn.small { min-height: 44px; padding: 0 18px; }
.menu-toggle { display: none; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.24); border-radius: 12px; background: transparent; position: relative; }
.menu-toggle span, .menu-toggle:before, .menu-toggle:after { content: ""; position: absolute; left: 13px; right: 13px; height: 2px; border-radius: 999px; background: #fff; }
.menu-toggle span { top: 23px; }
.menu-toggle:before { top: 16px; }
.menu-toggle:after { top: 30px; }
.mobile-menu { display: none; }

/* ---------- hero ---------- */
.hero { position: relative; isolation: isolate; min-height: calc(100svh - 78px); display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(330px, .96fr); align-items: center; gap: clamp(30px, 5vw, 68px); padding: clamp(44px, 7vw, 92px) clamp(16px, 5vw, 76px); background: linear-gradient(150deg, #0d1410, #16221a 52%, #1f5c2a); color: #fff; overflow: hidden; }
.hero > *:not(.hero-photo):not(.steam-motion) { position: relative; z-index: 2; }
/* Their own truck, dropped back behind a deep green scrim so the headline stays
   readable over the mural. */
.hero-photo { position: absolute; inset: 0; z-index: 0; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 58% 45%; opacity: .38; filter: saturate(1.05) contrast(1.03); }
.hero-photo:after { content: ""; position: absolute; inset: 0; background: linear-gradient(105deg, rgba(13,20,16,.96) 0%, rgba(13,20,16,.8) 42%, rgba(22,34,26,.5) 70%, rgba(31,92,42,.34) 100%); }

/* ---------- steam + drifting mural motes ---------- */
.steam-motion { position: absolute; inset: 0; z-index: 1; overflow: hidden; pointer-events: none; }
.steam-motion .wisps { position: absolute; inset: 0; opacity: .4; }
.steam-motion .wisp { position: absolute; left: var(--x); bottom: -14%; width: 60px; height: 190px; border-radius: 50%; transform: scale(var(--sc)); background: radial-gradient(ellipse at 50% 100%, rgba(255,255,255,.3), rgba(255,255,255,0) 68%); animation: steamRise var(--dur) linear infinite; animation-delay: var(--d); }
.steam-motion .motes { position: absolute; inset: 0; }
.steam-motion .motes i { position: absolute; left: var(--x); bottom: -8%; width: var(--s); height: var(--s); border-radius: 46% 54% 52% 48% / 54% 48% 52% 46%; border: 1px solid var(--c); background: color-mix(in srgb, var(--c) 18%, transparent); animation: moteDrift var(--dur) linear infinite; animation-delay: var(--d); }
@keyframes steamRise { 0% { transform: translateY(0) scale(var(--sc)); opacity: 0; } 18% { opacity: .8; } 100% { transform: translateY(-118vh) scale(calc(var(--sc) * 1.7)); opacity: 0; } }
@keyframes moteDrift { 0% { transform: translateY(0) rotate(0); opacity: 0; } 12% { opacity: .8; } 100% { transform: translateY(-115vh) translateX(26px) rotate(220deg); opacity: 0; } }

.hero h1, .subhero h1, .detail-hero h1, .contact-hero h1 { margin: 0; font-size: clamp(2.7rem, 6vw, 5.6rem); line-height: .95; max-width: 15ch; text-wrap: balance; }
.hero p, .subhero p, .detail-hero p, .contact-hero p { color: rgba(240,244,238,.86); font-size: clamp(1.05rem, 2vw, 1.28rem); max-width: 640px; }
.hero p strong, .subhero p strong, .detail-hero p strong { color: #fff; }
.hero p a, .detail-hero p a, .subhero p a { color: var(--green-bright); text-decoration: underline; }
.eyebrow { display: inline-flex; margin-bottom: 16px; color: var(--deep); font-size: .74rem; text-transform: uppercase; letter-spacing: .14em; font-weight: 900; }
.hero .eyebrow, .dark .eyebrow, .cta-band .eyebrow, .subhero .eyebrow, .detail-hero .eyebrow, .contact-hero .eyebrow, .promise-band .eyebrow, .work-strip .eyebrow { color: var(--green-bright); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.trust-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin-top: 32px; max-width: 760px; }
.trust-row span { min-height: 72px; display: flex; align-items: center; padding: 12px 16px; border: 1px solid rgba(255,255,255,.17); border-left: 3px solid var(--gold); border-radius: 12px; background: rgba(255,255,255,.07); color: #fff; font-weight: 800; font-size: .9rem; line-height: 1.35; }
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 400px; }

/* ---------- papel picado ---------- */
.papel { display: flex; height: 46px; overflow: hidden; background: var(--ink); }
.papel .flag { flex: 1 0 auto; width: 4.1667%; height: 100%; background: var(--c); clip-path: polygon(0 0, 100% 0, 100% 46%, 50% 100%, 0 46%); transform-origin: 50% 0; animation: sway 5.5s ease-in-out infinite; animation-delay: var(--d); opacity: .92; }
@keyframes sway { 0%, 100% { transform: rotate(-1.6deg); } 50% { transform: rotate(1.6deg); } }

/* ---------- hours plate ---------- */
.hours-plate { position: relative; width: min(400px, 76vw); }
.hours-plate svg { width: 100%; height: auto; filter: drop-shadow(0 28px 56px rgba(0,0,0,.5)); position: relative; z-index: 1; }
.plate-glow { position: absolute; width: 58%; height: 58%; border-radius: 50%; filter: blur(58px); opacity: .5; z-index: 0; }
.plate-glow.green { top: -6%; right: -6%; background: var(--green-bright); animation: pulseGlow 7s ease-in-out infinite; }
.plate-glow.rose { bottom: -6%; left: -6%; background: var(--rose); animation: pulseGlow 7s ease-in-out infinite 3.5s; }
@keyframes pulseGlow { 0%, 100% { opacity: .28; transform: scale(.94); } 50% { opacity: .56; transform: scale(1.05); } }
.plate-badge { position: absolute; right: -6px; bottom: 10px; z-index: 2; display: grid; gap: 2px; padding: 12px 18px; border-radius: 12px; background: var(--rose); color: #fff; box-shadow: var(--shadow); text-align: center; }
.plate-badge strong { font-family: var(--display); font-size: 1.7rem; line-height: 1; font-weight: 400; }
.plate-badge span { font-size: .64rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; }

/* ---------- ribbon / sections ---------- */
.service-ribbon { display: flex; flex-wrap: wrap; gap: 10px; padding: 18px clamp(16px, 5vw, 76px); background: #fff; border-bottom: 1px solid var(--line); }
.service-ribbon span, .pill { display: inline-flex; padding: 10px 16px; border: 1px solid var(--line); border-radius: 999px; background: var(--soft); color: var(--deep); font-weight: 800; font-size: .9rem; }
.pill { background: #fff; transition: transform .16s ease, border-color .16s ease, color .16s ease; }
.pill:hover { transform: translateY(-2px); border-color: var(--green); color: var(--green-ink); }
.section { padding: clamp(62px, 9vw, 116px) clamp(16px, 5vw, 76px); }
.section.soft { background: var(--soft); }
.section.dark { background: var(--ink); color: #fff; }
.section-head { max-width: 900px; margin-bottom: 38px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section h2, .dark h2, .cta-band h2, .estimate-card h2, .promise-band h2, .menu-card h2 { margin: 0 0 14px; font-size: clamp(2rem, 4.3vw, 3.9rem); line-height: 1.02; text-wrap: balance; }
.section-head p, .two-col p, .service-card p, .area-card p, .process-grid p, .faq-list p, .stacked-list p, .offer-card p, .pillar p, .event-card p, .venue-card p { color: var(--muted); font-size: 1.03rem; }
.two-col p a, .section-head p a { color: var(--rose); text-decoration: underline; }
.dark p, .dark .stacked-list p { color: rgba(240,244,238,.78); }
.dark .stacked-list p a { color: var(--green-bright); text-decoration: underline; }

/* ---------- service cards ---------- */
.card-grid { display: grid; gap: 18px; }
.card-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.service-card, .event-card { position: relative; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; padding: 28px 26px 26px; overflow: hidden; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.service-card:before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px; background: linear-gradient(90deg, var(--green), var(--gold)); transform: scaleX(0); transform-origin: left; transition: transform .28s ease; }
.service-card:hover:before { transform: scaleX(1); }
.service-card:hover, .area-card:hover, .event-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(90,175,45,.5); }
.service-icon { width: 62px; height: 62px; display: flex; align-items: center; justify-content: center; border-radius: 16px; background: linear-gradient(140deg, var(--deep), var(--green)); color: #fff; margin-bottom: 18px; }
.service-icon .svc-icon { width: 32px; height: 32px; }
.service-card span { color: var(--green-ink); font-size: .72rem; text-transform: uppercase; letter-spacing: .11em; font-weight: 900; }
.service-card h3, .area-card h3, .event-card h3 { margin: 8px 0 0; font-family: var(--display); font-weight: 400; text-transform: uppercase; letter-spacing: .01em; font-size: clamp(1.25rem, 2vw, 1.55rem); line-height: 1.08; color: var(--ink); }
.event-card h3 { margin-top: 0; }
.service-card p, .event-card p { margin: 10px 0 18px; }
.event-card p { margin-bottom: 0; }
.card-link { margin-top: auto; color: var(--rose) !important; font-size: .78rem !important; letter-spacing: .05em; font-weight: 900; }
.service-card:hover .card-link, .area-card:hover .card-link { color: var(--rose-light) !important; }

/* ---------- menu ---------- */
.menu-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.menu-card { border: 1px solid var(--line); border-radius: var(--radius); background: var(--cream); padding: 30px 30px 26px; box-shadow: 0 6px 20px rgba(13,20,16,.05); }
.menu-card-head { display: flex; align-items: flex-start; gap: 16px; padding-bottom: 18px; margin-bottom: 18px; border-bottom: 2px dashed rgba(13,20,16,.16); }
.menu-icon { width: 56px; height: 56px; flex: 0 0 auto; display: flex; align-items: center; justify-content: center; border-radius: 14px; background: linear-gradient(140deg, var(--deep), var(--green)); color: #fff; }
.menu-icon .svc-icon { width: 30px; height: 30px; }
.menu-card h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: 6px; }
.menu-note { margin: 0; color: var(--muted); font-size: .94rem; line-height: 1.45; }
.menu-items { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.menu-items li { display: grid; gap: 3px; }
.menu-items strong { font-size: 1.06rem; color: var(--ink); font-weight: 900; }
.menu-items span { color: var(--muted); font-size: .96rem; line-height: 1.5; }
.menu-footnote { margin-top: 34px; display: grid; gap: 14px; max-width: 880px; padding: 26px 28px; border: 1px solid var(--line); border-left: 4px solid var(--gold); border-radius: var(--radius); background: #fff; }
.menu-footnote p { margin: 0; color: var(--muted); font-size: 1rem; line-height: 1.6; }
.menu-footnote strong { color: var(--ink); }
.menu-footnote a { color: var(--rose); text-decoration: underline; font-weight: 800; }

/* ---------- promise band ---------- */
.promise-band { margin: 0 clamp(16px, 5vw, 76px); padding: clamp(30px, 5vw, 54px); border-radius: var(--radius); background: linear-gradient(135deg, #16221a, #1f5c2a 60%, var(--green)); color: #fff; display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: clamp(20px, 4vw, 40px); align-items: center; box-shadow: var(--shadow); }
.promise-shield { width: 82px; height: 82px; flex: 0 0 auto; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.34); }
.promise-shield .promise-icon { width: 42px; height: 42px; color: #fff; }
.promise-copy h2 { font-size: clamp(1.7rem, 3.2vw, 2.6rem); }
.promise-copy p { color: rgba(255,255,255,.9); max-width: 640px; margin: 0; }
.promise-actions { display: grid; gap: 10px; }

/* ---------- split / lists ---------- */
.split, .two-col { display: grid; grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr); gap: clamp(28px, 6vw, 74px); align-items: start; }
.stacked-list { display: grid; gap: 12px; }
.stacked-list article { border: 1px solid rgba(255,255,255,.15); border-left: 3px solid var(--gold); border-radius: 12px; background: rgba(255,255,255,.05); padding: 22px 24px; }
.stacked-list strong { font-size: 1.15rem; }
.stacked-list p { margin: 8px 0 0; }

/* ---------- founder ---------- */
.founder-section { background: #fff; }
.founder-layout { display: grid; grid-template-columns: minmax(240px, .78fr) minmax(0, 1.22fr); gap: clamp(28px, 5vw, 66px); align-items: center; }
.founder-photo { margin: 0; position: relative; isolation: isolate; }
.founder-photo img { position: relative; z-index: 1; width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); object-fit: cover; aspect-ratio: 4 / 3; }
/* Green/gold slab peeking out behind the photo. It must stay at z-index 0 inside
   the figure's own stacking context — a negative z-index would drop it behind
   the white .founder-section background and disappear entirely. */
.founder-photo:before { content: ""; position: absolute; inset: auto -14px -14px 14px; height: 70%; border-radius: var(--radius); background: linear-gradient(140deg, var(--green), var(--gold)); z-index: 0; }
.founder-photo figcaption { margin-top: 12px; color: var(--muted); font-size: .88rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }

/* ---------- pillars ---------- */
.pillar-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.pillar { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; padding: 30px 28px; }
.pillar-art { width: 66px; height: 66px; display: flex; align-items: center; justify-content: center; border-radius: 16px; margin-bottom: 18px; color: #fff; }
.pillar.fresh .pillar-art { background: linear-gradient(140deg, var(--rose), var(--gold)); }
.pillar.recipes .pillar-art { background: linear-gradient(140deg, var(--purple), var(--rose)); }
.pillar.local .pillar-art { background: linear-gradient(140deg, var(--deep), var(--green)); }
.pillar-art .pillar-icon { width: 34px; height: 34px; }
.pillar h3 { margin: 0 0 10px; font-family: var(--display); font-weight: 400; text-transform: uppercase; font-size: 1.4rem; color: var(--ink); }
.pillar-note { margin: 30px 0 0; max-width: 900px; font-size: clamp(1.05rem, 2vw, 1.3rem); color: var(--deep); font-weight: 600; }
.pillar-note strong { color: var(--rose); font-weight: 900; }

/* ---------- offers (service pages) ---------- */
.offer-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.offer-card { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; padding: 28px 26px; }
.offer-num { font-family: var(--display); font-size: 1.6rem; color: var(--green-ink); }
.offer-card h3 { margin: 8px 0 10px; font-family: var(--display); font-weight: 400; text-transform: uppercase; font-size: 1.3rem; line-height: 1.1; color: var(--ink); }

/* ---------- venues ---------- */
.venue-section { background: var(--cream); }
.venue-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; }
.venue-card { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; padding: 24px 22px; display: grid; align-content: start; gap: 6px; }
.venue-mark { width: 46px; height: 46px; display: flex; align-items: center; justify-content: center; border-radius: 12px; background: var(--soft); color: var(--deep); margin-bottom: 8px; }
.venue-mark .svc-icon { width: 24px; height: 24px; }
.venue-card h3 { margin: 0; font-family: var(--display); font-weight: 400; text-transform: uppercase; font-size: 1.14rem; line-height: 1.1; color: var(--ink); }
.venue-card span { color: var(--green-ink); font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 900; }
.venue-card p { margin: 4px 0 0; font-size: .94rem !important; }
.venue-note { margin: 28px 0 0; font-size: 1.05rem; color: var(--text); font-weight: 700; }
.venue-note a { color: var(--rose); text-decoration: underline; }

/* ---------- work strip / gallery ---------- */
.work-strip { background: var(--ink); color: #fff; }
.work-strip .section-head h2 { color: #fff; }
.work-strip .section-head p { color: rgba(240,244,238,.78); }
.strip-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.strip-item, .gallery-item { margin: 0; border-radius: var(--radius); overflow: hidden; background: var(--ink-2); border: 1px solid rgba(255,255,255,.12); }
.strip-item img, .gallery-item img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .35s ease; }
.strip-item:hover img, .gallery-item:hover img { transform: scale(1.045); }
.strip-item figcaption { padding: 14px 16px; color: rgba(240,244,238,.82); font-size: .9rem; line-height: 1.45; }
.strip-action { margin-top: 26px; }
.strip-action.center { text-align: center; }
.work-strip .strip-action .btn.dark-btn { background: #fff; color: var(--ink); border-color: #fff; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.gallery-item { background: #fff; border-color: var(--line); }
.gallery-item figcaption { padding: 16px 18px; color: var(--muted); font-size: .95rem; line-height: 1.5; }

/* ---------- reviews ---------- */
.reviews-section { background: linear-gradient(180deg, #f2f1e6 0%, #e8e7da 100%); }
.reviews-section .eyebrow { color: var(--deep); }
.reviews-section .section-head h2 { color: var(--ink); }
/* Stretch, not start: one of the three real testimonials runs to a paragraph and
   the other two are a single line, and ragged card heights read as broken. Equal
   heights with the author pinned to the bottom keeps the row tidy. */
.review-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; max-width: 1120px; margin: 0 auto; align-items: stretch; }
.review-grid.wide { max-width: 1240px; }
.test-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; display: flex; flex-direction: column; box-shadow: 0 6px 20px rgba(13,20,16,.06); }
.test-quote { font-family: var(--display); font-size: 3.2rem; line-height: .6; color: var(--gold); margin-bottom: 12px; }
.test-headline { font-family: var(--display); font-weight: 400; text-transform: uppercase; font-size: 1.16rem; line-height: 1.15; color: var(--ink); margin-bottom: 12px; }
.test-card p { font-size: .97rem; color: var(--muted); line-height: 1.6; margin: 0 0 18px; }
.test-author { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--line); padding-top: 14px; margin-top: auto; }
.test-avatar { width: 44px; height: 44px; border-radius: 999px; object-fit: cover; flex-shrink: 0; border: 2px solid var(--green); }
.test-author .name { font-weight: 800; font-size: .95rem; color: var(--ink); }
.test-author .title { font-size: .8rem; color: var(--muted); }

/* ---------- process / faq ---------- */
.process-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.process-grid article { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; padding: 26px 24px; }
.process-grid span { font-family: var(--display); color: var(--rose); font-size: 1.5rem; }
.process-grid h3 { margin: 12px 0 8px; font-family: var(--display); font-weight: 400; text-transform: uppercase; font-size: 1.24rem; color: var(--ink); }
.faq-section { background: var(--soft); }
.faq-list { display: grid; gap: 10px; max-width: 980px; }
.faq-list details { border: 1px solid var(--line); border-radius: 12px; background: #fff; padding: 18px 22px; }
.faq-list details[open] { border-color: rgba(90,175,45,.5); }
.faq-list summary { cursor: pointer; font-size: 1.06rem; font-weight: 900; color: var(--ink); }
.faq-list summary::marker { color: var(--green-ink); }
.faq-list p { margin: 12px 0 0; }
.faq-list p a { color: var(--rose); text-decoration: underline; }

/* ---------- cta ---------- */
.cta-band { margin: 0 clamp(16px, 5vw, 76px) clamp(62px, 9vw, 94px); padding: clamp(30px, 5vw, 56px); border-radius: var(--radius); background: linear-gradient(135deg, #0d1410, #1f5c2a 68%, var(--green)); color: #fff; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 24px; align-items: center; }
.cta-band p { color: rgba(240,244,238,.9); max-width: 720px; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }

/* ---------- subhero / detail heroes ---------- */
.subhero { position: relative; isolation: isolate; overflow: hidden; padding: clamp(84px, 12vw, 146px) clamp(16px, 5vw, 76px) 62px; background: linear-gradient(150deg, #0d1410, #16221a 58%, #1f5c2a); color: #fff; }
.subhero-copy { position: relative; z-index: 2; }
.subhero h1 { max-width: 18ch; }
.detail-hero, .contact-hero { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(300px, .92fr); gap: clamp(28px, 5vw, 60px); align-items: center; padding: clamp(78px, 11vw, 138px) clamp(16px, 5vw, 76px) clamp(56px, 8vw, 88px); background: linear-gradient(150deg, #0d1410, #16221a 58%, #1f5c2a); color: #fff; }
.detail-hero h1, .contact-hero h1 { max-width: 16ch; }
.detail-art { display: flex; align-items: center; justify-content: center; }
.detail-photo { position: relative; margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.16); }
.detail-photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.detail-photo-badge { position: absolute; left: 16px; bottom: 16px; width: 62px; height: 62px; display: flex; align-items: center; justify-content: center; border-radius: 16px; background: rgba(13,20,16,.82); border: 1px solid rgba(255,255,255,.24); backdrop-filter: blur(6px); color: var(--green-bright); }
.detail-photo-badge .detail-badge-icon { width: 32px; height: 32px; }
.check-list { list-style: none; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; padding: 0; margin: 0; }
.check-list li { position: relative; padding: 17px 16px 17px 48px; border: 1px solid var(--line); border-radius: 12px; background: #fff; color: var(--text); font-weight: 700; }
.check-list li:before { content: ""; position: absolute; left: 18px; top: 21px; width: 14px; height: 14px; border-radius: 50%; background: var(--green); box-shadow: inset 0 0 0 4px #dcebd0; }

/* ---------- areas ---------- */
.pill-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.area-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.area-card { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; padding: 28px 26px; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.area-card span { display: block; color: var(--green-ink); font-size: .72rem; text-transform: uppercase; letter-spacing: .11em; font-weight: 900; }
.area-card p { margin: 10px 0 18px; }

/* ---------- contact ---------- */
.estimate-card { border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 4vw, 38px); background: #fff; color: var(--text); box-shadow: var(--shadow); }
.estimate-logo { width: 100%; max-width: 300px; height: auto; margin: 0 0 20px; }
.estimate-card h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); color: var(--ink); }
.contact-lead { color: var(--muted); margin: 0 0 22px; }
/* The estimate card sits inside .contact-hero, whose ".contact-hero p" rule
   paints paragraphs near-white for the dark hero; re-assert dark text here or
   the card's copy disappears against the white panel. */
.estimate-card p, .estimate-card .form-placeholder-note, .estimate-card .contact-lead { color: var(--muted); }
.estimate-card .form-placeholder-title { color: var(--ink); }
.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.contact-list li { display: grid; gap: 4px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.contact-list li:last-child { border-bottom: none; padding-bottom: 0; }
.contact-list span:first-child { color: var(--green-ink); font-size: .7rem; text-transform: uppercase; letter-spacing: .11em; font-weight: 900; }
.contact-list a, .contact-list li > span:last-child { font-size: 1.08rem; font-weight: 800; color: var(--text); overflow-wrap: anywhere; line-height: 1.4; }
/* The gmail address is long enough to break mid-word in a narrow card; drop it a
   step so it fits at the usual column width. */
.contact-list a[href^="mailto:"] { font-size: .94rem; }
.contact-list a:hover { color: var(--green-ink); }
.contact-details { background: var(--soft); }
.contact-details .contact-list { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 16px; max-width: 1120px; margin: 0 auto; }
.contact-details .contact-list li { padding: 22px 24px; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.map-section { padding-top: 0; }
.map-frame { max-width: 1120px; margin: 0 auto; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); background: var(--soft); }
.map-frame iframe { display: block; width: 100%; height: clamp(320px, 46vw, 460px); border: 0; }
.form-placeholder { border: 1px dashed var(--line); border-radius: 12px; background: var(--soft); padding: 22px; text-align: center; }
.form-placeholder-title { margin: 0 0 8px; font-weight: 900; color: var(--ink); font-size: 1.08rem; }
.form-placeholder-note { margin: 0; color: var(--muted); font-size: .95rem; line-height: 1.55; }
.form-placeholder-actions { display: grid; gap: 10px; margin-top: 18px; }
.form-fallback-note { color: var(--muted); font-size: .92rem; font-weight: 700; text-align: center; }

/* ---------- footer ---------- */
.footer { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: clamp(28px, 5vw, 64px); padding: clamp(44px, 6vw, 68px) clamp(16px, 5vw, 76px) 40px; background: #0a0f0c; color: #fff; }
.footer .brand { width: fit-content; }
.footer .brand-logo { height: 58px; }
.footer-about p { color: rgba(240,244,238,.66); max-width: 560px; margin: 18px 0 16px; font-size: .96rem; }
.footer-address { color: rgba(240,244,238,.82); font-style: normal; font-weight: 700; font-size: .95rem; line-height: 1.6; }
.footer-social { display: inline-flex; align-items: center; gap: 10px; margin-top: 18px; padding: 10px 18px 10px 14px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; color: #fff; font-weight: 800; font-size: .9rem; transition: border-color .18s ease, background .18s ease; }
.footer-social:hover { border-color: var(--green-bright); background: rgba(126,217,87,.12); }
.footer-social .social-icon { width: 20px; height: 20px; color: var(--green-bright); }
.footer-cols { display: grid; grid-template-columns: repeat(3, max-content); gap: 10px 46px; }
.footer-cols div { display: grid; gap: 9px; align-content: start; }
.footer-cols h3 { margin: 0 0 4px; font-size: .72rem; text-transform: uppercase; letter-spacing: .13em; color: var(--green-bright); font-weight: 900; }
.footer-cols a { color: rgba(240,244,238,.84); font-size: .95rem; }
.footer-cols a:hover { color: var(--green-bright); }
.mobile-sticky { display: none; }

/* Reveal animations only apply when JS is running, so the site is fully
   readable with JS off or blocked. */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .5s ease, transform .5s cubic-bezier(.22,1,.36,1); }
.js .reveal.in { opacity: 1; transform: none; }
/* The hero paragraph rules (".contact-hero p" etc.) are more specific than a
   bare ".sms-consent", so the consent block has to match that specificity or it
   renders at full lead-paragraph size. */
.sms-consent, .contact-hero .sms-consent, .hero .sms-consent { margin-top: 18px; max-width: 620px; font-size: .82rem; line-height: 1.55; color: rgba(240,244,238,.64); }
.sms-consent a { color: var(--green-bright); text-decoration: underline; }
.legal-section { max-width: 880px; }
.legal-prose { color: var(--text); }
.legal-prose .updated { color: var(--muted); font-size: .95rem; margin: 0 0 28px; }
.legal-prose h2 { font-size: clamp(1.4rem, 2.8vw, 1.9rem); line-height: 1.15; margin: 36px 0 12px; color: var(--ink); }
.legal-prose h2:first-of-type { margin-top: 0; }
.legal-prose p, .legal-prose li { color: var(--text); font-size: 1.02rem; line-height: 1.7; }
.legal-prose ul { padding-left: 22px; margin: 0 0 14px; display: grid; gap: 6px; }
.legal-prose a { color: var(--rose); text-decoration: underline; }
.legal-prose strong { font-weight: 800; }

@media (max-width: 1240px) {
  .venue-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .card-grid.four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 1120px) {
  .strip-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer { grid-template-columns: 1fr; }
}
@media (max-width: 1040px) {
  .nav-links, .nav-actions { display: none; }
  .menu-toggle { display: block; }
  .mobile-menu { position: fixed; inset: 80px 16px auto; z-index: 49; display: grid; gap: 6px; padding: 10px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); transform: translateY(-12px); opacity: 0; visibility: hidden; pointer-events: none; transition: .18s ease; max-height: calc(100svh - 100px); overflow-y: auto; }
  body.menu-open .mobile-menu { transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto; }
  .mobile-menu a { padding: 14px; border-radius: 12px; color: var(--ink); font-weight: 900; }
  .hero, .detail-hero, .contact-hero, .split, .two-col, .cta-band, .founder-layout { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .menu-grid, .card-grid.three, .process-grid, .area-grid, .review-grid, .pillar-grid, .offer-grid, .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .promise-band { grid-template-columns: auto minmax(0, 1fr); }
  .promise-actions { grid-column: 1 / -1; grid-template-columns: repeat(2, 1fr); }
  .cta-actions { justify-content: flex-start; }
  .founder-photo { max-width: 520px; }
  .footer-cols { grid-template-columns: repeat(2, max-content); }
}
@media (max-width: 760px) {
  .venue-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .site-header { min-height: 68px; padding: 10px 12px; }
  .brand-logo { height: 38px; }
  .footer .brand-logo { height: 48px; }
  .papel { height: 34px; }
  /* The plate shrinks on mobile but the badge does not, so at its desktop
     offsets it sits on top of the tortilla graphic. Drop it clear of the ring. */
  .plate-badge { right: 0; bottom: -14px; padding: 10px 14px; }
  .hero { padding: 40px 14px 52px; gap: 30px; }
  .hero h1, .subhero h1, .detail-hero h1, .contact-hero h1 { font-size: clamp(2.2rem, 10vw, 3.1rem); max-width: 14ch; }
  .hero p, .subhero p, .detail-hero p, .contact-hero p { font-size: 1rem; line-height: 1.55; }
  .hero-actions, .cta-actions, .promise-actions, .strip-action { display: grid; grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .trust-row, .menu-grid, .card-grid.three, .card-grid.four, .process-grid, .area-grid, .check-list, .review-grid, .pillar-grid, .offer-grid, .strip-grid, .gallery-grid, .venue-grid { grid-template-columns: 1fr; }
  .trust-row span { min-height: 58px; }
  .section, .subhero, .detail-hero, .contact-hero { padding-left: 14px; padding-right: 14px; }
  .section h2, .dark h2, .cta-band h2 { font-size: clamp(1.8rem, 8.4vw, 2.5rem); }
  .menu-card { padding: 24px 22px; }
  .menu-card-head { flex-direction: column; gap: 12px; }
  .promise-band { grid-template-columns: 1fr; text-align: center; margin-left: 14px; margin-right: 14px; }
  .promise-shield { margin: 0 auto; }
  .promise-copy p { margin: 0 auto; }
  .cta-band { margin-left: 14px; margin-right: 14px; margin-bottom: 84px; }
  .footer { padding-bottom: 96px; }
  .footer-cols { grid-template-columns: 1fr; gap: 22px; }
  .mobile-sticky { position: fixed; left: 14px; right: 14px; bottom: 14px; z-index: 60; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; opacity: 0; transform: translateY(18px); pointer-events: none; transition: opacity .22s ease, transform .22s ease; }
  .mobile-sticky .btn { width: 100%; box-shadow: var(--shadow); }
  .mobile-sticky .text-sticky { background: #fff; color: var(--ink); border-color: #fff; }
  body.show-mobile-sticky .mobile-sticky { opacity: 1; transform: translateY(0); pointer-events: auto; }
}
@media (prefers-reduced-motion: reduce) {
  *, *:before, *:after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
  .steam-motion { display: none; }
}