/* ==========================================================================
   PICAZO CAFÉ — Stylesheet
   Warm, bold, family-owned neighborhood café. Nothing fancy.
   ========================================================================== */

:root {
  /* Brand colors (sampled from the Picazo Café logo) */
  --navy: #1f2b45;
  --navy-deep: #141c2e;
  --red: #b8382c;
  --red-dark: #932c22;
  --cream: #faf4e8;
  --cream-deep: #f2e9d8;
  --mustard: #e2a127;
  --white: #ffffff;
  --ink: #241d16;
  --ink-soft: #4a4038;

  --shadow-sm: 0 2px 10px rgba(20, 16, 8, 0.08);
  --shadow-md: 0 8px 30px rgba(20, 16, 8, 0.14);
  --shadow-lg: 0 18px 50px rgba(20, 16, 8, 0.22);

  --radius: 14px;
  --radius-lg: 22px;

  --font-display: 'Archivo Black', 'Arial Black', sans-serif;
  --font-body: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mark: 'Permanent Marker', cursive;

  --container: 1200px;
  --header-h: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(78px + env(safe-area-inset-bottom, 0px));
}
@media (min-width: 900px) {
  body { padding-bottom: 0; }
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.05;
  margin: 0 0 0.4em;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; top: -60px; left: 12px; z-index: 1000;
  background: var(--navy); color: var(--white); padding: 12px 18px;
  border-radius: 8px; transition: top .15s ease;
}
.skip-link:focus { top: 12px; }

:focus-visible {
  outline: 3px solid var(--mustard);
  outline-offset: 2px;
}

/* ---------------------------------------------------------------------- */
/* Buttons                                                                 */
/* ---------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 16px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  min-height: 52px;
  transition: transform .12s ease, box-shadow .12s ease, background-color .12s ease, color .12s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.99); }

/* Priority #1 — Order Now Online */
.btn-order {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-order:hover { background: var(--red-dark); box-shadow: var(--shadow-lg); }

/* Priority #2 / neutral high-contrast */
.btn-primary {
  background: var(--navy);
  color: var(--white);
}
.btn-primary:hover { background: var(--navy-deep); }

/* Priority #3-4 outline */
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.75);
}
.btn-outline-light:hover { background: var(--white); color: var(--navy); }

.btn-mustard {
  background: var(--mustard);
  color: var(--ink);
}
.btn-mustard:hover { filter: brightness(0.95); }

.btn-lg { padding: 19px 34px; font-size: 1.08rem; }
.btn-block { width: 100%; }

.btn[disabled], .btn.is-disabled {
  opacity: 0.55; cursor: not-allowed; box-shadow: none;
}
.btn-outline[disabled]:hover, .btn-outline.is-disabled:hover { background: transparent; color: var(--navy); }
.btn-order[disabled]:hover, .btn-order.is-disabled:hover { background: var(--red); }
.btn-primary[disabled]:hover, .btn-primary.is-disabled:hover { background: var(--navy); }

.cta-row {
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center;
}

/* ---------------------------------------------------------------------- */
/* Header / Navigation                                                    */
/* ---------------------------------------------------------------------- */

.site-header {
  position: sticky; top: 0; z-index: 500;
  background: var(--cream);
  border-bottom: 1px solid rgba(31,43,69,0.08);
}
.site-header .header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; height: var(--header-h);
}
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand img { height: 40px; width: auto; }
.brand-name { font-family: var(--font-display); font-size: 1.05rem; color: var(--navy); }

.main-nav { display: none; }
.main-nav ul { list-style: none; display: flex; gap: 18px; margin: 0; padding: 0; }
.main-nav a {
  font-weight: 700; text-transform: uppercase; font-size: 0.92rem; letter-spacing: 0.03em;
  color: var(--ink); padding: 8px 2px; border-bottom: 3px solid transparent;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { border-color: var(--red); color: var(--red); }

.header-actions { display: flex; align-items: center; gap: 8px; }
.header-actions .btn { min-height: 44px; }
/* Order Online Now is the primary header action — bigger, filled, higher-contrast */
.header-actions .btn-order { padding: 13px 18px; font-size: 0.88rem; }
/* Call Us is secondary — smaller, outlined, lower visual weight */
.header-actions .btn-outline { padding: 10px 14px; font-size: 0.78rem; }
/* Below the desktop nav breakpoint, the header shows only Order Online Now +
   the hamburger — Call Us stays reachable via the mobile menu and the sticky
   bottom bar, which keeps the mobile header from overflowing horizontally. */
.header-actions .js-tel-link { display: none; }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 10px; border: 2px solid var(--navy);
  background: transparent; cursor: pointer;
}
.nav-toggle svg { width: 22px; height: 22px; }

