/* ============================================
   Limra Cafe — Global Stylesheet
   Warm & Cozy theme
   ============================================ */

:root {
  --ink: #2a1614;
  --ink-soft: #3b2320;
  --red: #d3121c;
  --red-dark: #a80d15;
  --red-deep: #9e0b13;
  --red-mid: #d3121c;
  --cream: #ffffff;
  --cream-soft: #f0dcda;
  --paper: #fdf3f2;
  --text: #2a1614;
  --text-soft: #6a5853;
  --shadow: 0 10px 30px rgba(42, 22, 20, 0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --max-width: 1180px;
  --font-head: "Playfair Display", Georgia, serif;
  --font-body: "Nunito Sans", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.2;
  font-weight: 700;
}

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

section {
  padding: 90px 0;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--red);
  margin-bottom: 10px;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 14px;
}

.section-head p {
  color: var(--text-soft);
  font-size: 1.05rem;
}

.section-head.left {
  margin: 0 0 40px;
  text-align: left;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 20px rgba(211, 18, 28, 0.35);
}

.btn-primary:hover {
  background: var(--red-dark);
}

.btn-outline {
  background: transparent;
  border-color: var(--cream-soft);
  color: var(--ink);
}

.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
}

.btn-light {
  background: var(--paper);
  color: var(--ink);
}

.btn-light:hover {
  background: #fff;
}

/* ---------- Placeholder tiles (used until real photos are added) ---------- */
.ph-tile {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  background: linear-gradient(135deg, var(--red-mid), var(--red-deep));
  color: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 100%;
}

.ph-tile.alt1 { background: linear-gradient(135deg, #ff5a3c, var(--red)); }
.ph-tile.alt2 { background: linear-gradient(135deg, #5a3a38, #2a1614); }
.ph-tile.alt3 { background: linear-gradient(135deg, var(--red-deep), #3a0a0c); }

.ph-tile svg {
  width: 42px;
  height: 42px;
  opacity: 0.9;
}

.ph-tile span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.85;
}

.ph-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 0.62rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 20px;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(42, 22, 20, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
}

.brand .mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links a {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--red);
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--red-deep);
  border-radius: 3px;
  transition: 0.3s ease;
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  padding: 120px 0 100px;
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.08), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(211, 18, 28, 0.15), transparent 45%),
    var(--cream);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--paper);
  border: 1px solid var(--cream-soft);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 3.7rem);
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: italic;
  color: var(--red);
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-soft);
  max-width: 480px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
}

.hero-stats div strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--ink);
}

.hero-stats div span {
  font-size: 0.82rem;
  color: var(--text-soft);
}

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-visual .float-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
}

.float-card .icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.float-card strong {
  display: block;
  font-size: 0.95rem;
  color: var(--ink);
}

.float-card span {
  font-size: 0.8rem;
  color: var(--text-soft);
}

/* ============================================
   Page Header (interior pages)
   ============================================ */
.page-header {
  padding: 70px 0 60px;
  text-align: center;
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.08), transparent 45%),
    var(--red-deep);
  color: var(--cream);
}

.page-header .section-tag {
  color: #fff;
}

.page-header h1 {
  color: #fff;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  margin-bottom: 12px;
}

.page-header p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
  margin: 0 auto;
}

.breadcrumb {
  margin-top: 18px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a {
  color: #fff;
  font-weight: 700;
}

/* ============================================
   Highlights / Feature cards
   ============================================ */
.highlights {
  background: var(--paper);
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.highlight-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 34px 28px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.highlight-card .icon-wrap {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.highlight-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.highlight-card p {
  color: var(--text-soft);
  font-size: 0.95rem;
}

/* ============================================
   Menu Preview / Menu Page
   ============================================ */
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 46px;
}

.menu-tab {
  padding: 10px 22px;
  border-radius: 50px;
  border: 2px solid var(--cream-soft);
  background: var(--paper);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  color: var(--ink-soft);
  transition: 0.25s ease;
}

.menu-tab:hover {
  border-color: var(--red);
}

.menu-tab.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.menu-category {
  display: none;
}

.menu-category.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.menu-category h3 {
  font-size: 1.4rem;
  margin-bottom: 22px;
  padding-bottom: 10px;
  border-bottom: 2px dashed var(--cream-soft);
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 40px;
  margin-bottom: 50px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(42, 22, 20, 0.08);
}

.menu-item-name {
  font-weight: 700;
  color: var(--ink);
  font-size: 1.02rem;
}

.menu-item-desc {
  color: var(--text-soft);
  font-size: 0.85rem;
  margin-top: 3px;
}

.menu-item-price {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--red);
  white-space: nowrap;
}

.menu-tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 2px 8px;
  border-radius: 6px;
  margin-left: 8px;
  position: relative;
  top: -1px;
}

