/* ==========================================================================
   Seu Manoel — Restaurante em Campina Grande - PB
   Mobile-first · Conversão · Premium
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --creme: #f6efe1;
  --creme-soft: #fbf6ec;
  --cream-deep: #efe3cc;
  --ink: #24130a;
  --brown: #3a2417;
  --brown-mid: #5c3d2a;
  --brown-soft: #8a6a4e;
  --red: #a8352a;
  --red-deep: #8e2a20;
  --gold: #c99b4b;
  --gold-bright: #e2b96a;
  --green: #23412f;
  --green-deep: #18301f;
  --white: #ffffff;
  --line: rgba(36, 19, 10, 0.12);
  --line-light: rgba(255, 255, 255, 0.16);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 10px rgba(36, 19, 10, 0.08);
  --shadow: 0 12px 32px rgba(36, 19, 10, 0.14);
  --shadow-lg: 0 24px 56px rgba(24, 12, 4, 0.22);

  --container: 1180px;
  --gutter: clamp(1.1rem, 4vw, 2rem);

  --header-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset / Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--creme);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
}

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 1000;
  background: var(--red);
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
}
.skip-link:focus {
  left: 8px;
}

/* ---------- Eyebrow / section head ---------- */
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.8rem;
}

.section-head.center {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: clamp(2rem, 5vw, 3.25rem);
}

.section-title {
  font-size: clamp(1.9rem, 5vw, 3rem);
  margin-bottom: 0.9rem;
}

.section-sub {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: var(--brown-mid);
}

.section {
  padding-block: clamp(3.5rem, 9vw, 6.5rem);
}

.section-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease),
    background-color 0.22s var(--ease), color 0.22s var(--ease),
    border-color 0.22s var(--ease);
  cursor: pointer;
  text-align: center;
}

.btn:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 3px;
}

.btn-lg {
  padding: 1rem 1.9rem;
  font-size: 1.02rem;
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(168, 53, 42, 0.32);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(168, 53, 42, 0.42);
}

.btn-secondary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 10px 24px rgba(35, 65, 47, 0.28);
}
.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(35, 65, 47, 0.38);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: var(--line-light);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--brown);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--creme);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(201, 155, 75, 0.35);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(201, 155, 75, 0.5);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.scrolled {
  background: rgba(246, 239, 225, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 14px rgba(168, 53, 42, 0.35);
  flex-shrink: 0;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #fff;
}
.brand-text small {
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.75);
}
.site-header.scrolled .brand-text strong { color: var(--ink); }
.site-header.scrolled .brand-text small { color: var(--brown-mid); }

/* Navigation (desktop) */
.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-list {
  display: flex;
  gap: 1.6rem;
}
.nav-list a {
  position: relative;
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  padding-block: 6px;
  transition: color 0.2s;
}
.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--gold-bright);
  transition: width 0.25s var(--ease);
}
.nav-list a:hover::after,
.nav-list a.active::after {
  width: 100%;
}
.site-header.scrolled .nav-list a { color: var(--brown); }
.nav-list a:hover { color: var(--gold-bright); }
.site-header.scrolled .nav-list a:hover { color: var(--red); }

.btn-header-desktop { display: none; }
.btn-header-mobile { display: inline-flex; margin-top: 1rem; }

/* Hamburger */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.08);
  padding: 10px;
  align-items: center;
  z-index: 300;
}
.site-header.scrolled .nav-toggle { border-color: var(--line); background: transparent; }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.site-header.scrolled .nav-toggle span { background: var(--ink); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  padding: calc(var(--header-h) + 2.5rem) 0 4rem;
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-media img {
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 10, 4, 0.55) 0%,
    rgba(20, 10, 4, 0.62) 40%,
    rgba(20, 10, 4, 0.78) 100%
  );
}
.hero-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 30% 60%,
    rgba(201, 155, 75, 0.16) 0%,
    transparent 60%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero .eyebrow {
  color: var(--gold-bright);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

.hero-title {
  color: #fff;
  font-size: clamp(2.35rem, 6.4vw, 4.4rem);
  margin-bottom: 1.2rem;
  text-wrap: balance;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.45);
}
.hero-title .accent {
  color: var(--gold-bright);
  font-style: italic;
}