/* Very narrow phones: tighten spacing so Order Online Now + the hamburger
   still fit without pushing the header past the viewport edge. */
@media (max-width: 400px) {
  .site-header .container { padding: 0 14px; }
  .site-header .header-inner { gap: 10px; }
  .header-actions { gap: 6px; }
  .header-actions .btn-order { padding: 12px 13px; font-size: 0.78rem; }
  .nav-toggle { width: 42px; height: 42px; }
  .nav-toggle svg { width: 20px; height: 20px; }
}

/* iPhone SE / very small phones: a bit more room still */
@media (max-width: 340px) {
  .brand-name { display: none; }
  .header-actions .btn-order { padding: 11px 9px; font-size: 0.7rem; }
  .header-actions { gap: 5px; }
}

.mobile-nav {
  position: fixed; inset: var(--header-h) 0 0 0; background: var(--cream);
  z-index: 490; padding: 24px 20px 100px; overflow-y: auto;
  transform: translateX(100%); transition: transform .22s ease;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav ul { list-style: none; margin: 0 0 28px; padding: 0; display: flex; flex-direction: column; }
.mobile-nav a {
  display: block; padding: 16px 4px; font-family: var(--font-display); font-size: 1.5rem;
  color: var(--navy); border-bottom: 1px solid rgba(31,43,69,0.1);
}
.mobile-nav .cta-row { flex-direction: column; align-items: stretch; }
.mobile-nav .cta-row .btn { width: 100%; white-space: normal; text-align: center; }

@media (min-width: 900px) {
  .main-nav { display: block; }
  .nav-toggle { display: none; }
  .header-actions .js-tel-link { display: inline-flex; }
}

/* ---------------------------------------------------------------------- */
/* Sticky mobile order bar                                                */
/* ---------------------------------------------------------------------- */

.sticky-order-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 480;
  display: flex; gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
  background: var(--white);
  box-shadow: 0 -6px 24px rgba(20,16,8,0.16);
}
.sticky-order-bar .btn { flex: 1; min-height: 50px; font-size: 0.86rem; padding: 12px 10px; }
.sticky-order-bar .btn-order { flex: 1.6; }

@media (min-width: 900px) {
  .sticky-order-bar { display: none; }
}

/* Floating desktop order button */
.float-order {
  position: fixed; right: 26px; bottom: 26px; z-index: 480;
  display: none;
}
@media (min-width: 900px) {
  .float-order { display: inline-flex; }
  .float-order .btn { box-shadow: var(--shadow-lg); }
}

