/* ==========================================================================
   Golden Phoenix Restaurant & Take-away — Stylesheet
   Palette derived from the storefront signage: deep navy, antique gold,
   burnt rust/orange and deep maroon accents.
   ========================================================================== */

:root {
  /* Colors */
  --navy: #181c2a;
  --navy-light: #262c40;
  --navy-soft: #2f3650;
  --gold: #cda352;
  --gold-light: #f3dca6;
  --gold-dark: #a8782f;
  --cream: #faf6ee;
  --cream-alt: #f1e8d8;
  --rust: #c1622d;
  --maroon: #6e2235;
  --text-dark: #2b2118;
  --text-muted: #756b5c;
  --text-light: #f5efe2;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', 'Segoe UI', sans-serif;

  /* Layout */
  --header-height: 84px;
  --container-width: 1180px;
  --radius: 14px;
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

section {
  scroll-margin-top: var(--header-height);
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: var(--navy);
  padding: 10px 18px;
  font-weight: 600;
  z-index: 200;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

/* ----- Typography helpers ------------------------------------------------ */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-lead {
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 40px;
}

.center {
  text-align: center;
}

/* ----- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 60%, var(--gold-dark));
  color: var(--navy);
  box-shadow: 0 8px 20px rgba(168, 120, 47, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(168, 120, 47, 0.45);
}

.btn-outline {
  border-color: var(--gold);
  color: var(--gold-light);
  background: transparent;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.hours-card .btn-outline,
.location-card .btn-outline,
.contact .btn-outline {
  color: var(--navy);
  border-color: var(--rust);
}

.hours-card .btn-outline:hover,
.location-card .btn-outline:hover,
.contact .btn-outline:hover {
  background: var(--rust);
  color: var(--text-light);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

.btn-full {
  width: 100%;
}

/* ----- Header -------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background: rgba(24, 28, 42, 0.55);
  backdrop-filter: blur(10px);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(24, 28, 42, 0.95);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-logo {
  width: 48px;
  height: 48px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--gold-light);
  letter-spacing: 0.02em;
}

.brand-sub {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
}

.nav-list {
  display: flex;
  gap: 28px;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-light);
  position: relative;
  padding: 6px 2px;
  transition: color var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-light);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  font-weight: 600;
  font-size: 0.92rem;
  transition: color var(--transition);
}

.phone-link:hover {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--gold-light);
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ----- Hero ------------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: var(--text-light);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(110, 34, 53, 0.55), transparent 55%),
    radial-gradient(circle at 15% 85%, rgba(193, 98, 45, 0.35), transparent 50%),
    linear-gradient(160deg, #1b1f2e 0%, #181c2a 55%, #11141f 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: url('../assets/pattern.svg');
  background-size: 110px 110px;
  opacity: 0.08;
}

.hero-phoenix {
  position: absolute;
  top: 50%;
  right: -120px;
  transform: translateY(-50%);
  width: 640px;
  opacity: 0.08;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: var(--header-height);
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 18px;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(3rem, 9vw, 6.5rem);
  line-height: 1;
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 20px;
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-light);
  opacity: 0.9;
  max-width: 580px;
  margin-bottom: 28px;
}

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(205, 163, 82, 0.35);
  border-radius: 999px;
  padding: 8px 20px;
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 36px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-muted);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}

.status-dot.open {
  background: #5fbf6f;
  box-shadow: 0 0 0 4px rgba(95, 191, 111, 0.18);
}

.status-dot.closed {
  background: #d9684f;
  box-shadow: 0 0 0 4px rgba(217, 104, 79, 0.18);
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  opacity: 0.7;
  animation: bounce 2.4s infinite;
  z-index: 2;
}

.scroll-cue:hover {
  opacity: 1;
}

@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}

/* ----- About ------------------------------------------------------------------ */
.about {
  padding: 100px 0;
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}

.about-visual {
  display: flex;
  justify-content: center;
}

.about-frame {
  position: relative;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--navy), var(--maroon));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 50px rgba(110, 34, 53, 0.25);
}

.about-frame::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(205, 163, 82, 0.45);
  border-radius: 50%;
}