.menu-note {
  text-align: center;
  color: var(--text-soft);
  font-size: 0.85rem;
  font-style: italic;
  margin-top: -10px;
}

/* ============================================
   Featured Menu (home)
   ============================================ */
.feature-menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-menu-card {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
}

.feature-menu-card:hover {
  transform: translateY(-6px);
}

.feature-menu-card .ph-tile {
  aspect-ratio: 1 / 1;
  border-radius: 0;
}

.feature-menu-card .fmc-body {
  padding: 18px 20px 22px;
}

.feature-menu-card h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.feature-menu-card p {
  color: var(--text-soft);
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.feature-menu-card .price {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--red);
}

/* ============================================
   About preview / split sections
   ============================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split-visual {
  aspect-ratio: 4 / 3.2;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.split-visual.stacked {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  aspect-ratio: auto;
  height: 460px;
  box-shadow: none;
}

.split-visual.stacked .ph-tile:first-child {
  grid-row: 1 / 3;
}

.split-visual.stacked .ph-tile {
  border-radius: var(--radius);
}

.split-copy .section-tag {
  margin-bottom: 12px;
}

.split-copy h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  margin-bottom: 18px;
}

.split-copy p {
  color: var(--text-soft);
  margin-bottom: 16px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--text-soft);
}

.check-list .tick {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(211, 18, 28, 0.12);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.8rem;
  font-weight: 900;
}

/* ============================================
   Values / cards grid (about page)
   ============================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.value-card {
  padding: 32px 26px;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--cream-soft);
}

.value-card .num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 8px;
}

.value-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.value-card p {
  color: var(--text-soft);
  font-size: 0.92rem;
}

/* ============================================
   Team
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.team-card {
  text-align: center;
}

.team-card .ph-tile {
  aspect-ratio: 1/1;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  margin: 0 auto 18px;
}

.team-card h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.team-card span {
  font-size: 0.85rem;
  color: var(--red);
  font-weight: 700;
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials {
  background: var(--red-deep);
  color: var(--cream);
}

.testimonials .section-head h2 {
  color: #fff;
}

.testimonials .section-head p {
  color: rgba(255, 255, 255, 0.65);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.testi-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 30px 26px;
}

.testi-stars {
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testi-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.testi-person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-person .ph-tile {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.testi-person .ph-tile svg {
  width: 20px;
  height: 20px;
}

.testi-person strong {
  display: block;
  font-size: 0.9rem;
  color: #fff;
}

.testi-person span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ============================================
   Gallery
   ============================================ */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 18px;
}

.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item .ph-tile {
  border-radius: var(--radius-sm);
}

.gallery-item.big {
  grid-column: span 2;
  grid-row: span 2;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(30, 6, 8, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 40px;
}

.lightbox.open {
  display: flex;
}

.lightbox-inner {
  width: min(600px, 90vw);
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.lightbox-close {
  position: absolute;
  top: -46px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
}

/* ============================================
   CTA banner
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  border-radius: 28px;
  padding: 60px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  color: #fff;
}

.cta-banner h2 {
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-bottom: 10px;
  max-width: 480px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 460px;
}

.cta-banner .btn-light:hover {
  color: var(--red);
}

/* ============================================
   Franchise page
   ============================================ */
.franchise-hero {
  background:
    radial-gradient(circle at 80% 0%, rgba(255, 255, 255, 0.08), transparent 50%),
    var(--red-deep);
  color: var(--cream);
  padding: 100px 0 90px;
  text-align: center;
}

.franchise-hero .section-tag {
  color: #fff;
}

.franchise-hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  max-width: 760px;
  margin: 0 auto 18px;
}

.franchise-hero p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 620px;
  margin: 0 auto 34px;
}

.stat-row {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.stat-row div {
  text-align: center;
}

.stat-row strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2.2rem;
  color: #fff;
}

.stat-row span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-step {
  position: relative;
  padding: 30px 22px;
  background: var(--paper);
  border-radius: var(--radius);
  border: 1px solid var(--cream-soft);
}

.process-step .step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  margin-bottom: 16px;
}

.process-step h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.88rem;
  color: var(--text-soft);
}

