/* ============================================================
   Masutsa Catering — The Ember Table Design System
   ============================================================ */

:root {
  /* --- Core palette (verified tokens) --- */
  --ember: #F37D2F;
  --ember-deep: #D96A22;
  --gold-tan: #BC914C;
  --cream: #FFF0E1;
  --charcoal-green: #131D1C;
  --deep-charcoal: #0F1A1A;
  --near-black-green: #0B1514;
  --white: #FFFFFF;

  /* Masutsa brand exception (logo gradient only) */
  --gold-sweep-start: #F1B645;
  --gold-sweep-mid: #C88A29;
  --gold-sweep-end: #794B0D;
  --ink-black: #151514;

  /* Semantic */
  --text-body: #2A2620;
  --text-muted: #6B6459;
  --text-on-dark: var(--cream);
  --text-on-dark-muted: #B9B0A2;
  --border-light: #E7DCC9;
  --border-dark: rgba(255, 240, 225, 0.12);

  /* Type */
  --font-display: "Gilda Display", "Iowan Old Style", Georgia, serif;
  --font-body: "Jost", "Helvetica Neue", Arial, sans-serif;

  /* Layout */
  --max-width: 1240px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-pill: 999px;
  --shadow-soft: 0 20px 60px -20px rgba(11, 21, 20, 0.25);
  --shadow-card: 0 12px 32px -12px rgba(11, 21, 20, 0.18);
}

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

html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }

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