.hero-sub {
  font-size: clamp(1.05rem, 2.6vw, 1.3rem);
  color: rgba(255, 255, 255, 0.92);
  max-width: 620px;
  margin-bottom: 1.6rem;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
}

.hero-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  margin-bottom: 1.8rem;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
}
.hero-rating .stars {
  color: var(--gold-bright);
  letter-spacing: 0.05em;
  font-size: 1.05rem;
}
.rating-score {
  font-size: 1.15rem;
  color: #fff;
}
.rating-sep {
  opacity: 0.55;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.hero-seal {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--line-light);
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  backdrop-filter: blur(6px);
}
.hero-seal svg {
  color: var(--gold-bright);
  flex-shrink: 0;
}

/* ---------- Quick bar ---------- */
.quick-bar {
  position: relative;
  z-index: 5;
  background: var(--ink);
  border-bottom: 1px solid var(--line-light);
}
.quick-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding-block: 1.4rem;
}
.quick-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--creme);
}
.quick-item svg {
  color: var(--gold-bright);
  flex-shrink: 0;
}
.quick-item strong {
  display: block;
  font-size: 0.92rem;
  color: #fff;
}
.quick-item span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.66);
}

/* ---------- Why section ---------- */
.why-section {
  background: var(--creme-soft);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}

.why-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.why-card-feature {
  background: var(--ink);
  color: var(--creme);
}
.why-card-feature h3 { color: #fff; }
.why-card-feature p { color: rgba(255, 255, 255, 0.8); }
.why-card-feature .why-tag { color: var(--gold-bright); }

.why-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.why-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.why-card:hover .why-media img {
  transform: scale(1.06);
}

.why-body {
  padding: 1.4rem 1.5rem 1.7rem;
}
.why-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}
.why-body h3 {
  font-size: 1.45rem;
  margin-bottom: 0.45rem;
}
.why-body p {
  font-size: 0.96rem;
  color: var(--brown-mid);
}
.why-card-feature .why-body p { color: rgba(255, 255, 255, 0.8); }

/* ---------- Menu ---------- */
.menu-section {
  background: var(--ink);
}
.menu-section .section-title,
.menu-section .eyebrow { color: #fff; }
.menu-section .section-title .eyebrow { color: var(--gold-bright); }
.menu-section .section-sub { color: rgba(255, 255, 255, 0.72); }
.menu-section .section-head .eyebrow { color: var(--gold-bright); }

.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}

.menu-card {
  background: var(--creme-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.menu-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.menu-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.menu-card:hover .menu-media img {
  transform: scale(1.06);
}
.menu-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(24, 12, 4, 0.82);
  color: var(--gold-bright);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.menu-body {
  padding: 1.3rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}
.menu-body h3 {
  font-size: 1.35rem;
}
.menu-body p {
  font-size: 0.95rem;
  color: var(--brown-mid);
  flex: 1;
}

.menu-card-cta {
  background: linear-gradient(150deg, var(--red-deep) 0%, var(--red) 55%, #c2543f 100%);
  justify-content: center;
  color: #fff;
  box-shadow: 0 16px 40px rgba(168, 53, 42, 0.35);
}
.menu-cta-inner {
  padding: 2rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  text-align: center;
  align-items: center;
  justify-content: center;
  flex: 1;
}
.menu-cta-inner h3 {
  color: #fff;
  font-size: 1.6rem;
}
.menu-cta-inner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.98rem;
  max-width: 400px;
}
.menu-card-cta .btn {
  background: var(--creme);
  color: var(--red-deep);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}
.menu-card-cta .btn:hover {
  transform: translateY(-2px);
}

/* ---------- Social proof ---------- */
.social-section {
  background: var(--creme);
}

.social-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 0.4rem;
  font-size: 1.05rem;
  color: var(--brown-mid);
}
.stars-lg {
  color: var(--gold);
  letter-spacing: 0.1em;
  font-size: 1.4rem;
}
.social-score strong {
  color: var(--ink);
  font-size: 1.3rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.7rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.t-stars {
  color: var(--gold);
  letter-spacing: 0.12em;
  font-size: 1.05rem;
}
.testimonial-card p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--ink);
}
.testimonial-card footer {
  font-size: 0.8rem;
  color: var(--brown-soft);
  letter-spacing: 0.04em;
}

