:root {
  /* Brand: dark teal + vibrant orange + white (Desi Ruchulu Cafe logo) */
  --ink: #071a1e;
  --ink-mid: #0c262c;
  --teal-glow: rgba(45, 140, 150, 0.22);
  --teal-tagline: #7ebdc8;
  --surface: rgba(255, 255, 255, 0.045);
  --text: #f0f4f5;
  --text-soft: #b8c9cc;
  --muted: #7a9399;
  --accent: #ea580c;
  --accent-soft: #fb923c;
  --accent-dim: rgba(234, 88, 12, 0.14);
  --white: #fafcfc;
  --border: rgba(255, 255, 255, 0.09);
  --border-accent: rgba(234, 88, 12, 0.32);
  --shadow: 0 32px 64px rgba(0, 0, 0, 0.4);
  --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.22);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-optical-sizing: auto;
  color: var(--text);
  background-color: var(--ink);
  background-image:
    radial-gradient(ellipse 110% 75% at 50% -22%, rgba(234, 88, 12, 0.1), transparent 52%),
    radial-gradient(ellipse 55% 45% at 100% 35%, var(--teal-glow), transparent 50%),
    radial-gradient(ellipse 40% 50% at 0% 80%, rgba(22, 90, 98, 0.18), transparent 45%),
    linear-gradient(180deg, var(--ink-mid) 0%, var(--ink) 48%);
  line-height: 1.65;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

.container {
  width: min(1040px, 90vw);
  margin: 0 auto;
}

.container.narrow {
  width: min(720px, 90vw);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px) saturate(1.2);
  background: rgba(7, 26, 30, 0.82);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.12),
    0 0 0 4px rgba(234, 88, 12, 0.2),
    0 6px 24px rgba(0, 0, 0, 0.35);
}

.brand-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: var(--white);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav a:not(.btn-nav) {
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav a:not(.btn-nav):hover {
  color: var(--teal-tagline);
}

.nav a[aria-current="page"] {
  color: var(--teal-tagline);
  font-weight: 600;
}

.btn-nav {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0a1f24 !important;
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-soft), var(--accent));
  box-shadow: 0 4px 22px rgba(234, 88, 12, 0.32);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.btn-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(234, 88, 12, 0.42);
}

.hero {
  padding: clamp(4rem, 12vw, 6.5rem) 0 clamp(3rem, 8vw, 4.5rem);
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: min(90vw, 600px);
  height: 280px;
  background: radial-gradient(ellipse, rgba(234, 88, 12, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
  position: relative;
}

.hero-aside {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero-photo {
  margin: 0;
  border-radius: 1.2rem;
  overflow: hidden;
  border: 1px solid var(--border-accent);
  box-shadow:
    var(--shadow-soft),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  background: var(--ink-mid);
}

.hero-photo img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1024 / 733;
  object-fit: cover;
  object-position: center;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.hero-tagline {
  margin: -0.35rem 0 1.1rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-tagline);
}

.kicker-line {
  width: 2.5rem;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 1rem;
  color: var(--white);
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  font-weight: 500;
}

h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--accent-soft);
}

h2 {
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 500;
}

h3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.section-label {
  margin: 0 0 0.65rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-label.light {
  color: rgba(250, 249, 247, 0.65);
}

.lead {
  max-width: 38rem;
  color: var(--text-soft);
  margin-bottom: 2rem;
  font-size: 1.0625rem;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}

.btn {
  display: inline-block;
  padding: 0.875rem 1.65rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent-soft), var(--accent));
  color: var(--ink);
  box-shadow: 0 4px 24px rgba(234, 88, 12, 0.3);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(234, 88, 12, 0.35);
}

.btn.primary:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 4px 24px rgba(234, 88, 12, 0.2);
}

.btn.ghost {
  border: 1px solid var(--border-accent);
  color: var(--text-soft);
  background: transparent;
}

.btn.ghost:hover {
  border-color: var(--accent-soft);
  color: var(--white);
  background: var(--accent-dim);
}

.btn-keep-case {
  text-transform: none;
  letter-spacing: 0.04em;
}

.hero-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid var(--border-accent);
  border-radius: 1.25rem;
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-card h2 {
  font-size: 1.85rem;
  margin-bottom: 0.5rem;
}

.hero-card > p:not(.card-title) {
  color: var(--text-soft);
  font-size: 0.98rem;
  margin: 0;
  line-height: 1.6;
}