.about-emblem {
  width: 62%;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.35));
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 18px;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

.about-highlights li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  color: var(--navy);
}

.about-highlights svg {
  color: var(--rust);
  flex-shrink: 0;
}

/* ----- Features ------------------------------------------------------------------ */
.features {
  padding: 80px 0;
  background: var(--navy);
  color: var(--text-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.feature-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(205, 163, 82, 0.15);
  transition: transform var(--transition), border-color var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(205, 163, 82, 0.4);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--navy);
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--gold-light);
}

.feature-card p {
  font-size: 0.92rem;
  color: rgba(245, 239, 226, 0.75);
}

/* ----- Menu ------------------------------------------------------------------ */
.menu {
  padding: 100px 0;
  background: var(--cream);
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 44px;
}

.menu-tab {
  padding: 11px 22px;
  border-radius: 999px;
  border: 1px solid rgba(110, 34, 53, 0.2);
  background: #fff;
  color: var(--navy);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

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

.menu-tab[aria-selected="true"] {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 60%, var(--gold-dark));
  color: var(--navy);
  border-color: transparent;
  font-weight: 600;
}

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

.menu-item {
  background: #fff;
  border: 1px solid rgba(110, 34, 53, 0.08);
  border-radius: var(--radius);
  padding: 22px 24px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.menu-item:hover {
  box-shadow: 0 12px 28px rgba(24, 28, 42, 0.08);
  transform: translateY(-3px);
}

.menu-item-feature {
  background: linear-gradient(135deg, rgba(243, 220, 166, 0.35), rgba(193, 98, 45, 0.12));
  border: 1px solid rgba(205, 163, 82, 0.4);
}

.menu-item-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 8px;
}

.menu-item-head h3 {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  color: var(--navy);
  font-weight: 600;
}

.for-two {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--rust);
  margin-left: 6px;
}

.price {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--rust);
  font-size: 1.1rem;
  white-space: nowrap;
}

.menu-item p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* ----- Gallery ------------------------------------------------------------------ */
.gallery {
  padding: 100px 0;
  background: var(--navy);
  color: var(--text-light);
}