/* ---------- Gallery ---------- */
.gallery-section {
  background: var(--creme-soft);
  padding-bottom: clamp(3.5rem, 9vw, 6.5rem);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 200px;
  gap: 0.8rem;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  margin: 0;
  box-shadow: var(--shadow-sm);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-item:hover img {
  transform: scale(1.07);
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(24, 12, 4, 0.35));
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.gallery-item:hover::after {
  opacity: 1;
}

/* ---------- Reserve ---------- */
.reserve-section {
  background:
    linear-gradient(180deg, rgba(24, 12, 4, 0.92) 0%, rgba(24, 12, 4, 0.82) 100%),
    url("https://images.unsplash.com/photo-1555396273-367ea4eb4db5?q=80&w=1600&auto=format&fit=crop") center/cover fixed;
  padding-block: clamp(3.5rem, 9vw, 6.5rem);
}

.reserve-card {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}
.reserve-card .eyebrow {
  color: var(--gold-bright);
}
.reserve-card .section-title {
  color: #fff;
  font-size: clamp(2rem, 5.4vw, 3.2rem);
}
.reserve-card p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  max-width: 540px;
  margin-inline: auto;
  margin-bottom: 1.8rem;
}

.reserve-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 1.8rem;
}
.reserve-section .btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid var(--line-light);
  box-shadow: none;
}
.reserve-section .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.reserve-notes {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}
.reserve-notes li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.reserve-notes svg {
  color: var(--gold-bright);
}

/* ---------- Location ---------- */
.location-section {
  background: var(--creme);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: stretch;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

.info-block {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.3rem;
  box-shadow: var(--shadow-sm);
}
.info-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--cream-deep);
  color: var(--red);
  flex-shrink: 0;
}
.info-block strong {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brown-soft);
  margin-bottom: 0.25rem;
}
.info-block p {
  color: var(--ink);
  font-weight: 500;
}
.info-block a {
  color: var(--red);
  font-weight: 600;
}
.info-block a:hover {
  text-decoration: underline;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.4rem;
}

.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 320px;
  border: 4px solid #fff;
}
.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
}

/* ---------- Final CTA ---------- */
.final-cta {
  background:
    radial-gradient(circle at 50% 0%, rgba(201, 155, 75, 0.22) 0%, transparent 60%),
    linear-gradient(150deg, var(--green-deep) 0%, var(--green) 100%);
  color: #fff;
  text-align: center;
}
.final-cta .eyebrow {
  color: var(--gold-bright);
}
.final-cta .section-title {
  color: #fff;
  font-size: clamp(2.1rem, 6vw, 3.6rem);
  margin-bottom: 1rem;
}
.final-cta p:not(.final-rating) {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2.4vw, 1.2rem);
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 2rem;
}
.final-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 1.6rem;
}
.final-cta .btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid var(--line-light);
  box-shadow: none;
}
.final-cta .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}
.final-rating {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
  padding: 3.5rem 0 7rem;
}
.site-footer .brand-text strong {
  color: #fff;
}
.site-footer .brand-text small {
  color: rgba(255, 255, 255, 0.6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.2rem;
  padding-bottom: 2.2rem;
  border-bottom: 1px solid var(--line-light);
  margin-bottom: 1.6rem;
}

.footer-brand p {
  margin-top: 1rem;
  max-width: 340px;
  font-size: 0.95rem;
}

.site-footer h3 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--gold-bright);
}
.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer-nav a,
.footer-contact a {
  transition: color 0.2s;
}
.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--gold-bright);
}
.footer-contact p {
  margin-bottom: 0.5rem;
}
.footer-hours {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
}

