:root {
  --brand: #E53935;        /* CHILL’E FOOD logo red */
  --brand-dark: #B71C1C;   /* deep red hover */
  --ink: #1F1D1D;          /* logo black */
  --muted: #6A6765;
  --cream: #FFFFFF;        /* clean white base */
  --soft: #FFF1F0;         /* very soft red tint */
  --accent: #FF6B35;       /* small flame accent only */
  --gold: #E53935;         /* legacy variable mapped to brand red */
  --card: #FFFFFF;
  --border: #E5E5E5;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  --radius: 22px;
  --max-width: 1120px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
}
.skip-link:focus { left: 12px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 248, 240, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(233, 216, 197, 0.8);
}
.navbar {
  max-width: var(--max-width);
  margin: 0 auto;
  min-height: 78px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
  color: var(--brand);
  letter-spacing: -0.03em;
}
.logo-img {
  width: auto;
  height: 54px;
  max-width: 190px;
  object-fit: contain;
  display: block;
}
.logo-fallback {
  display: none;
  font-size: 1.1rem;
}
.logo.logo-image-missing .logo-fallback {
  display: inline-block;
}
.logo.logo-image-missing .logo-img {
  display: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-links a {
  text-decoration: none;
  font-weight: 700;
  color: var(--ink);
  font-size: 0.95rem;
}
.nav-links a:hover,
.nav-links a:focus { color: var(--brand); }
.mobile-menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 12px;
  padding: 10px;
}
.mobile-menu-btn span:not(.sr-only) {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  border-radius: 99px;
}