.gallery .section-title {
  color: var(--gold-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.gallery-card {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-weight: 600;
  font-size: 0.98rem;
  text-align: center;
  padding: 16px;
  transition: transform var(--transition);
  border: 1px solid rgba(205, 163, 82, 0.2);
}

.gallery-card:hover {
  transform: scale(1.03);
}

.gallery-icon {
  color: var(--gold-light);
}

.gallery-1 { background: linear-gradient(150deg, var(--maroon), #3a1422); }
.gallery-2 { background: linear-gradient(150deg, var(--rust), #8a4520); }
.gallery-3 { background: linear-gradient(150deg, var(--navy-soft), var(--navy)); }
.gallery-4 { background: linear-gradient(150deg, var(--gold-dark), var(--maroon)); }
.gallery-5 { background: linear-gradient(150deg, #8a4520, var(--navy)); }
.gallery-6 { background: linear-gradient(150deg, var(--navy-soft), var(--maroon)); }

/* ----- Reviews ------------------------------------------------------------------ */
.reviews {
  padding: 100px 0;
  background: var(--cream);
}

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

.review-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid rgba(110, 34, 53, 0.08);
  box-shadow: 0 8px 24px rgba(24, 28, 42, 0.05);
}

.stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.review-card p {
  color: var(--text-dark);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.review-author {
  font-weight: 600;
  color: var(--rust);
  font-size: 0.88rem;
  margin-bottom: 0 !important;
}

/* ----- Hours & Location ------------------------------------------------------------------ */
.hours {
  padding: 100px 0;
  background: var(--cream-alt);
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(24, 28, 42, 0.05);
}

.hours-table th,
.hours-table td {
  padding: 14px 22px;
  text-align: left;
  font-weight: 500;
  border-bottom: 1px solid rgba(110, 34, 53, 0.07);
  font-size: 0.95rem;
}

.hours-table th {
  font-weight: 600;
  color: var(--navy);
}

.hours-table td {
  color: var(--text-muted);
  text-align: right;
}

.hours-table tr:last-child th,
.hours-table tr:last-child td {
  border-bottom: none;
}

.hours-table tr.today {
  background: linear-gradient(135deg, rgba(243, 220, 166, 0.4), rgba(193, 98, 45, 0.12));
}

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

.hours-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.location-card address {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-style: normal;
  color: var(--text-muted);
  margin: 20px 0 26px;
}

.location-card address svg {
  color: var(--rust);
  flex-shrink: 0;
  margin-top: 2px;
}

.location-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.map-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(24, 28, 42, 0.08);
}

.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ----- Contact ------------------------------------------------------------------ */
.contact {
  padding: 100px 0;
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
  color: var(--navy);
}

.contact-list svg {
  color: var(--rust);
  flex-shrink: 0;
}

.contact-list a:hover {
  color: var(--rust);
}

.contact-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid rgba(110, 34, 53, 0.08);
  box-shadow: 0 8px 24px rgba(24, 28, 42, 0.05);
}

.form-row {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-row label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

.form-row input,
.form-row textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 14px;
  border: 1px solid rgba(110, 34, 53, 0.15);
  border-radius: 8px;
  background: var(--cream);
  color: var(--text-dark);
  resize: vertical;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(205, 163, 82, 0.2);
}

.form-note {
  margin-top: 16px;
  font-size: 0.88rem;
  color: var(--rust);
  text-align: center;
}

.form-note a {
  font-weight: 600;
  text-decoration: underline;
}

/* ----- Footer ------------------------------------------------------------------ */
.site-footer {
  background: var(--navy);
  color: var(--text-light);
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(205, 163, 82, 0.15);
}

.footer-logo {
  margin-bottom: 14px;
}

.footer-brand .brand-name {
  font-size: 1.2rem;
}

.footer-tagline {
  margin-top: 12px;
  font-size: 0.88rem;
  color: rgba(245, 239, 226, 0.7);
}

.site-footer h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--gold-light);
  margin-bottom: 18px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.92rem;
  color: rgba(245, 239, 226, 0.75);
  transition: color var(--transition);
}

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

.footer-hours-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.88rem;
}

.footer-hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(245, 239, 226, 0.75);
}

.footer-contact address {
  font-style: normal;
  font-size: 0.92rem;
  color: rgba(245, 239, 226, 0.75);
  margin-bottom: 14px;
  line-height: 1.7;
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--gold-light);
  transition: color var(--transition);
}

.footer-phone:hover {
  color: var(--gold);
}

.footer-bottom-inner {
  padding: 24px 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(245, 239, 226, 0.55);
}

/* ----- Back to top & mobile CTA ------------------------------------------------------------------ */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--navy);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  z-index: 90;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  background: var(--navy);
  border-top: 1px solid rgba(205, 163, 82, 0.2);
  padding: 10px;
  gap: 10px;
}

.mobile-cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--navy);
}

.mobile-cta-alt {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold-light);
}

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

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

/* ----- Responsive ------------------------------------------------------------------ */
@media (max-width: 980px) {
  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: rgba(24, 28, 42, 0.98);
    backdrop-filter: blur(10px);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
  }

  .nav.open {
    max-height: 70vh;
    overflow-y: auto;
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
    padding: 10px 24px 24px;
  }

  .nav-list li {
    border-bottom: 1px solid rgba(205, 163, 82, 0.1);
  }

  .nav-link {
    display: block;
    padding: 14px 0;
  }

  .phone-link span {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .about-grid,
  .hours-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    order: -1;
  }

  .about-frame {
    width: 220px;
    height: 220px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mobile-cta {
    display: flex;
  }

  body {
    padding-bottom: 70px;
  }
}

@media (max-width: 600px) {
  :root {
    --header-height: 70px;
  }

  .brand-sub {
    display: none;
  }

  .header-actions .btn-sm {
    display: none;
  }

  .hero-title {
    font-size: clamp(2.6rem, 16vw, 4rem);
  }

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

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

  .menu-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 6px;
    margin: 0 -24px 44px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .menu-tab {
    flex-shrink: 0;
  }
}