section { position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ember);
}
.eyebrow::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--ember);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h2 { font-size: clamp(30px, 4vw, 44px); }
h3 { font-size: 22px; }

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}
.section-head p {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 16px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.gold-grad {
  background: linear-gradient(180deg, var(--gold-sweep-start) 0%, var(--gold-sweep-mid) 55%, var(--gold-sweep-end) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; stroke-width: 2; flex-shrink: 0; }

.btn-primary {
  background: var(--ember);
  color: var(--white);
}
.btn-primary:hover { background: var(--ember-deep); transform: translateY(-1px); box-shadow: var(--shadow-card); }

.btn-secondary {
  background: var(--gold-tan);
  color: var(--ink-black);
}
.btn-secondary:hover { background: #a87f3f; transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  border: 1px solid var(--border-dark);
  color: var(--text-on-dark);
}
.btn-ghost:hover { background: rgba(255, 240, 225, 0.08); transform: translateY(-1px); }

.btn-ghost-light {
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--text-body);
}
.btn-ghost-light:hover { background: rgba(19, 29, 28, 0.04); transform: translateY(-1px); }

.btn-block { width: 100%; justify-content: center; }

/* ---------- Announcement bar ---------- */
.announcement {
  background: var(--ink-black);
  color: var(--cream);
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 9px 16px;
}
.announcement strong { color: var(--gold-tan); font-weight: 600; }

/* ---------- Header ---------- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand img { height: 48px; width: auto; }
.brand-name {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--ink-black);
  line-height: 1.1;
}
.brand-name span {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold-tan);
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
  transition: color 0.2s ease;
  position: relative;
}
.nav-links a:hover { color: var(--ember); }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-black);
}
.nav-phone svg { width: 16px; height: 16px; stroke: var(--ember); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--ink-black); transition: 0.25s ease; }

/* ---------- Hero (full-bleed slider) ---------- */
.hero {
  position: relative;
  background: var(--charcoal-green);
  color: var(--text-on-dark);
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slider { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 32%;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.6s cubic-bezier(0.4, 0, 0.2, 1), transform 7s ease-out;
}
.hero-slide.active { opacity: 1; transform: scale(1); z-index: 1; }

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(100deg, rgba(11,21,20,0.92) 0%, rgba(11,21,20,0.78) 34%, rgba(11,21,20,0.4) 62%, rgba(11,21,20,0.18) 100%),
    linear-gradient(0deg, rgba(11,21,20,0.75) 0%, transparent 32%);
}

.hero-inner {
  position: relative;
  z-index: 3;
  padding-top: 60px;
  padding-bottom: 90px;
}
.hero-copy { max-width: 600px; }
.hero-copy .eyebrow { color: var(--gold-tan); }
.hero-copy .eyebrow::before { background: var(--gold-tan); }
.hero-copy h1 {
  margin-top: 18px;
  font-size: clamp(38px, 5.4vw, 64px);
  color: var(--white);
}
.hero-copy h1 .accent {
  background: linear-gradient(180deg, var(--gold-sweep-start) 0%, var(--gold-sweep-mid) 55%, var(--gold-sweep-end) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-copy p.lede {
  margin-top: 22px;
  font-size: 17px;
  max-width: 480px;
  color: var(--text-on-dark-muted);
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
.hero-actions {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.reveal-word {
  display: inline-block;
  opacity: 0.001;
  filter: blur(10px);
  transform: translateY(10px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-word.is-visible { opacity: 1; filter: blur(0); transform: translateY(0); }

.photo-slot {
  border-radius: var(--radius-md);
  background:
    linear-gradient(155deg, rgba(243,125,47,0.22), transparent 45%),
    linear-gradient(340deg, rgba(188,145,76,0.28), transparent 50%),
    linear-gradient(200deg, #1c2926 0%, #0d1615 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-dark);
}
.photo-slot::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Ccircle cx='100' cy='100' r='1.2' fill='%23F1B645' fill-opacity='0.35'/%3E%3C/svg%3E");
  opacity: 0.5;
}
.photo-slot .slot-mark { width: 34%; opacity: 0.9; position: relative; z-index: 1; }
.photo-slot .slot-label {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  z-index: 2;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  background: rgba(11, 21, 20, 0.55);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
}

.hero-badge {
  position: absolute;
  left: max(24px, calc((100vw - 1240px) / 2 + 24px));
  bottom: 96px;
  z-index: 4;
  background: var(--white);
  color: var(--ink-black);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-soft);
}
.hero-badge svg { width: 30px; height: 30px; stroke: var(--ember); stroke-width: 1.6; flex-shrink: 0; }
.hero-badge .badge-title { font-family: var(--font-display); font-size: 15px; line-height: 1.2; }
.hero-badge .badge-sub { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 4;
  transform: translateX(-50%);
  display: flex;
  gap: 9px;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255, 240, 225, 0.4);
  transition: all 0.25s ease;
}
.hero-dot.active { background: var(--ember); width: 26px; border-radius: var(--radius-pill); }
.hero-dot:hover { background: rgba(255, 240, 225, 0.7); }

/* ---------- Service strip (stats-style, honest categories) ---------- */
.service-strip {
  background: var(--white);
  padding: 64px 0;
  border-bottom: 1px solid var(--border-light);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.service-tile {
  background: var(--white);
  padding: 30px 24px;
  text-align: center;
  transition: background 0.2s ease;
}
.service-tile:hover { background: #FFFAF3; }
.service-tile svg { width: 30px; height: 30px; stroke: var(--ember); stroke-width: 1.6; margin: 0 auto 14px; }
.service-tile h4 { font-size: 16px; margin-bottom: 6px; }
.service-tile p { font-size: 13px; color: var(--text-muted); }

/* ---------- About ---------- */
.about {
  padding: 110px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}
.about-copy p { color: var(--text-muted); font-size: 16px; margin-bottom: 16px; }
.about-copy h2 { margin: 14px 0 20px; }

.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 90px;
}
.feature-card {
  padding: 34px 28px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: transparent; }
.feature-card .icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(155deg, #FFF0E1, #FBE3C6);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.feature-card .icon-wrap svg { width: 24px; height: 24px; stroke: var(--ember-deep); stroke-width: 1.7; }
.feature-card h3 { margin-bottom: 10px; }
.feature-card p { color: var(--text-muted); font-size: 14.5px; }

/* ---------- Why choose us ---------- */
.why {
  background: #FFFAF3;
  padding: 110px 0;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.why-checklist { margin-top: 26px; display: flex; flex-direction: column; gap: 16px; }
.why-checklist li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; }
.why-checklist svg { width: 20px; height: 20px; stroke: var(--ember); flex-shrink: 0; margin-top: 1px; stroke-width: 2; }
.why-checklist strong { display: block; margin-bottom: 2px; }
.why-checklist span.desc { color: var(--text-muted); font-size: 13.5px; }

.why-visual { position: relative; }
.why-visual .photo-slot { aspect-ratio: 3 / 4; }
.why-badge {
  position: absolute;
  left: -24px;
  bottom: -24px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: baseline;
  gap: 10px;
  z-index: 3;
}
.why-badge .badge-icon {
  width: 40px; height: 40px;
  background: var(--ember);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-right: 4px;
}
.why-badge .badge-icon svg { width: 20px; height: 20px; stroke: white; stroke-width: 1.8; }
.why-badge .badge-text { font-size: 12px; line-height: 1.3; }
.why-badge .badge-text strong { display: block; font-family: var(--font-display); font-size: 15px; color: var(--ink-black); }
.why-badge .badge-text span { color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.04em; font-size: 10.5px; }

/* ---------- Menu (dark) ---------- */
.menu-section {
  background: var(--charcoal-green);
  color: var(--text-on-dark);
  padding: 110px 0;
}
.menu-section .eyebrow { color: var(--gold-tan); }
.menu-section .eyebrow::before { background: var(--gold-tan); }
.menu-section .section-head h2 { color: var(--white); }
.menu-section .section-head p { color: var(--text-on-dark-muted); }

.menu-note {
  font-size: 12.5px;
  color: var(--text-on-dark-muted);
  border: 1px dashed var(--border-dark);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin-bottom: 40px;
  max-width: 640px;
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.menu-tab {
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-dark);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  transition: all 0.2s ease;
}
.menu-tab.active { background: var(--ember); color: var(--white); border-color: var(--ember); }
.menu-tab:not(.active):hover { border-color: var(--gold-tan); color: var(--cream); }

.menu-panel { display: none; }
.menu-panel.active { display: block; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

.menu-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 60px; }
.menu-item {
  padding: 20px 0;
  border-bottom: 1px dotted var(--border-dark);
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.menu-item-name { font-family: var(--font-display); font-size: 18px; color: var(--white); }
.menu-item-desc { font-size: 13px; color: var(--text-on-dark-muted); margin-top: 4px; }
.menu-item-price { font-family: var(--font-display); font-size: 18px; color: var(--ember); white-space: nowrap; }

.menu-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 60px;
}
.menu-stat-tile { background: var(--deep-charcoal); padding: 26px 20px; text-align: center; }
.menu-stat-tile .num { font-family: var(--font-display); font-size: 30px; color: var(--ember); }
.menu-stat-tile .label { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-on-dark-muted); margin-top: 6px; }

/* ---------- Testimonials ---------- */
.testimonials {
  background: var(--white);
  padding: 110px 0;
}
.testi-card {
  background: var(--near-black-green);
  color: var(--text-on-dark);
  border-radius: var(--radius-md);
  padding: 60px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.testi-card svg.quote-icon { width: 34px; height: 34px; stroke: var(--gold-tan); margin: 0 auto 24px; }
.testi-card p.quote { font-family: var(--font-display); font-size: 22px; line-height: 1.5; color: var(--cream); }
.testi-stars { display: flex; justify-content: center; gap: 4px; margin: 26px 0 18px; }
.testi-stars svg { width: 16px; height: 16px; fill: var(--gold-tan); stroke: var(--gold-tan); }
.testi-person { display: flex; align-items: center; justify-content: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--gold-tan);
  background: linear-gradient(155deg, #2a221a, #1a1512);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 15px; color: var(--gold-tan);
}
.testi-name { font-size: 14px; font-weight: 600; }
.testi-role { font-size: 12px; color: var(--text-on-dark-muted); }

.testi-dots { display: flex; justify-content: center; gap: 8px; margin-top: 34px; }
.testi-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border-light); transition: 0.2s ease; }
.testi-dot.active { background: var(--ember); width: 22px; border-radius: var(--radius-pill); }

/* ---------- Booking / order section ---------- */
.booking {
  background: #FFFAF3;
  padding: 110px 0;
}
.booking-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
}
.booking-form {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 44px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.form-row .form-group { margin-bottom: 0; }
.form-group label { font-size: 12.5px; font-weight: 600; letter-spacing: 0.03em; color: var(--ink-black); }
.form-group input, .form-group select, .form-group textarea {
  padding: 13px 16px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  background: var(--white);
  transition: border-color 0.2s ease;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--ember);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-actions { display: flex; gap: 12px; margin-top: 8px; flex-wrap: wrap; }
.form-actions .btn { flex: 1; min-width: 200px; }
.form-hint { font-size: 12px; color: var(--text-muted); margin-top: 14px; text-align: center; }

.hours-card {
  background: var(--ink-black);
  color: var(--text-on-dark);
  border-radius: var(--radius-md);
  padding: 40px;
  height: fit-content;
}
.hours-card h3 { color: var(--white); margin-bottom: 4px; }
.hours-card > p { color: var(--text-on-dark-muted); font-size: 14px; margin-bottom: 26px; }
.hours-list { display: flex; flex-direction: column; gap: 0; }
.hours-list li {
  display: flex; justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid var(--border-dark);
  font-size: 14px;
}
.hours-list li span:first-child { color: var(--text-on-dark-muted); }
.hours-list li span:last-child { font-weight: 600; }

.contact-mini { margin-top: 26px; display: flex; flex-direction: column; gap: 14px; }
.contact-mini a { display: flex; align-items: center; gap: 12px; font-size: 14px; }
.contact-mini svg { width: 18px; height: 18px; stroke: var(--ember); flex-shrink: 0; }

/* ---------- Gallery ---------- */
.gallery { padding: 110px 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-grid > .g-wide { grid-column: span 2; }
.gallery-tile {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: linear-gradient(155deg, #1c2926 0%, #0d1615 100%);
  cursor: pointer;
}
.gallery-grid > .g-wide .gallery-tile { aspect-ratio: 2 / 1; }
.gallery-tile .g-inner {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.gallery-tile .g-mark { width: 26%; opacity: 0.85; }
.gallery-tile .g-caption {
  position: absolute;
  bottom: 14px; left: 14px; right: 14px;
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--text-on-dark-muted);
  z-index: 1;
}
.gallery-tile .g-overlay {
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 1%;
  background: rgba(15, 26, 26, 0.9);
  transition: height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-tile .g-icon {
  position: absolute;
  left: 50%; bottom: 18px;
  transform: translate(-50%, 0);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ember);
  display: flex; align-items: center; justify-content: center;
  transition: bottom 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  opacity: 0;
  z-index: 2;
}
.gallery-tile .g-icon svg { width: 18px; height: 18px; stroke: white; stroke-width: 1.8; }
.gallery-tile:hover .g-overlay { height: 100%; }
.gallery-tile:hover .g-icon { bottom: 50%; transform: translate(-50%, 50%); opacity: 1; }

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--near-black-green);
  color: var(--text-on-dark);
  position: relative;
}
.footer-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 70px 0 50px;
}
.footer-card {
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 26px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.footer-card:hover { border-color: var(--gold-tan); transform: translateY(-2px); }
.footer-card svg { width: 22px; height: 22px; stroke: var(--ember); flex-shrink: 0; margin-top: 2px; stroke-width: 1.7; }
.footer-card h4 { font-family: var(--font-body); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 6px; color: var(--gold-tan); }
.footer-card p, .footer-card a { font-size: 14.5px; color: var(--text-on-dark); line-height: 1.5; }
.footer-card .arrow { margin-left: auto; width: 16px; height: 16px; stroke: var(--text-on-dark-muted); flex-shrink: 0; }

.footer-main {
  border-top: 1px solid var(--border-dark);
  padding: 50px 0 34px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand img { height: 70px; margin-bottom: 16px; }
.footer-brand p { color: var(--text-on-dark-muted); font-size: 13.5px; max-width: 260px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--border-dark);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.footer-social a:hover { border-color: var(--ember); background: rgba(243,125,47,0.1); }
.footer-social svg { width: 16px; height: 16px; stroke: var(--text-on-dark); }

.footer-col h5 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold-tan); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14px; color: var(--text-on-dark-muted); transition: color 0.2s ease; }
.footer-col a:hover { color: var(--cream); }

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: var(--text-on-dark-muted);
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Floating action buttons ---------- */
.fab-wa {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 200;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px -8px rgba(0,0,0,0.4);
  transition: transform 0.2s ease;
}
.fab-wa:hover { transform: scale(1.07); }
.fab-wa svg { width: 28px; height: 28px; fill: white; }

.fab-chat {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 200;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--ember);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px -8px rgba(0,0,0,0.4);
  transition: transform 0.2s ease;
}
.fab-chat:hover { transform: scale(1.07); }
.fab-chat svg { width: 26px; height: 26px; stroke: white; stroke-width: 2; }
.fab-chat .fab-dot {
  position: absolute; top: 2px; right: 2px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--gold-tan); border: 2px solid var(--near-black-green);
}

/* ---------- Chat widget ---------- */
.chat-widget {
  position: fixed;
  right: 24px;
  bottom: 96px;
  z-index: 201;
  width: 360px;
  max-width: calc(100vw - 48px);
  height: 480px;
  max-height: calc(100vh - 140px);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.chat-widget.open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.chat-header {
  background: var(--charcoal-green);
  color: var(--white);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.chat-header img { width: 34px; height: 34px; border-radius: 50%; background: white; padding: 3px; }
.chat-header .ch-name { font-family: var(--font-display); font-size: 15px; }
.chat-header .ch-status { font-size: 11px; color: var(--gold-tan); display: flex; align-items: center; gap: 5px; }
.chat-header .ch-status::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #4ADE80; }
.chat-close { margin-left: auto; width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.chat-close:hover { background: rgba(255,255,255,0.1); }
.chat-close svg { width: 16px; height: 16px; stroke: white; }

.chat-body {
  flex: 1;
  padding: 18px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #FFFAF3;
}
.chat-msg { max-width: 82%; padding: 11px 14px; border-radius: 14px; font-size: 13.5px; line-height: 1.45; }
.chat-msg.bot { background: var(--white); border: 1px solid var(--border-light); border-bottom-left-radius: 4px; align-self: flex-start; }
.chat-msg.user { background: var(--ember); color: white; border-bottom-right-radius: 4px; align-self: flex-end; }
.chat-quick { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.chat-quick button {
  font-size: 12px; padding: 8px 12px; border-radius: var(--radius-pill);
  border: 1px solid var(--ember); color: var(--ember-deep); background: white;
  transition: 0.2s ease;
}
.chat-quick button:hover { background: var(--ember); color: white; }

.chat-input-row {
  display: flex; gap: 8px; padding: 14px; border-top: 1px solid var(--border-light); background: white;
}
.chat-input-row input {
  flex: 1; padding: 11px 14px; border-radius: var(--radius-pill);
  border: 1px solid var(--border-light); font-size: 13.5px;
}
.chat-input-row input:focus { outline: none; border-color: var(--ember); }
.chat-send {
  width: 40px; height: 40px; border-radius: 50%; background: var(--ember);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.chat-send svg { width: 17px; height: 17px; stroke: white; stroke-width: 2; }

/* ---------- PWA install banner ---------- */
.install-banner {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translate(-50%, 140%);
  z-index: 250;
  background: var(--ink-black);
  color: var(--cream);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-soft);
  max-width: calc(100vw - 48px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.install-banner.show { transform: translate(-50%, 0); }
.install-banner img { width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0; }
.install-banner .ib-text { font-size: 12.5px; line-height: 1.4; }
.install-banner .ib-text strong { display: block; font-size: 13.5px; }
.install-banner .ib-actions { display: flex; gap: 8px; margin-left: 8px; flex-shrink: 0; }
.install-banner button.ib-install {
  background: var(--ember); color: white; padding: 9px 14px; border-radius: var(--radius-pill); font-size: 12px; font-weight: 600;
}
.install-banner button.ib-dismiss { color: var(--text-on-dark-muted); font-size: 18px; padding: 4px 8px; }

/* ---------- Scroll reveal ---------- */
.reveal-up { opacity: 0; transform: translateY(24px); transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.reveal-up.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Mobile ---------- */
@media (max-width: 980px) {
  .about-grid, .why-grid, .booking-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-cards { grid-template-columns: 1fr; }
  .menu-list { grid-template-columns: 1fr; }
  .footer-cards { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid > .g-wide { grid-column: span 2; }
}

@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-actions { display: none; }
  .brand-name { font-size: 16px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .why-badge { position: static; margin-top: -30px; margin-left: 16px; width: fit-content; }
  .hero { min-height: 100svh; }
  .hero-badge { left: 16px; right: 16px; bottom: 76px; padding: 13px 16px; }
  .hero-badge .badge-title { font-size: 13px; }
  .chat-widget { right: 12px; left: 12px; width: auto; bottom: 88px; }
  .fab-chat, .fab-wa { width: 52px; height: 52px; }
  .testi-card { padding: 36px 26px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