.card-title {
  margin: 0 0 0.35rem;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.price {
  display: inline-block;
  margin-top: 1.25rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent-soft);
  border: 1px solid var(--border-accent);
  background: var(--accent-dim);
}

.section {
  padding: clamp(3.5rem, 8vw, 5rem) 0;
}

.section-copy {
  color: var(--muted);
  max-width: 36rem;
  margin-top: 0.5rem;
  font-size: 1rem;
}

.cards {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.card {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 1rem;
  padding: 1.5rem 1.4rem;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.card:hover {
  border-color: var(--border-accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.65;
}

.menu-page-intro {
  padding-top: clamp(2rem, 6vw, 3rem);
  padding-bottom: 0;
}

.menu-page-intro h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.menu-page-back {
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.menu-page-grid-section {
  padding-top: clamp(1.5rem, 4vw, 2.5rem);
}

.menu-page-grid-section .menu-specials {
  margin-top: 1.5rem;
}

.menu-page-cta {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* Join us (careers / team inquiry) */
.join-page-intro {
  padding-top: clamp(2rem, 6vw, 3rem);
}

.join-page-intro h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.join-page-lead {
  margin-bottom: 1.25rem;
  font-size: 1.0625rem;
  line-height: 1.75;
}

.join-mock-note {
  margin: 0;
  max-width: 40rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--muted);
}

.join-mock-note strong {
  color: var(--text-soft);
  font-weight: 600;
}

.join-form-wrap {
  width: min(32rem, 90vw);
  margin: 0 auto;
}

.join-page-form-section {
  padding-top: clamp(1rem, 3vw, 2rem);
}

.join-form-card {
  border: 1px solid var(--border-accent);
  border-radius: 1.25rem;
  padding: clamp(1.75rem, 4vw, 2.25rem);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  box-shadow: var(--shadow-soft);
}

.join-form-title {
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}

.join-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.join-form {
  position: relative;
}

.join-field {
  margin-bottom: 1.25rem;
}

.join-field:last-of-type {
  margin-bottom: 0;
}

.join-field label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.join-req {
  color: var(--accent);
}

.join-optional {
  text-transform: none;
  letter-spacing: 0.02em;
  font-weight: 500;
  font-size: 0.75rem;
  color: var(--muted);
}

.join-field input,
.join-field textarea,
.join-field select {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 0.65rem;
  border: 1px solid var(--border);
  background: rgba(7, 26, 30, 0.65);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.45;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.join-field textarea {
  resize: vertical;
  min-height: 7rem;
}

.join-field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' viewBox='0 0 12 8'%3E%3Cpath stroke='%23b8c9cc' stroke-linecap='round' stroke-width='1.5' d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.25rem;
}

.join-field input::placeholder,
.join-field textarea::placeholder {
  color: var(--muted);
  opacity: 0.85;
}

.join-field input:hover,
.join-field textarea:hover,
.join-field select:hover {
  border-color: rgba(234, 88, 12, 0.35);
}

.join-field input:focus,
.join-field textarea:focus,
.join-field select:focus {
  outline: none;
  border-color: var(--accent-soft);
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.15);
}

.join-form-error {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fca5a5;
}

.join-actions {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.join-thanks-section {
  padding-top: clamp(3rem, 10vw, 5rem);
  padding-bottom: clamp(3rem, 10vw, 5rem);
}

.join-thanks-section h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.join-thanks-copy {
  margin-bottom: 0;
  font-size: 1.0625rem;
  line-height: 1.75;
}

.join-thanks-actions {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.menu-specials {
  margin-top: 2.75rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.menu-block {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 1rem;
  padding: 1.6rem 1.4rem 1.5rem;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.menu-block:hover {
  border-color: rgba(234, 88, 12, 0.2);
  box-shadow: var(--shadow-soft);
}

.menu-block--featured {
  border-color: var(--border-accent);
  background: linear-gradient(165deg, rgba(234, 88, 12, 0.1) 0%, rgba(255, 255, 255, 0.03) 55%);
}

.menu-block--wide {
  grid-column: 1 / -1;
}

.menu-block--weekend {
  border-color: rgba(234, 88, 12, 0.22);
  background: linear-gradient(165deg, rgba(234, 88, 12, 0.07) 0%, rgba(255, 255, 255, 0.02) 55%);
}

.menu-block--lunch {
  border-color: rgba(126, 189, 200, 0.3);
  background: linear-gradient(165deg, rgba(45, 140, 150, 0.12) 0%, rgba(255, 255, 255, 0.02) 55%);
}

.lunch-boxes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .lunch-boxes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

.lunch-box-card {
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  padding: 1.25rem 1.15rem;
  background: rgba(255, 255, 255, 0.035);
}

.lunch-box-title {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}

.lunch-box-card .menu-item-desc {
  max-width: none;
  margin: 0;
}

.menu-item-list--cols-4 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 720px) {
  .menu-item-list--cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.menu-block-head {
  margin-bottom: 0.85rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border);
}

.menu-block-head h2,
.menu-block-head h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0;
  color: var(--white);
  letter-spacing: 0.02em;
}

.menu-block-head--split {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1rem;
}

.menu-time {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  background: linear-gradient(135deg, var(--accent-soft), var(--accent));
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  white-space: nowrap;
}

.menu-groups-label {
  margin: 0 0 0.75rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.menu-pills {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.menu-pills li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  max-width: 100%;
  padding: 0.65rem 0.9rem;
  border-radius: 0.85rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.menu-pill-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-soft);
  letter-spacing: 0.02em;
}

.menu-pill-desc {
  font-size: 0.75rem;
  line-height: 1.45;
  font-weight: 400;
  color: var(--muted);
  max-width: 28ch;
}

.menu-item-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-item-list li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}

.menu-item-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.menu-item-list li:first-child {
  padding-top: 0;
}

.menu-item-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.65rem;
}

.menu-item-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.02em;
}

.menu-item-desc {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 400;
  color: var(--muted);
  max-width: 40ch;
}

.menu-item-list--cols-4 .menu-item-desc {
  font-size: 0.8125rem;
  max-width: none;
}

.menu-item-list--cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 2.25rem;
}

.menu-item-list--cols li {
  align-items: flex-start;
}

.menu-item-note {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--accent-soft);
}