/* ---------------------------------------------------------------------- */
/* Hero                                                                    */
/* ---------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}
.hero img.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  object-position: center 30%;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,16,10,0.35) 0%, rgba(20,16,10,0.35) 30%, rgba(15,12,8,0.86) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 60px 0 44px; width: 100%; text-shadow: 0 2px 14px rgba(0,0,0,0.45); }
.hero-eyebrow {
  display: inline-block; font-family: var(--font-mark); font-size: 1.4rem; color: var(--mustard);
  transform: rotate(-2deg); margin-bottom: 6px;
}
.hero h1 {
  font-size: clamp(2.6rem, 8vw, 5rem);
  margin-bottom: 0.12em;
}
.hero .sub-fancy {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 4vw, 2rem);
  color: var(--cream);
  margin-bottom: 0.5em;
}
.hero-badge-wrap { margin: 18px 0 22px; }
.breakfast-stamp {
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; width: 148px; height: 148px; border-radius: 50%;
  border: 4px solid var(--mustard); color: var(--mustard);
  transform: rotate(-8deg);
  font-family: var(--font-display);
  line-height: 1.1;
  background: rgba(20,16,10,0.35);
}
.breakfast-stamp .bs-top { font-size: 1rem; letter-spacing: 0.05em; }
.breakfast-stamp .bs-mid { font-size: 1.55rem; margin: 2px 0; }
.breakfast-stamp .bs-bottom { font-size: 0.8rem; letter-spacing: 0.03em; }

.hero-lede { font-size: 1.15rem; max-width: 640px; margin-bottom: 1.1em; color: #f2ece0; }
.hero-lede strong { color: var(--white); }
.hero-hours-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.35);
  padding: 8px 16px; border-radius: 999px; font-weight: 700; font-size: 0.88rem;
  margin-bottom: 22px; letter-spacing: 0.02em;
}

.menu-download-link {
  display: inline-block; margin-top: 14px; font-size: 0.9rem; font-weight: 600;
  color: #f2ece0; text-decoration: underline; text-underline-offset: 3px;
  opacity: 0.85;
}
.menu-download-link:hover, .menu-download-link:focus-visible { opacity: 1; color: var(--white); }

/* Yelp live review badge slot */
.yelp-badge-slot {
  display: flex; justify-content: center; align-items: center;
  margin: 30px auto 6px; min-height: 1px;
}
.yelp-badge-slot:empty { display: none; }

/* Menu page: PDF view/download actions */
.menu-pdf-card {
  background: var(--white); border-radius: 18px; padding: 26px 24px; text-align: center;
  box-shadow: 0 8px 30px rgba(31,43,69,0.08); margin-bottom: 40px;
}
.menu-pdf-card p { color: var(--ink-soft); margin-bottom: 16px; }
.menu-pdf-card .cta-row { justify-content: center; }

@media (min-width: 700px) {
  .hero-badge-wrap { position: absolute; right: 6%; bottom: 210px; margin: 0; z-index: 3; }
  .breakfast-stamp { width: 178px; height: 178px; }
  .breakfast-stamp .bs-mid { font-size: 1.85rem; }
}

/* ---------------------------------------------------------------------- */
/* Sections / general                                                     */
/* ---------------------------------------------------------------------- */

section { padding: 72px 0; }
.section-tight { padding: 48px 0; }

.eyebrow {
  font-family: var(--font-mark); color: var(--red); font-size: 1.3rem;
  display: inline-block; transform: rotate(-2deg); margin-bottom: 2px;
}
h2.headline { font-size: clamp(2rem, 5vw, 3.1rem); color: var(--navy); }
h2.headline.on-dark, h2.headline.on-red { color: var(--white); }
.subhead {
  font-family: var(--font-display); font-size: clamp(1.1rem, 3vw, 1.5rem);
  color: var(--red); margin-bottom: 0.6em;
}
.subhead.on-dark { color: var(--mustard); }

.lede { font-size: 1.12rem; max-width: 68ch; color: var(--ink-soft); }
.lede.center { margin-left: auto; margin-right: auto; text-align: center; }