/* ============================================
   Forms
   ============================================ */
.form-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
}

.field input,
.field select,
.field textarea {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--cream-soft);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red);
}

.field textarea {
  resize: vertical;
  min-height: 110px;
}

.form-msg {
  display: none;
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: rgba(107, 168, 86, 0.15);
  color: #3d6b2c;
  font-weight: 700;
  font-size: 0.9rem;
}

.form-msg.show {
  display: block;
}

/* ============================================
   Contact info cards
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}

.info-card {
  display: flex;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(42, 22, 20, 0.08);
}

.info-card:last-child {
  border-bottom: none;
}

.info-card .icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(211, 18, 28, 0.1);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-card h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.info-card p {
  color: var(--text-soft);
  font-size: 0.9rem;
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 34px;
}

.map-embed iframe {
  width: 100%;
  height: 340px;
  border: 0;
  display: block;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.hours-table td {
  padding: 10px 0;
  font-size: 0.92rem;
  border-bottom: 1px dashed var(--cream-soft);
  color: var(--text-soft);
}

.hours-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--ink);
}

.hours-table tr.today td {
  color: var(--red);
  font-weight: 700;
}

/* ============================================
   Placeholder notice banner
   ============================================ */
.demo-notice {
  background: var(--red-deep);
  color: var(--ink);
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 9px 16px;
  letter-spacing: 0.3px;
}

.demo-notice a {
  text-decoration: underline;
}

/* ============================================
   Footer
   ============================================ */