.alt {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.alt .section-copy {
  font-size: 1.0625rem;
  line-height: 1.75;
}

.two-col {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: start;
}

.info-list {
  margin: 1.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.info-list > div {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 0.75rem 1.25rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--border);
}

.info-list > div:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.info-list dt {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
}

.info-list dd {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.info-list a {
  color: var(--accent-soft);
  border-bottom: 1px solid transparent;
}

.info-list a:hover {
  border-bottom-color: var(--accent-soft);
}

.location-box {
  border: 1px solid var(--border-accent);
  border-radius: 1rem;
  padding: 2rem 1.75rem;
  background: linear-gradient(165deg, var(--accent-dim) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.location-box-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
  color: var(--white);
}

.location-box-copy {
  margin: 0 0 1rem;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.location-link {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-soft);
  letter-spacing: 0.02em;
}

.location-link:hover {
  color: var(--white);
}

.lead-link {
  color: var(--accent-soft);
  font-weight: 600;
  border-bottom: 1px solid rgba(251, 146, 60, 0.4);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.lead-link:hover {
  color: var(--white);
  border-bottom-color: var(--accent-soft);
}

.nap-address {
  font-style: normal;
}

.catering-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(165deg, rgba(45, 140, 150, 0.1) 0%, rgba(7, 26, 30, 0.55) 42%, var(--ink-mid) 100%);
}

.catering-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: start;
}

.catering-copy h2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--accent-soft);
}

.catering-lead {
  margin: 0 0 1.5rem;
  max-width: 48ch;
  color: var(--text-soft);
  font-size: 1.0625rem;
  line-height: 1.75;
}

.catering-highlights {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.catering-highlights li {
  margin: 0;
  padding: 0 0 0 1rem;
  border-left: 2px solid var(--accent);
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.65;
}

.catering-highlights li span {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-tagline);
}

.catering-foot {
  margin: 0 0 1.5rem;
  max-width: 52ch;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.catering-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.catering-aside {
  position: sticky;
  top: 5.5rem;
}

.catering-aside-card {
  margin-bottom: 1rem;
  padding: 1.5rem 1.35rem;
  border: 1px solid var(--border-accent);
  border-radius: 1rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.catering-aside-eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.catering-quote {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  font-style: italic;
  line-height: 1.45;
  color: var(--white);
}

.catering-aside-note {
  margin: 0;
  padding: 0 0.25rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--muted);
}

.faq-list {
  margin: 1.75rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.faq-item dt {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
}

.faq-item dd {
  margin: 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.65;
}

.faq-item dd a {
  color: var(--accent-soft);
}

.faq-item dd a:hover {
  color: var(--white);
}

.cta-inline-link {
  color: var(--accent-soft);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(251, 146, 60, 0.45);
  text-underline-offset: 0.15em;
}

.cta-inline-link:hover {
  color: var(--white);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}

.cta-inner .cta-actions .btn {
  padding: 1rem 1.5rem;
}

.delivery-order {
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.delivery-order-label {
  margin: 0 0 1rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 252, 252, 0.65);
}

.delivery-order-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.delivery-partner {
  display: block;
  line-height: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.28);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.delivery-partner:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.38);
}