.section-head { max-width: 780px; margin-bottom: 34px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.bg-cream { background: var(--cream); }
.bg-cream-deep { background: var(--cream-deep); }
.bg-navy { background: var(--navy); color: var(--white); }
.bg-navy .lede { color: rgba(255,255,255,0.82); }
.bg-red { background: var(--red); color: var(--white); }
.bg-red .lede { color: rgba(255,255,255,0.92); }

/* ---------------------------------------------------------------------- */
/* Breakfast-all-day banner                                                */
/* ---------------------------------------------------------------------- */

.breakfast-banner {
  display: grid; gap: 32px; align-items: center;
}
.breakfast-banner .banner-copy p { font-size: 1.08rem; }
.breakfast-banner .banner-copy p strong { color: var(--navy); }
.breakfast-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.breakfast-photos img { border-radius: var(--radius); box-shadow: var(--shadow-sm); aspect-ratio: 4/5; object-fit: cover; width: 100%; height: 100%; }

@media (min-width: 860px) {
  .breakfast-banner { grid-template-columns: 1.05fr 0.95fr; }
}

/* ---------------------------------------------------------------------- */
/* Two-column media/text rows (history, food intro, don chava, etc.)      */
/* ---------------------------------------------------------------------- */

.split-row {
  display: grid; gap: 34px; align-items: center;
}
.split-row img, .split-row .media-frame { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.split-row .media-frame { overflow: hidden; }
.split-row .media-frame img { width: 100%; height: 100%; object-fit: cover; }

@media (min-width: 860px) {
  .split-row { grid-template-columns: 1fr 1fr; }
  .split-row.media-right { grid-template-columns: 1fr 1fr; }
  .split-row.media-right .media-frame { order: 2; }
}

/* History section: staggered "photo + family portrait" composition */
.history-media {
  position: relative;
  padding-bottom: 16%;   /* room for the overlapping photo to hang below */
  padding-left: 10%;     /* room for the overlapping photo to hang left */
}
.history-media-main { aspect-ratio: 4/3; }
.history-media-family {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 52%;
  max-width: 260px;
  background: var(--white);
  padding: 8px 8px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  transform: rotate(-4deg);
}
.history-media-family img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 870/610;
  object-fit: contain;   /* never crop either parent, whatever the frame */
  object-position: center;
  border-radius: 4px;
}

@media (max-width: 480px) {
  .history-media { padding-bottom: 20%; padding-left: 14%; }
  .history-media-family { width: 60%; max-width: 210px; transform: rotate(-3deg); }
}

/* ---------------------------------------------------------------------- */
/* Signature dish cards                                                   */
/* ---------------------------------------------------------------------- */

.dish-block { padding: 56px 0; }
.dish-block + .dish-block { border-top: 1px solid rgba(31,43,69,0.08); }
.dish-grid { display: grid; gap: 30px; align-items: center; }
.dish-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/3; }
.dish-media img { width: 100%; height: 100%; object-fit: cover; }
.dish-tag {
  position: absolute; top: 16px; left: 16px; background: var(--mustard); color: var(--ink);
  font-family: var(--font-display); font-size: 0.72rem; text-transform: uppercase;
  padding: 7px 12px; border-radius: 999px; letter-spacing: 0.04em;
}
.dish-copy .headline { font-size: clamp(1.7rem, 4vw, 2.5rem); color: var(--navy); }
.dish-copy .subhead { font-size: 1.05rem; }
.dish-copy p { font-size: 1.05rem; }

@media (min-width: 860px) {
  .dish-grid { grid-template-columns: 1fr 1fr; }
  .dish-grid.reverse .dish-media { order: 2; }
}

/* ---------------------------------------------------------------------- */
/* Mini dish cards (rice bowls / senor crispy quick grid, menu page)      */
/* ---------------------------------------------------------------------- */

.card-grid {
  display: grid; gap: 22px; grid-template-columns: 1fr;
}
@media (min-width: 640px) { .card-grid.cols-2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); } }

.food-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.food-card img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.food-card .food-card-body { padding: 18px 20px 22px; }
.food-card h3 { font-size: 1.15rem; color: var(--navy); }
.food-card p { color: var(--ink-soft); font-size: 0.97rem; }

/* ---------------------------------------------------------------------- */
/* Products born at Picazo                                                */
/* ---------------------------------------------------------------------- */

.product-grid { display: grid; gap: 20px; grid-template-columns: 1fr; margin-top: 30px; }
@media (min-width: 780px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
.product-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg); padding: 26px 24px;
}
.bg-navy .product-card h3 { color: var(--mustard); }
.product-card h3 { font-size: 1.25rem; margin-bottom: 0.3em; }
.product-card p { color: rgba(255,255,255,0.82); font-size: 0.98rem; }

/* ---------------------------------------------------------------------- */
/* Food truck section                                                     */
/* ---------------------------------------------------------------------- */

.food-truck-band {
  display: grid; gap: 30px; align-items: center;
}
.food-truck-band .media-frame { aspect-ratio: 4/3; }
@media (min-width: 860px) { .food-truck-band { grid-template-columns: 1fr 1fr; } }

/* ---------------------------------------------------------------------- */
/* Reviews                                                                 */
/* ---------------------------------------------------------------------- */

