/* ============================================
   Dhok Koon Thai — Elegant Restaurant Theme
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg: #faf8f5;
  --bg-alt: #f3ede6;
  --bg-deep: #1a0f14;
  --card: #ffffff;
  --text: #1a0f14;
  --text-soft: #4a3530;
  --text-muted: #8a7570;
  --gold: #c9a44c;
  --gold-light: #dfc47a;
  --gold-dark: #a5822e;
  --gold-surface: rgba(201,164,76,0.09);
  --gold-glow: rgba(201,164,76,0.18);
  --plum: #2a0f1e;
  --plum-mid: #3d1f33;
  --plum-light: #5c3a4e;
  --crimson: #8b1a2f;
  --border: #e4dbd4;
  --border-light: #ede7e1;
  --shadow-sm: 0 1px 4px rgba(0,0,0,.05);
  --shadow-md: 0 6px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.10);
  --shadow-gold: 0 4px 24px rgba(201,164,76,0.22);
  --font-display: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --radius: 3px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  width: min(1080px, calc(100% - 2.5rem));
  margin: 0 auto;
}

/* ============================================
   Decorative Thai-inspired divider
   ============================================ */

.thai-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.thai-divider::before,
.thai-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.thai-divider-ornament {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.15em;
}

/* ============================================
   Navigation
   ============================================ */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  transition: background 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.site-nav.scrolled {
  background: rgba(250,248,245,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border), 0 4px 20px rgba(0,0,0,.04);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.75rem;
}

/* Logo — feathered / faded edges */
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-img {
  height: 46px;
  max-width: 200px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.3s;
  /* Fade out edges with a mask */
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 55%, transparent 100%);
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 55%, transparent 100%);
  filter: drop-shadow(0 1px 6px rgba(201,164,76,0.18));
}

.scrolled .nav-logo-img {
  filter: none;
}

.nav-links {
  display: flex;
  gap: 0.1rem;
}

.nav-link {
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: color 0.3s, background 0.3s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 1rem;
  right: 1rem;
  height: 1px;
  background: var(--gold-light);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-link:hover {
  color: var(--gold-light);
  background: rgba(255,255,255,0.07);
}

.scrolled .nav-link {
  color: var(--text-soft);
}

.scrolled .nav-link:hover {
  color: var(--gold-dark);
  background: var(--gold-surface);
}

.scrolled .nav-link::after {
  background: var(--gold-dark);
}

.nav-phone {
  display: none;
  text-decoration: none;
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  padding: 0.5rem 1.375rem;
  border: 1px solid rgba(201,164,76,0.45);
  border-radius: 999px;
  transition: all 0.3s var(--ease);
  background: rgba(201,164,76,0.06);
}

.nav-phone:hover {
  background: var(--gold);
  color: var(--plum);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.scrolled .nav-phone {
  color: var(--gold-dark);
  border-color: rgba(165,130,46,0.5);
  background: transparent;
}

.scrolled .nav-phone:hover {
  background: var(--gold-dark);
  color: #fff;
  border-color: var(--gold-dark);
}

@media (min-width: 900px) {
  .nav-phone { display: inline-flex; }
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 36px;
  height: 36px;
  padding: 6px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 1.5px;
  background: rgba(255,255,255,0.9);
  transition: transform 0.3s var(--ease), opacity 0.3s;
  transform-origin: center;
}

.scrolled .hamburger-line {
  background: var(--text);
}

.hamburger[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(3.75px) rotate(45deg);
}
.hamburger[aria-expanded="true"] .hamburger-line:nth-child(2) {
  transform: translateY(-3.75px) rotate(-45deg);
}

@media (max-width: 767px) {
  .hamburger { display: flex; }
  .nav-links { display: none; }
  .nav-phone { display: none; }
}

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--bg);
  padding: 0.75rem 1.75rem 2rem;
  border-top: 1px solid var(--border);
  box-shadow: 0 12px 32px rgba(0,0,0,.08);
}

.mobile-nav:not([hidden]) {
  display: flex;
}

.mobile-link {
  display: block;
  padding: 1rem 0;
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border-light);
  transition: color 0.2s, padding-left 0.2s;
}

.mobile-link:last-child { border-bottom: none; }

.mobile-link:hover {
  color: var(--gold-dark);
  padding-left: 0.5rem;
}

.mobile-phone {
  margin-top: 0.75rem;
  color: var(--gold-dark);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: none;
}