.section { padding: 90px 22px; }
.section-offset { padding-top: 72px; }
.section-soft { background: var(--soft); }
.container {
  max-width: var(--max-width);
  margin: 0 auto;
}
.narrow { max-width: 820px; text-align: center; }
.center { text-align: center; }
.center-text { text-align: center; margin-left: auto; margin-right: auto; }
.eyebrow {
  margin: 0 0 10px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
  margin-bottom: 20px;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
  margin-bottom: 18px;
}
h3 { font-size: 1.15rem; margin-bottom: 8px; }
.lead, .hero-text, .section-description {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 700px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: center;
  background:
    linear-gradient(115deg, rgba(37, 33, 31, 0.90) 0%, rgba(75, 31, 23, 0.82) 48%, rgba(180, 58, 54, 0.42) 100%),
    radial-gradient(circle at 20% 20%, rgba(246, 184, 75, 0.45), transparent 28%),
    linear-gradient(135deg, #FFF8F0 0%, #F8EFE4 100%);
  color: #fff;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}
.hero-bg-shape {
  position: absolute;
  border-radius: 999px;
  filter: blur(3px);
  opacity: 0.65;
  pointer-events: none;
}
.hero-bg-shape-one {
  width: 340px;
  height: 340px;
  right: -90px;
  top: 90px;
  background: rgba(246, 184, 75, 0.22);
}
.hero-bg-shape-two {
  width: 220px;
  height: 220px;
  left: -80px;
  bottom: 40px;
  background: rgba(255, 248, 240, 0.14);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  gap: 54px;
  align-items: center;
}
.hero-copy { position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 8px 13px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  color: #FFE7BA;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
}
.hero h1 { color: #fff; text-shadow: 0 18px 45px rgba(0,0,0,0.26); }
.hero-text {
  color: #FFEEDD;
  font-size: clamp(1.06rem, 2vw, 1.24rem);
  max-width: 690px;
}
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 21px;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: #2A1711; box-shadow: 0 18px 34px rgba(246, 184, 75, 0.28); }
.btn-primary:hover { background: #FFD075; }
.btn-dark { background: #fff; color: var(--ink); box-shadow: 0 16px 30px rgba(0,0,0,0.18); }
.btn-dark:hover { background: #FFF4E5; }
.btn-outline { border: 2px solid rgba(255,255,255,0.78); color: #fff; background: rgba(255,255,255,0.08); }
.btn-full { width: 100%; }
.hero-trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 36px;
}
.hero-trust-row div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}
.hero-trust-row strong { display: block; color: #fff; }
.hero-trust-row span { color: #FFE7BA; font-size: 0.9rem; }
.hero-showcase {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}
.hero-photo-frame {
  position: relative;
  width: min(100%, 560px);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 44px;
  border: 1px solid rgba(255,255,255,0.24);
  background: linear-gradient(145deg, rgba(255,255,255,0.96), rgba(255,248,240,0.88));
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.30);
  transform: rotate(1.5deg);
}
.hero-photo-frame::after {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(180, 58, 54, 0.16);
  border-radius: 34px;
  pointer-events: none;
}
.hero-photo-frame img {
  width: 92%;
  transform: rotate(-1.5deg) scale(1.02);
}
.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 280px;
  padding: 14px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: 0 22px 44px rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.5);
}
.floating-card span { font-size: 1.45rem; }
.floating-card strong,
.floating-card small { display: block; }
.floating-card small { color: var(--muted); line-height: 1.3; }
.floating-card-top { top: 56px; left: 0; }
.floating-card-bottom { right: 0; bottom: 64px; }
.section-header.split {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 34px;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.info-card, .menu-card, .testimonial, .inquiry-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(88, 41, 28, 0.08);
}
.info-card { padding: 24px; }
.card-icon { display: inline-block; font-size: 2rem; margin-bottom: 14px; }
.info-card p, .menu-card p, .testimonial blockquote { color: var(--muted); margin-bottom: 0; }
.menu-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.menu-card { overflow: hidden; }
.menu-card div { padding: 20px; }
.menu-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; background: var(--soft); }
.why-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 38px;
  align-items: center;
}
.section-dark {
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(246, 184, 75, 0.25), transparent 36%),
    #241B18;
}
.section-dark p, .section-dark .check-list { color: #F9EADC; }
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.check-list li {
  position: relative;
  padding: 16px 18px 16px 48px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 18px;
  color: var(--gold);
  font-weight: 900;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}
.gallery-grid img {
  width: 100%;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 22px rgba(88, 41, 28, 0.08);
}
.testimonials-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.testimonial { margin: 0; padding: 24px; }
.testimonial blockquote { margin: 0 0 16px; }
.testimonial figcaption { color: var(--brand); font-weight: 900; }
.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 38px;
  align-items: start;
}
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.inquiry-form { padding: 26px; display: grid; gap: 16px; }
.form-row { display: grid; gap: 7px; }
.two-column { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
label { font-weight: 800; color: var(--ink); }
input, select, textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
}
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus, .btn:focus-visible, a:focus-visible, button:focus-visible {
  outline: 3px solid rgba(246, 184, 75, 0.55);
  outline-offset: 3px;
}
.form-message {
  display: none;
  margin: 0;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 700;
}
.form-message.is-visible { display: block; }
.form-message.success { background: #EAF8EA; color: #236423; }
.form-message.error { background: #FDECE9; color: #8A221E; }
.site-footer {
  background: var(--ink);
  color: #fff;
  padding: 34px 22px;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.site-footer p { margin: 4px 0 0; color: #E7D7C8; }
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-links a { color: #fff; font-weight: 800; text-decoration: none; }
.footer-links a:hover { color: var(--gold); }
.copyright { flex-basis: 100%; font-size: 0.9rem; }

@media (max-width: 900px) {
  .logo-img { height: 46px; max-width: 160px; }
  .hero { min-height: auto; }
  .hero-showcase { min-height: 440px; }
  .floating-card-top { left: 14px; top: 28px; }
  .floating-card-bottom { right: 14px; bottom: 28px; }
  .hero-inner, .why-layout, .contact-layout { grid-template-columns: 1fr; }
  .hero-card { min-height: auto; }
  .card-grid, .menu-grid, .testimonials-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .section-header.split { align-items: start; flex-direction: column; }
}
@media (max-width: 700px) {
  .logo-img { height: 42px; max-width: 145px; }
  .hero { text-align: left; }
  .hero-inner { gap: 28px; }
  .hero-trust-row { grid-template-columns: 1fr; }
  .hero-showcase { min-height: 360px; }
  .hero-photo-frame { border-radius: 30px; }
  .floating-card { position: relative; inset: auto; width: 100%; margin-top: 10px; }
  .hero-showcase { display: block; }

  .mobile-menu-btn { display: block; }
  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 70px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 12px 14px; border-radius: 12px; }
  .nav-links a:hover { background: var(--soft); }
  .section { padding: 68px 18px; }
  .hero-highlights, .card-grid, .menu-grid, .testimonials-grid, .gallery-grid, .two-column { grid-template-columns: 1fr; }
  .cta-buttons .btn, .contact-actions .btn { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
/* PREMIUM NAVBAR UPGRADE */
.site-header {
  box-shadow: 0 8px 28px rgba(88, 41, 28, 0.06);
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 248, 240, 0.98);
  box-shadow: 0 14px 34px rgba(88, 41, 28, 0.14);
  border-bottom-color: rgba(233, 216, 197, 1);
}

.navbar {
  min-height: 104px;
  transition: min-height 0.25s ease;
}

.site-header.is-scrolled .navbar {
  min-height: 82px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  min-width: 0;
}

.logo-img {
  height: 96px;
  width: 96px;
  max-width: 96px;
  object-fit: contain;
  border-radius: 18px;
  flex: 0 0 auto;
  transition: height 0.25s ease, width 0.25s ease, max-width 0.25s ease, transform 0.25s ease;
}

.site-header.is-scrolled .logo-img {
  height: 70px;
  width: 70px;
  max-width: 70px;
}

.logo-text-group {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  white-space: nowrap;
}

.logo-main {
  font-weight: 900;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: var(--brand);
  letter-spacing: -0.04em;
}

.logo-sub {
  margin-top: 4px;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo.logo-image-missing .logo-text-group {
  display: none;
}

.logo.logo-image-missing .logo-fallback {
  display: inline-block;
}

.nav-links {
  gap: 8px;
  padding: 7px;
  border: 1px solid rgba(233, 216, 197, 0.75);
  background: rgba(255, 255, 255, 0.56);
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(88, 41, 28, 0.06);
}

.nav-links a {
  position: relative;
  padding: 10px 14px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus,
.nav-links a.is-active {
  color: var(--brand);
  background: rgba(246, 184, 75, 0.16);
}

.nav-links a.is-active::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 5px;
  height: 3px;
  border-radius: 99px;
  background: var(--gold);
}

@media (max-width: 900px) {
  .navbar {
    min-height: 90px;
  }

  .site-header.is-scrolled .navbar {
    min-height: 76px;
  }

  .logo-img {
    height: 76px;
    width: 76px;
    max-width: 76px;
  }

  .site-header.is-scrolled .logo-img {
    height: 60px;
    width: 60px;
    max-width: 60px;
  }

  .logo-main {
    font-size: 1rem;
  }

  .logo-sub {
    font-size: 0.68rem;
  }
}

@media (max-width: 700px) {
  .navbar {
    min-height: 82px;
  }

  .logo {
    gap: 10px;
  }

  .logo-img,
  .site-header.is-scrolled .logo-img {
    height: 58px;
    width: 58px;
    max-width: 58px;
    border-radius: 14px;
  }

  .logo-main {
    font-size: 0.94rem;
  }

  .logo-sub {
    font-size: 0.62rem;
    letter-spacing: 0.05em;
  }

  .mobile-menu-btn {
    flex: 0 0 auto;
    box-shadow: 0 8px 18px rgba(88, 41, 28, 0.08);
  }

  .nav-links {
    top: 78px;
    border-radius: 20px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.98);
  }

  .nav-links a {
    border-radius: 14px;
  }

  .nav-links a.is-active::after {
    display: none;
  }
}

@media (max-width: 420px) {
  .logo-sub {
    display: none;
  }
}

/* Conversion upgrade: stronger branded CTAs and quick inquiry paths */
.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff !important;
  box-shadow: 0 10px 22px rgba(229, 57, 53, 0.22);
}
.nav-cta:hover,
.nav-cta:focus {
  background: var(--brand-dark);
  color: #fff !important;
}
.nav-links a.nav-cta.is-active::after { display: none; }

.menu-inquiry-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(229, 57, 53, 0.18);
}
.menu-inquiry-link:hover,
.menu-inquiry-link:focus {
  background: var(--brand-dark);
  color: #fff;
}

.conversion-note {
  padding: 14px 16px;
  border: 1px solid rgba(229, 57, 53, 0.18);
  border-radius: 16px;
  background: #FFF1F0;
  color: var(--ink);
  font-size: 0.95rem;
}
.conversion-note strong { color: var(--brand); }

.sticky-inquiry-bar {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 30;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(calc(100% - 28px), 760px);
  padding: 12px;
  border: 1px solid rgba(229, 57, 53, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}
.sticky-inquiry-bar span {
  flex: 1;
  padding-left: 12px;
  font-weight: 900;
  color: var(--ink);
}
.sticky-inquiry-bar .btn {
  min-height: 42px;
  padding: 9px 14px;
  font-size: 0.92rem;
}

.site-footer { padding-bottom: 105px; }

@media (max-width: 700px) {
  .nav-cta { text-align: center; }
  .sticky-inquiry-bar {
    left: 12px;
    right: 12px;
    bottom: 12px;
    transform: none;
    width: auto;
    border-radius: 22px;
    flex-wrap: wrap;
  }
  .sticky-inquiry-bar span {
    flex-basis: 100%;
    padding-left: 4px;
    text-align: center;
  }
  .sticky-inquiry-bar .btn {
    flex: 1 1 140px;
  }
  .site-footer { padding-bottom: 155px; }
}


/* =========================================================
   BRAND COLOR UPGRADE: Red + Black + White system
   Matches CHILL’E FOOD logo and strengthens CTA visibility.
   ========================================================= */
body {
  background: #fff;
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 2px solid rgba(229, 57, 53, 0.18);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: rgba(229, 57, 53, 0.35);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
}

.logo-main,
.logo-text,
.logo-fallback,
.eyebrow,
.testimonial figcaption,
.conversion-note strong {
  color: var(--brand);
}

.logo-sub {
  color: var(--ink);
}

.nav-links {
  border-color: rgba(229, 57, 53, 0.18);
  background: rgba(255, 255, 255, 0.86);
}

.nav-links a:hover,
.nav-links a:focus,
.nav-links a.is-active {
  color: var(--brand);
  background: #FDEAEA;
}

.nav-links a.is-active::after {
  background: var(--brand);
}

.hero {
  background:
    linear-gradient(115deg, rgba(31, 29, 29, 0.95) 0%, rgba(31, 29, 29, 0.88) 44%, rgba(229, 57, 53, 0.78) 100%),
    radial-gradient(circle at 18% 18%, rgba(229, 57, 53, 0.32), transparent 30%),
    linear-gradient(135deg, #1F1D1D 0%, #E53935 100%);
}

.hero-eyebrow {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(229, 57, 53, 0.28);
}

.hero-text,
.hero-trust-row span {
  color: #FBECEC;
}

.hero-trust-row div {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.18);
}

.btn-primary,
.nav-cta,
.menu-inquiry-link,
.sticky-inquiry-bar .btn-primary {
  background: var(--brand);
  color: #fff !important;
  box-shadow: 0 18px 34px rgba(229, 57, 53, 0.28);
}

.btn-primary:hover,
.nav-cta:hover,
.nav-cta:focus,
.menu-inquiry-link:hover,
.menu-inquiry-link:focus,
.sticky-inquiry-bar .btn-primary:hover {
  background: var(--brand-dark);
  color: #fff !important;
}

.btn-dark {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 16px 30px rgba(31, 29, 29, 0.24);
}

.btn-dark:hover {
  background: #000;
  color: #fff;
}

.btn-outline,
.contact-actions .btn-outline,
.hero .btn-outline {
  background: #fff;
  color: var(--brand) !important;
  border: 2px solid var(--brand);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}

.btn-outline:hover,
.contact-actions .btn-outline:hover,
.hero .btn-outline:hover {
  background: var(--brand);
  color: #fff !important;
  border-color: var(--brand);
}

.section-soft {
  background: #FFF1F0;
}

.info-card,
.menu-card,
.testimonial,
.inquiry-form {
  border-color: rgba(229, 57, 53, 0.16);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.card-icon {
  color: var(--brand);
}

.section-dark {
  background:
    radial-gradient(circle at top right, rgba(229, 57, 53, 0.30), transparent 36%),
    #1F1D1D;
}

.check-list li::before {
  color: var(--brand);
}

input:focus,
select:focus,
textarea:focus,
.btn:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(229, 57, 53, 0.35);
}

.conversion-note {
  border-color: rgba(229, 57, 53, 0.22);
  background: #FFF1F0;
}

.sticky-inquiry-bar {
  border-color: rgba(229, 57, 53, 0.26);
}

.site-footer {
  background: var(--ink);
}

.footer-links a:hover {
  color: var(--brand);
}

/* Alignment consistency cleanup */
.section > .container > h2,
.section > .container > .eyebrow.center + h2 {
  text-align: center;
}

.services-grid .info-card,
.testimonials-grid .testimonial {
  height: 100%;
}

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

.menu-card div {
  flex: 1;
}



.btn:disabled,
.btn[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.manual-copy-box {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(229, 57, 53, 0.22);
  border-radius: 16px;
  background: #FFF1F0;
}

.manual-copy-box[hidden] {
  display: none;
}

.manual-copy-box strong {
  color: var(--brand);
}

.manual-copy-box textarea {
  min-height: 170px;
  background: #fff;
}


.messenger-instruction {
  margin: -4px 0 0;
  padding: 10px 14px;
  border-radius: 14px;
  background: #F7FBFF;
  color: #23415E;
  border: 1px solid rgba(35, 65, 94, 0.14);
  font-size: 0.92rem;
  font-weight: 700;
}

.messenger-instruction[hidden] {
  display: none;
}