.review-grid { display: grid; gap: 20px; grid-template-columns: 1fr; margin-top: 30px; }
@media (min-width: 700px) { .review-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .review-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card {
  background: var(--white); border-radius: var(--radius); padding: 24px 22px;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 12px;
}
.review-stars { color: var(--mustard); font-size: 1.1rem; letter-spacing: 2px; }
.review-quote { font-size: 1rem; color: var(--ink-soft); font-style: italic; }
.review-attribution { display: flex; flex-direction: column; gap: 2px; }
.review-name { font-weight: 700; color: var(--navy); font-size: 0.92rem; }
.review-source { font-size: 0.78rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.04em; }
.review-placeholder-tag {
  align-self: flex-start; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.05em;
  background: var(--cream-deep); color: var(--ink-soft); padding: 4px 10px; border-radius: 999px;
}

/* ---------------------------------------------------------------------- */
/* Family strip                                                           */
/* ---------------------------------------------------------------------- */

.family-photos { display: grid; grid-template-columns: 1fr; gap: 14px; }
.family-photos img { border-radius: var(--radius); object-fit: cover; width: 100%; aspect-ratio: 4/3; box-shadow: var(--shadow-sm); }
@media (min-width: 700px) { .family-photos { grid-template-columns: 1.3fr 1fr; } .family-photos img:first-child { aspect-ratio: 4/5; } }

/* ---------------------------------------------------------------------- */
/* Lifestyle band                                                         */
/* ---------------------------------------------------------------------- */

.lifestyle-band {
  position: relative; color: var(--white); min-height: 560px;
  display: flex; align-items: center; overflow: hidden;
}
.lifestyle-band img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.lifestyle-band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(15,12,8,0.82) 0%, rgba(15,12,8,0.42) 65%, rgba(15,12,8,0.2) 100%); }
.lifestyle-band .content { position: relative; z-index: 2; max-width: 640px; }
.lifestyle-band h2 { font-size: clamp(1.9rem, 5.5vw, 3rem); }

/* ---------------------------------------------------------------------- */
/* Final statement band                                                    */
/* ---------------------------------------------------------------------- */

.statement-band { text-align: center; }
.statement-band h2 { font-size: clamp(2.2rem, 7vw, 4rem); color: var(--white); }
.statement-list {
  list-style: none; padding: 0; margin: 28px auto 32px; max-width: 640px;
  display: grid; grid-template-columns: 1fr; gap: 10px 24px; text-align: left;
  font-weight: 600; font-size: 1.05rem;
}
@media (min-width: 480px) {
  .statement-list { grid-template-columns: 1fr 1fr; }
}
.statement-list li::before { content: "— "; color: var(--mustard); }
.statement-final { font-family: var(--font-mark); font-size: 1.8rem; color: var(--mustard); margin-top: 10px; transform: rotate(-1.5deg); }

/* ---------------------------------------------------------------------- */
/* Location / contact                                                     */
/* ---------------------------------------------------------------------- */

.location-grid { display: grid; gap: 34px; }
@media (min-width: 900px) { .location-grid { grid-template-columns: 1fr 1fr; } }
.info-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 30px 28px;
  box-shadow: var(--shadow-sm);
}
.hours-table { width: 100%; border-collapse: collapse; margin: 14px 0; }
.hours-table th { text-align: left; font-family: var(--font-display); font-size: 0.7rem; letter-spacing: 0.05em; color: var(--ink-soft); padding-bottom: 8px; }
.hours-table td { padding: 8px 0; border-top: 1px solid rgba(31,43,69,0.08); font-weight: 600; }
.hours-table td.days { color: var(--ink-soft); font-weight: 500; }
.hours-note {
  display: inline-block; margin-top: 10px; background: var(--mustard); color: var(--ink);
  font-family: var(--font-display); font-size: 0.78rem; padding: 7px 14px; border-radius: 999px;
}
.addr-link { display: block; font-size: 1.15rem; font-weight: 700; color: var(--navy); margin: 10px 0 16px; }
.addr-link:hover { color: var(--red); }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); aspect-ratio: 4/3; }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ---------------------------------------------------------------------- */
/* Forms                                                                   */
/* ---------------------------------------------------------------------- */