.delivery-partner:focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: 3px;
}

.delivery-partner img {
  display: block;
  height: 44px;
  width: auto;
}

.delivery-order-hint {
  margin: 1.15rem auto 0;
  max-width: 34rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--muted);
}

.site-footer a {
  color: var(--teal-tagline);
  font-weight: 500;
}

.site-footer a:hover {
  color: var(--accent-soft);
}

/* Floating WhatsApp community CTA */
.whatsapp-cta {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1.25rem, env(safe-area-inset-bottom));
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.65rem 1.35rem 0.65rem 0.85rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(105deg, #0d6b5c 0%, #1a9d7a 38%, #6ecf3a 100%);
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.18),
    0 12px 28px rgba(22, 163, 74, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.12) inset;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), filter 0.25s var(--ease);
}

.whatsapp-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 6px 10px rgba(0, 0, 0, 0.2),
    0 16px 40px rgba(34, 197, 94, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.16) inset;
  filter: brightness(1.03);
}

.whatsapp-cta:focus-visible {
  outline: 2px solid #86efac;
  outline-offset: 3px;
}

.whatsapp-cta__icon {
  display: flex;
  flex-shrink: 0;
  line-height: 0;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.12));
}

.whatsapp-cta__icon svg {
  display: block;
  width: 28px;
  height: 28px;
}

.whatsapp-cta__text {
  white-space: nowrap;
}

@media (max-width: 420px) {
  .whatsapp-cta {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    max-width: calc(100vw - 2rem);
    padding: 0.55rem 1rem 0.55rem 0.75rem;
    font-size: 0.8125rem;
  }

  .whatsapp-cta:hover {
    transform: translateX(-50%) translateY(-2px);
  }

  .whatsapp-cta__text {
    white-space: normal;
    text-align: left;
    line-height: 1.25;
    max-width: 14rem;
  }

  .whatsapp-cta__icon svg {
    width: 24px;
    height: 24px;
  }
}

.cta {
  text-align: center;
}

.cta-inner {
  border: 1px solid var(--border-accent);
  border-radius: 1.5rem;
  padding: clamp(2.5rem, 6vw, 3.5rem) 2rem;
  background: linear-gradient(180deg, rgba(234, 88, 12, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  box-shadow: var(--shadow-soft);
}

.cta-inner h2 {
  margin-bottom: 0.75rem;
}

.cta-lead {
  margin: 0 auto 1.75rem;
  max-width: 28rem;
  color: var(--text-soft);
  font-size: 1rem;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0 2.5rem;
  color: var(--muted);
  font-size: 0.875rem;
  letter-spacing: 0.02em;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 520px) {
  .brand-logo {
    width: 44px;
    height: 44px;
  }

  .brand-text {
    font-size: 1.1rem;
  }
}

@media (max-width: 900px) {
  .nav a:not(.btn-nav) {
    display: none;
  }

  .hero-grid,
  .two-col,
  .catering-grid {
    grid-template-columns: 1fr;
  }

  .catering-aside {
    position: static;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .menu-specials {
    grid-template-columns: 1fr;
  }

  .menu-item-list--cols,
  .menu-item-list--cols-4 {
    grid-template-columns: 1fr;
  }

  .info-list > div {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn,
  .btn-nav,
  .card,
  .menu-block {
    transition: none;
  }

  .btn.primary:hover,
  .btn-nav:hover,
  .card:hover {
    transform: none;
  }

  .menu-block:hover {
    box-shadow: none;
  }

  .delivery-partner {
    transition: none;
  }

  .delivery-partner:hover {
    transform: none;
  }

  .whatsapp-cta {
    transition: none;
  }

  .whatsapp-cta:hover {
    transform: none;
    filter: none;
  }

  @media (max-width: 420px) {
    .whatsapp-cta,
    .whatsapp-cta:hover {
      transform: translateX(-50%);
    }
  }
}