.footer-bottom {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

/* ---------- Mobile action bar ---------- */
.mobile-bar {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 250;
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  background: rgba(24, 12, 4, 0.97);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line-light);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.25);
}
.mob-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0.6rem 0.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.03em;
  transition: background-color 0.2s;
}
.mob-btn:active {
  background: rgba(255, 255, 255, 0.08);
}
.mob-btn-primary {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  color: #fff;
}
.mob-btn-primary svg {
  color: var(--gold-bright);
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (min-width: 640px) {
  .quick-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonial-card:last-child {
    grid-column: span 2;
  }
  .gallery-grid {
    grid-auto-rows: 240px;
  }
  .reserve-notes {
    flex-direction: row;
    justify-content: center;
    gap: 1.6rem;
  }
}

@media (min-width: 960px) {
  .nav-toggle {
    display: none;
  }
  .btn-header-mobile {
    display: none;
  }
  .btn-header-desktop {
    display: inline-flex;
    padding: 0.7rem 1.3rem;
    font-size: 0.88rem;
  }
  .main-nav {
    flex: 1;
    justify-content: flex-end;
  }
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .why-card-feature {
    grid-column: span 1;
  }
  .why-card-feature .why-body h3 {
    font-size: 1.55rem;
  }
  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .menu-card-cta {
    grid-column: span 1;
  }
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .testimonial-card:last-child {
    grid-column: auto;
  }
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 260px;
  }
  .gallery-item-lg {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery-item-tall {
    grid-row: span 2;
  }
  .location-grid {
    grid-template-columns: 1fr 1.2fr;
  }
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
  .mobile-bar {
    display: none;
  }
  .site-footer {
    padding-bottom: 3.5rem;
  }
}

@media (min-width: 1200px) {
  .why-card-feature {
    grid-column: span 1;
  }
  .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .hero-ctas {
    gap: 1rem;
  }
}

/* ==========================================================================
   Mobile nav drawer
   ========================================================================== */
@media (max-width: 959.98px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: min(320px, 86vw);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: calc(var(--header-h) + 1.2rem) 1.8rem 2rem;
    background: rgba(24, 12, 4, 0.98);
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    z-index: 250;
    box-shadow: var(--shadow-lg);
  }
  .main-nav.is-open {
    transform: translateX(0);
  }

  .site-header .main-nav .nav-list a,
  .site-header.scrolled .main-nav .nav-list a {
    color: #fff;
  }
  .nav-list {
    flex-direction: column;
    gap: 0;
  }
  .nav-list li {
    border-bottom: 1px solid var(--line-light);
  }
  .nav-list a {
    display: block;
    padding: 1rem 0;
    font-size: 1.05rem;
  }
  .nav-list a::after {
    display: none;
  }

  .btn-header-mobile {
    margin-top: 1.5rem;
  }

  body.nav-open {
    overflow: hidden;
  }
}

/* ==========================================================================
   Hero — mobile refinado
   ========================================================================== */

.hero-scroll {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.8rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s;
}
.hero-scroll svg {
  color: var(--gold-bright);
  animation: scroll-bounce 1.8s ease-in-out infinite;
}
.hero-scroll:hover {
  color: #fff;
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

@media (max-width: 639.98px) {
  .hero {
    padding: calc(var(--header-h) + 1.5rem) 0 2.75rem;
    text-align: center;
    min-height: 100svh;
  }

  .hero-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-title {
    font-size: clamp(2rem, 9.6vw, 2.85rem);
    margin-bottom: 0.95rem;
  }

  .hero-sub {
    font-size: 1rem;
    line-height: 1.55;
    margin-bottom: 1.4rem;
  }

  .hero-rating {
    justify-content: center;
    gap: 0.4rem 0.6rem;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }
  .hero-rating .stars {
    font-size: 1rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0.7rem;
    margin-bottom: 1.5rem;
  }
  .hero-ctas .btn {
    width: 100%;
    padding-block: 0.98rem;
    font-size: 1rem;
  }
  .hero-ctas .btn-ghost {
    background: rgba(255, 255, 255, 0.08);
  }

  .hero-seal {
    width: 100%;
    justify-content: center;
    text-align: left;
  }

  .hero-scroll {
    display: flex;
  }
}