/* ============================================
   Hero — Full-bleed dramatic cover
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}

.hero-bg-img.loaded {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(26,9,20,0.22) 0%,
      rgba(26,9,20,0.05) 25%,
      rgba(26,9,20,0.15) 55%,
      rgba(26,9,20,0.82) 100%
    );
}

/* Subtle vignette */
.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(26,9,20,0.35) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  padding: 0 1.75rem 5rem;
  color: #fff;
}

@media (min-width: 768px) {
  .hero-content { padding-bottom: 7rem; }
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0 0 0.75rem;
  opacity: 0.9;
}

/* Ornamental line above title */
.hero-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero-ornament::before,
.hero-ornament::after {
  content: '';
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,164,76,0.7));
}

.hero-ornament::after {
  background: linear-gradient(90deg, rgba(201,164,76,0.7), transparent);
}

.hero-ornament-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 8px var(--gold);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7.5vw, 5.5rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 1.25rem;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  margin: 0 0 1.25rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.hero-meta {
  margin-bottom: 2.25rem;
}

.hero-hours {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.hero-actions {
  display: flex;
  gap: 0.875rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-size: 0.775rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.9rem 2.25rem;
  border-radius: var(--radius);
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-hero.primary {
  background: var(--gold);
  color: var(--plum);
  border: 1px solid var(--gold);
  box-shadow: 0 4px 20px rgba(201,164,76,0.3);
}

.btn-hero.primary::before {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.btn-hero.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,164,76,0.45);
}

.btn-hero.primary:hover::before {
  opacity: 1;
}

.btn-hero:not(.primary) {
  color: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
}

.btn-hero:not(.primary):hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

/* ============================================
   Sections — General
   ============================================ */

.section {
  padding: 5.5rem 0;
}

@media (min-width: 768px) {
  .section { padding: 7rem 0; }
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.875rem;
  position: relative;
  padding-left: 1.75rem;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.25rem;
  height: 1px;
  background: var(--gold);
  transform: translateY(-50%);
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--text);
  margin: 0 0 1.5rem;
}

.section-header {
  margin-bottom: 3rem;
}

.section-header h2 {
  margin-bottom: 0;
}

/* ============================================
   About — with background texture accent
   ============================================ */

.section-about {
  background: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section-about::before {
  content: '✦';
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 6rem;
  color: var(--gold-surface);
  opacity: 0.4;
  pointer-events: none;
  font-family: serif;
}

.section-about::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-surface), var(--gold), var(--gold-surface), transparent);
}

.about-content {
  max-width: 660px;
  margin: 0 auto;
}

.about-content .section-label {
  display: block;
  padding-left: 0;
  text-align: center;
}

.about-content .section-label::before {
  display: none;
}

.about-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text);
  margin-bottom: 1.5rem;
}

.about-text {
  font-family: var(--font-accent);
  font-size: 1.175rem;
  font-style: italic;
  color: var(--text-soft);
  line-height: 1.85;
  margin: 0;
}

/* ============================================
   Menu — Refined list layout
   ============================================ */

.section-menu {
  background: var(--bg-alt);
  position: relative;
}

.section-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--plum), var(--gold), var(--crimson), var(--gold), var(--plum));
}

.menu-nav {
  display: flex;
  gap: 0;
  margin-bottom: 3.5rem;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.menu-nav::-webkit-scrollbar { display: none; }

.menu-tab {
  display: inline-block;
  padding: 0.875rem 1.625rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}

.menu-tab:hover {
  color: var(--gold-dark);
  border-bottom-color: var(--gold);
  background: var(--gold-surface);
}

.menu-section {
  margin-bottom: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--border-light);
}

.menu-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.menu-category {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.menu-category::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0.5;
}

.menu-category-sub {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--text-muted);
  margin: 0 0 2rem;
  font-weight: 400;
}

/* Menu items */
.menu-items {
  display: flex;
  flex-direction: column;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border-light);
  transition: background 0.2s, padding-left 0.2s;
  position: relative;
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item:hover {
  padding-left: 0.5rem;
}

.menu-item-info {
  flex: 1;
  min-width: 0;
}

.menu-item-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 0.3rem;
}

.menu-item-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.menu-item-price {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--gold-dark);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Dots leader on desktop */
@media (min-width: 600px) {
  .menu-item::after {
    content: '';
    flex: 1;
    border-bottom: 1px dotted rgba(201,164,76,0.3);
    margin: 0 1rem;
    align-self: baseline;
    min-width: 2rem;
    order: 1;
  }
  .menu-item-info { order: 0; flex: none; max-width: 62%; }
  .menu-item-price { order: 2; }
  .menu-item {
    border-bottom: none;
    padding: 1rem 0;
  }
}