.form-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 30px 26px;
  box-shadow: var(--shadow-md);
}
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; margin-bottom: 6px; font-size: 0.94rem; color: var(--navy); }
.field .req { color: var(--red); }
.field input[type="text"], .field input[type="email"], .field input[type="tel"], .field input[type="date"], .field input[type="number"], .field select, .field textarea {
  width: 100%; padding: 13px 14px; border: 2px solid rgba(31,43,69,0.18); border-radius: 10px;
  font-family: var(--font-body); font-size: 1rem; background: var(--cream); color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--navy); outline: none; }
.field textarea { min-height: 110px; resize: vertical; }
.radio-row { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 6px; }
.radio-option { display: flex; align-items: center; gap: 8px; font-weight: 600; }
.radio-option input { width: 20px; height: 20px; }
.field-hint { font-size: 0.85rem; color: var(--ink-soft); margin-top: 6px; }
.hp-field { position: absolute; left: -9999px; top: -9999px; }

.form-success {
  display: none; text-align: center; padding: 40px 20px;
}
.form-success.is-visible { display: block; }
.form-success h3 { color: var(--navy); font-size: 1.8rem; }
.form-error { display: none; background: #fdecea; border: 1px solid #f0b3ab; color: #7a2418; padding: 14px 16px; border-radius: 10px; margin-bottom: 18px; }
.form-error.is-visible { display: block; }

/* ---------------------------------------------------------------------- */
/* Footer                                                                  */
/* ---------------------------------------------------------------------- */

.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.85); padding: 56px 0 100px; }
@media (min-width: 900px) { .site-footer { padding-bottom: 56px; } }
.footer-grid { display: grid; gap: 34px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; } }
.footer-brand img { height: 42px; margin-bottom: 12px; }
.footer-brand p { color: rgba(255,255,255,0.65); font-size: 0.94rem; }
.footer-col h3 { font-family: var(--font-display); font-size: 0.9rem; color: var(--mustard); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 14px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a:hover { color: var(--mustard); }
.footer-social { display: flex; gap: 12px; margin-top: 14px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.3);
  display: inline-flex; align-items: center; justify-content: center;
}
.footer-social a:hover { background: var(--mustard); border-color: var(--mustard); color: var(--navy-deep); }
.footer-social a[hidden] { display: none; }
.footer-bottom {
  margin-top: 44px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.14);
  text-align: center; font-size: 0.9rem; color: rgba(255,255,255,0.6);
}
.footer-bottom .statement { font-family: var(--font-display); color: var(--white); font-size: 1.05rem; margin-bottom: 6px; }

/* ---------------------------------------------------------------------- */
/* Page header (interior pages)                                           */
/* ---------------------------------------------------------------------- */

.page-header {
  padding: 54px 0 40px; background: var(--navy); color: var(--white); text-align: center;
}
.page-header h1 { font-size: clamp(2.1rem, 6vw, 3.2rem); }
.page-header p { color: rgba(255,255,255,0.82); max-width: 640px; margin: 10px auto 0; font-size: 1.05rem; }
.breadcrumb-hours { margin-top: 16px; font-weight: 700; color: var(--mustard); }

/* Menu page */
.menu-section { padding: 20px 0 10px; }
.menu-section + .menu-section { border-top: 1px solid rgba(31,43,69,0.1); }
.menu-cat-title { color: var(--navy); font-size: 1.7rem; }
.menu-item { padding: 16px 0; border-top: 1px dashed rgba(31,43,69,0.2); }
.menu-item:first-child { border-top: none; }
.menu-item-name { font-family: var(--font-display); font-size: 1.05rem; color: var(--navy); }
.menu-item p { color: var(--ink-soft); font-size: 0.97rem; margin-top: 4px; }
.menu-note {
  background: var(--cream-deep); border-radius: var(--radius); padding: 18px 20px; margin: 26px 0;
  font-size: 0.96rem; color: var(--ink-soft);
}

/* 404 */
.error-page { text-align: center; padding: 110px 20px 100px; }
.error-page h1 { font-size: clamp(3rem, 10vw, 6rem); color: var(--navy); }

/* Utility */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