footer {
  background: var(--red-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 70px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand .brand {
  color: #fff;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.9rem;
  max-width: 280px;
  margin-bottom: 20px;
}

.social-row {
  display: flex;
  gap: 10px;
}

.social-row a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease;
}

.social-row a:hover {
  background: var(--red);
}

.footer-col h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col ul li {
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.footer-col ul li a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .hero-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .split-visual.stacked {
    height: 340px;
  }

  .highlight-grid,
  .feature-menu-grid,
  .values-grid,
  .team-grid,
  .testi-grid,
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  .nav-links,
  .nav-cta .btn-outline {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .navbar.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 20px 24px;
    gap: 18px;
    box-shadow: var(--shadow);
  }

  .menu-list,
  .gallery-grid,
  .feature-menu-grid,
  .highlight-grid,
  .values-grid,
  .team-grid,
  .testi-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .gallery-item.big {
    grid-column: span 1;
    grid-row: span 1;
  }

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

  .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 44px 28px;
  }

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

  .hero {
    padding: 90px 0 70px;
  }

  .stat-row {
    gap: 28px;
  }
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Real photos & logo (added when placeholders were replaced) ---------- */
.brand-logo {
  width: 44px;
  height: 44px;
  display: block;
}

.ph-tile img,
.split-visual img,
.hero-visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual {
  aspect-ratio: 4 / 3;
}

.hero-visual > img {
  object-position: 15% 50%;
}

.split-visual.founder img {
  object-position: 50% 22%;
}

.split-visual.logo-tile {
  background: var(--cream-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.split-visual.logo-tile img {
  position: static;
  width: min(300px, 70%);
  height: auto;
  object-fit: contain;
}

.photo-caption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  right: 14px;
  background: rgba(42, 22, 20, 0.72);
  color: #fff;
  font-size: 0.8rem;
  padding: 8px 12px;
  border-radius: 8px;
}

/* ---------- Red & white theme ---------- */
.demo-notice {
  color: #fff;
}

.navbar {
  border-bottom: 3px solid var(--red);
}

.hero {
  background:
    radial-gradient(circle at 88% 12%, rgba(211, 18, 28, 0.10), transparent 45%),
    radial-gradient(circle at 8% 92%, rgba(211, 18, 28, 0.06), transparent 45%),
    var(--cream);
}

.btn-outline {
  border-color: var(--red);
  color: var(--red);
}

.btn-outline:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.ph-tile.alt2,
.ph-tile.alt2 span,
.ph-tile.alt2 svg {
  color: rgba(255, 255, 255, 0.85);
}

.value-card .num {
  color: var(--red);
}

.menu-tag {
  background: var(--red);
  color: #fff;
}

.social-row a:hover {
  background: #fff;
  color: var(--red);
}

.footer-col ul li a:hover {
  text-decoration: underline;
}

/* On red backgrounds, buttons flip to white */
.franchise-hero .btn-primary,
.page-header .btn-primary,
footer .btn-primary {
  background: #fff;
  color: var(--red);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.franchise-hero .btn-primary:hover,
.page-header .btn-primary:hover,
footer .btn-primary:hover {
  background: var(--paper);
}

.franchise-hero .btn-outline,
.page-header .btn-outline {
  border-color: rgba(255, 255, 255, 0.65);
  color: #fff;
}

.franchise-hero .btn-outline:hover,
.page-header .btn-outline:hover {
  background: #fff;
  border-color: #fff;
  color: var(--red);
}

/* Contact page while the reservation form is hidden */
.contact-grid.no-form {
  grid-template-columns: 1fr;
  max-width: 760px;
}

/* Call Now button in the nav */
.nav-call {
  padding: 11px 22px;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .nav-call {
    padding: 9px 14px;
    font-size: 0.82rem;
  }

  .nav-cta {
    gap: 8px;
  }
}

@media (max-width: 420px) {
  .brand {
    font-size: 1.25rem;
    gap: 8px;
  }
}

/* ---------- Tagline in Mistral ---------- */
@font-face {
  font-family: "Mistral";
  src: local("Mistral"), url("../assets/fonts/Mistral.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.tagline {
  font-family: "Mistral", "Playfair Display", cursive;
  font-weight: 400;
  font-style: normal;
}

h1.tagline {
  font-size: clamp(3.4rem, 7vw, 5.4rem);
  line-height: 1.05;
  letter-spacing: 0.5px;
}

h1.tagline em {
  font-style: normal;
  font-weight: 400;
}

span.tagline {
  font-size: 1.45em;
  line-height: 1;
}

.page-header span.tagline {
  color: #fff;
}

.footer-brand span.tagline {
  color: #fff;
  font-size: 1.6em;
}

/* Tagline stays on a single line; size tracks the column width */
h1.tagline {
  white-space: nowrap;
  font-size: min(9vw, 4.6rem);
}

h1.tagline em {
  display: inline;
}

@media (min-width: 1025px) {
  h1.tagline {
    font-size: min(5.3vw, 4rem);
  }
}

.page-header span.tagline {
  font-size: 1.8em;
}

/* ---------- Photo gallery (masonry, uncropped) ---------- */
.gallery-grid.gallery-masonry {
  display: block;
  columns: 3 280px;
  column-gap: 18px;
}

.gallery-masonry .gallery-item {
  break-inside: avoid;
  margin-bottom: 18px;
  display: block;
}

.gallery-masonry .ph-tile {
  display: block;
  min-height: 0;
  background: var(--red-deep);
}

.gallery-masonry .ph-tile img {
  position: static;
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}

.gallery-masonry .gallery-item:hover .ph-tile img {
  transform: scale(1.03);
}

.ph-tile .photo-caption {
  background: linear-gradient(transparent, rgba(30, 6, 8, 0.85));
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px 14px 12px;
  border-radius: 0;
}

/* Lightbox: show the whole photo, not a crop */
.lightbox-inner {
  width: min(960px, 92vw);
  aspect-ratio: auto;
  height: min(78vh, 680px);
  background: #000;
}

.lightbox-inner .ph-tile {
  width: 100%;
  height: 100%;
  border-radius: 0;
  background: #000;
}

.lightbox-inner .ph-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ---------- Menu item cards (photo slot + name) ---------- */
.menu-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 22px;
  margin-bottom: 56px;
}

.menu-card {
  background: var(--paper);
  border: 1px solid var(--cream-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.menu-card .ph-tile {
  aspect-ratio: 4 / 3;
  min-height: 0;
  border-radius: 0;
}

.menu-card > img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.menu-card-name {
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
  padding: 14px 16px 16px;
}

/* ---------- Outlet list (contact page) + footer labels ---------- */
.outlet-list {
  list-style: none;
  margin-top: 4px;
}

.outlet-list li {
  padding: 12px 0;
  border-bottom: 1px dashed var(--cream-soft);
}

.outlet-list li:first-child {
  padding-top: 4px;
}

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

.outlet-list strong {
  display: block;
  color: var(--ink);
  font-size: 0.98rem;
}

.outlet-list span {
  display: block;
  color: var(--text-soft);
  font-size: 0.9rem;
  margin: 2px 0 4px;
}

.outlet-list a {
  color: var(--red);
  font-weight: 700;
  font-size: 0.85rem;
}

.outlet-list a:hover {
  text-decoration: underline;
}

.footer-col ul li strong {
  color: #fff;
}