[id] { scroll-margin-top: 80px; }

/* ============================================
   Reviews
   ============================================ */

.section-reviews {
  background: var(--bg);
  position: relative;
}

.section-reviews::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-surface), var(--gold), var(--gold-surface), transparent);
}

.reviews-summary {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  font-style: italic;
  color: var(--text-soft);
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.reviews-stars-inline {
  color: var(--gold);
  font-style: normal;
  letter-spacing: 2px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  padding: 2.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  position: relative;
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease), border-color 0.35s;
  overflow: hidden;
}

.review-card::before {
  content: '\201C';
  position: absolute;
  top: 0.5rem;
  left: 1.25rem;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: rgba(201,164,76,0.10);
  pointer-events: none;
  font-style: italic;
}

/* Bottom accent bar on hover */
.review-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.35s var(--ease);
}

.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(201,164,76,0.25);
}

.review-card:hover::after {
  transform: scaleX(1);
}

.review-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  letter-spacing: 3px;
}

.review-text {
  font-family: var(--font-accent);
  font-size: 1rem;
  color: var(--text-soft);
  line-height: 1.75;
  font-style: italic;
}

.review-author {
  margin-top: 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================
   Contact
   ============================================ */

.section-contact {
  background: var(--plum);
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Subtle pattern overlay */
.section-contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(201,164,76,0.025) 0px,
      rgba(201,164,76,0.025) 1px,
      transparent 1px,
      transparent 40px
    );
  pointer-events: none;
}

.section-contact .section-label {
  color: var(--gold-light);
}

.section-contact .section-label::before {
  background: var(--gold-light);
}

.section-contact h2 {
  color: #fff;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  position: relative;
}

@media (min-width: 768px) {
  .contact-layout {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
  }
}

.contact-intro {
  font-family: var(--font-accent);
  font-size: 1.125rem;
  font-style: italic;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin: 0 0 2.25rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 0;
  text-decoration: none;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.25s, padding-left 0.25s;
}

.contact-item:last-child { border-bottom: none; }

.contact-item:hover {
  color: var(--gold-light);
  padding-left: 0.5rem;
}

.contact-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(201,164,76,0.25);
  background: rgba(201,164,76,0.07);
  font-size: 0;
  flex-shrink: 0;
  transition: background 0.25s, border-color 0.25s;
}

.contact-item:hover .contact-icon {
  background: rgba(201,164,76,0.15);
  border-color: rgba(201,164,76,0.5);
}

.contact-icon::before {
  font-size: 1.125rem;
}

#btn-phone .contact-icon::before { content: "📞"; }
#btn-address .contact-icon::before { content: "📍"; }
#btn-email .contact-icon::before { content: "✉️"; }

.contact-item-content {
  display: flex;
  flex-direction: column;
}

.contact-item-label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.125rem;
}

.contact-item-value {
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
}

.contact-hours {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,164,76,0.15);
  border-radius: var(--radius);
  padding: 2.25rem;
  align-self: start;
  position: relative;
}

.contact-hours::before {
  content: '';
  position: absolute;
  top: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hours-heading {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 1.75rem;
}

.hours-table {
  font-size: 0.9375rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.hours-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hours-day {
  font-weight: 500;
  color: rgba(255,255,255,0.88);
}

.hours-time {
  color: var(--gold-light);
  font-size: 0.875rem;
}

/* ============================================
   Footer
   ============================================ */

.site-footer {
  background: var(--plum);
  border-top: 1px solid rgba(201,164,76,0.12);
  padding: 2.5rem 0;
  color: rgba(255,255,255,0.35);
  font-size: 0.8125rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  opacity: 0.4;
  filter: brightness(2) grayscale(1);
  transition: opacity 0.3s;
}

.footer-logo-img:hover {
  opacity: 0.65;
}

/* ============================================
   Floating Call Button
   ============================================ */

.fab-call {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.625rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  border: none;
  color: var(--plum);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.775rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  box-shadow: 0 4px 24px rgba(201,164,76,0.4), 0 1px 0 rgba(255,255,255,0.2) inset;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  z-index: 1000;
}

.fab-call:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 36px rgba(201,164,76,0.55);
}

.fab-icon {
  width: 18px;
  height: 18px;
}

.fab-text {
  display: none;
}

@media (min-width: 768px) {
  .fab-text { display: inline; }
}

/* ============================================
   Scroll Reveal
   ============================================ */

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s var(--ease-out),
              transform 0.75s var(--ease-out);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
