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

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

:root {
  --bg:     oklch(0.40 0.17 259);
  --fg:     oklch(0.97 0.004 258);
  --gold:   oklch(0.82 0.14 72);
  --muted:  oklch(0.32 0.14 259);
  --border: oklch(1 0 0 / 0.22);
  --fg50:   oklch(0.97 0.004 258 / 0.55);
  --fg65:   oklch(0.97 0.004 258 / 0.70);
  --fg75:   oklch(0.97 0.004 258 / 0.82);
  --radius: 1rem;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: "Raleway", system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  min-height: 100dvh;
  overflow-x: hidden;
}

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

/* ── Typography ─────────────────────────────── */
.display { font-family: "Playfair Display", Georgia, serif; letter-spacing: -0.01em; }
.eyebrow {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1.25rem;
}
.eyebrow-muted { color: var(--fg50); }

/* ── Glass ──────────────────────────────────── */
.glass {
  backdrop-filter: blur(24px) saturate(120%);
  -webkit-backdrop-filter: blur(24px) saturate(120%);
  background: oklch(1 0 0 / 0.06);
  border: 1px solid oklch(1 0 0 / 0.14);
  box-shadow: 0 8px 32px oklch(0 0 0 / 0.30);
}
.glass-dark {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: oklch(0 0 0 / 0.45);
  border: 1px solid oklch(1 0 0 / 0.15);
}

/* ── Layout helpers ─────────────────────────── */
.container {
  padding-left: clamp(1.5rem, 5vw, 5rem);
  padding-right: clamp(1.5rem, 5vw, 5rem);
}
.section-y { padding-top: clamp(4rem, 8vw, 7rem); padding-bottom: clamp(4rem, 8vw, 7rem); }
.border-t  { border-top: 1px solid var(--border); }
.border-b  { border-bottom: 1px solid var(--border); }

/* ── NAV ────────────────────────────────────── */
.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 1.25rem clamp(1.5rem, 4vw, 2.5rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: oklch(0.40 0.17 259 / 0.92);
  border-bottom: 1px solid var(--border);
}
.nav-location {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--fg65);
  transition: color .2s;
}
.nav-location:hover { color: var(--fg); }
.nav-logo {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  letter-spacing: -0.01em;
}
.nav-links { display: flex; gap: clamp(1rem, 3vw, 2rem); align-items: center; }
@media (max-width: 540px) { .nav-links { display: none; } }
.nav-link {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--fg65);
  transition: color .2s;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }

/* ── Hamburger ───────────────────────────────── */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 110;
  position: relative;
}
@media (max-width: 540px) { .nav-burger { display: flex; } }
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
  transform-origin: center;
}
.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Mobile overlay ──────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--bg);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
@media (max-width: 540px) { .mobile-menu { display: flex; } }
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-nav-link {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 12vw, 4rem);
  color: var(--fg);
  transition: color .2s;
  letter-spacing: -0.01em;
}
.mobile-nav-link:hover { color: var(--gold); }
.mobile-nav-reserve {
  margin-top: 0.5rem;
  padding: 1rem 2.5rem;
  background: var(--gold);
  color: var(--bg);
  border-radius: 9999px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  transition: background .3s;
}
.mobile-nav-reserve:hover { background: var(--fg); }
.btn-reserve {
  padding: 0.55rem 1.4rem;
  background: var(--gold);
  color: var(--bg);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border-radius: 9999px;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  transition: background .3s, color .3s;
}
.btn-reserve:hover { background: var(--fg); color: var(--bg); }

/* ── FOOTER ─────────────────────────────────── */
.site-footer {
  padding: 2.5rem clamp(1.5rem, 4vw, 2.5rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px solid var(--border);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fg50);
}
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a:hover { color: var(--gold); transition: color .2s; }

/* ── BUTTONS ─────────────────────────────────── */
.btn-primary {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--gold);
  color: var(--bg);
  font-family: "Raleway", sans-serif;
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 9999px;
  transition: background .3s, color .3s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--fg); color: var(--bg); }
.btn-outline {
  display: inline-block;
  padding: 0.875rem 2.5rem;
  border: 1px solid var(--border);
  color: var(--fg);
  font-family: "Raleway", sans-serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border-radius: 0.75rem;
  transition: background .3s, border-color .3s;
}
.btn-outline:hover { background: var(--gold); border-color: var(--gold); color: var(--bg); }
.link-arrow {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--fg50);
  padding-bottom: 0.3rem;
  transition: border-color .2s, color .2s;
}
.link-arrow:hover { border-color: var(--gold); color: var(--gold); }

/* ══════════════════════════════════════════════
   HOME — HERO
══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: 7rem;
  padding-bottom: 5rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  left: auto;
  width: 65%;
  z-index: -1;
  overflow: hidden;
}
@media (max-width: 900px) { .hero-bg { width: 100%; } }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg) 0%, oklch(0.40 0.17 259 / 0.65) 50%, transparent 100%);
}
@media (max-width: 900px) {
  .hero-bg::after { background: oklch(0.40 0.17 259 / 0.78); }
}
.hero-content { position: relative; max-width: 56rem; }
.hero-heading {
  font-size: clamp(3.5rem, 9vw, 9rem);
  line-height: 0.9;
  margin-bottom: 2.5rem;
  font-weight: 700;
}
.hero-heading .italic { font-style: italic; color: var(--gold); }
.hero-body { display: flex; flex-wrap: wrap; gap: 2.5rem; align-items: flex-start; }
.hero-desc { max-width: 42ch; font-size: 1.05rem; line-height: 1.7; color: var(--fg75); }

.booking-card {
  padding: 1.75rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 22rem;
  width: 100%;
}
.booking-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid oklch(1 0 0 / 0.1);
  padding-bottom: 0.75rem;
  font-size: 11px;
}
.booking-label { letter-spacing: 0.25em; text-transform: uppercase; color: var(--fg50); }
.booking-card-title {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
}
.booking-card-sub { font-size: 0.85rem; color: var(--fg65); line-height: 1.5; margin-top: 0.25rem; }

/* ── SENSORY GRID ────────────────────────────── */
.sensory-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 768px) { .sensory-grid { grid-template-columns: 1fr; } }
.sensory-cell {
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
  gap: 2rem;
}
.sensory-cell:not(:last-child) { border-right: 1px solid var(--border); }
@media (max-width: 768px) {
  .sensory-cell { border-right: none; border-bottom: 1px solid var(--border); }
  .sensory-cell:last-child { border-bottom: none; }
}
.sensory-num { font-size: 11px; color: oklch(0.97 0.004 258 / 0.35); font-variant-numeric: tabular-nums; }
.sensory-title { font-family: "Playfair Display", serif; font-size: clamp(1.6rem, 3vw, 2.25rem); margin-bottom: 0.75rem; }
.sensory-body { font-size: 0.875rem; line-height: 1.7; color: var(--fg65); }

/* ── SIGNATURE DISH ─────────────────────────── */
.dish-section { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
@media (max-width: 900px) { .dish-section { grid-template-columns: 1fr; } }
.dish-img { position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: 1rem; }
.dish-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s; }
.dish-img:hover img { transform: scale(1.05); }
.dish-heading { font-size: clamp(2.5rem, 5vw, 3.75rem); line-height: 0.95; margin-bottom: 1.5rem; }
.dish-body { color: var(--fg75); line-height: 1.7; max-width: 52ch; margin-bottom: 1.5rem; }

/* ── GALLERY ─────────────────────────────────── */
.gallery-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; flex-wrap: wrap; gap: 1rem; }
.gallery-title { font-size: clamp(2.5rem, 5vw, 3.75rem); line-height: 0.95; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 210px);
  gap: 0.75rem;
}
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(5, 180px);
  }
}
.gallery-item { overflow: hidden; border-radius: 1rem; position: relative; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-label {
  position: absolute;
  bottom: 0.75rem;
  left: 1rem;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
  color: transparent;
  transition: color .3s;
}
.gallery-item:hover .gallery-label { color: var(--fg); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, oklch(0.40 0.17 259 / 0.70), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gi-big   { grid-column: span 2; grid-row: span 2; }
.gi-wide  { grid-column: span 2; }
@media (max-width: 768px) {
  .gi-big  { grid-column: span 2; grid-row: span 2; }
  .gi-wide { grid-column: span 2; }
}

/* ── INTERIOR BANNER ─────────────────────────── */
.interior-banner {
  position: relative;
  height: 65vh;
  margin: 0 clamp(1.5rem, 5vw, 5rem);
  border-radius: 1.5rem;
  overflow: hidden;
  margin-bottom: 5rem;
}
.interior-banner img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s; }
.interior-banner:hover img { transform: scale(1.04); }
.interior-banner-overlay {
  position: absolute;
  inset: 0;
  background: oklch(0.80 0.14 72 / 0.15);
}
.interior-banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: clamp(1.5rem, 3vw, 3rem);
  flex-wrap: wrap;
  gap: 1rem;
}
.interior-quote {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.3;
  color: var(--fg);
  max-width: 28rem;
  text-shadow: 0 2px 12px oklch(0 0 0 / 0.5);
}

/* ══════════════════════════════════════════════
   MENU PAGE
══════════════════════════════════════════════ */
.menu-header {
  padding-top: 9rem;
  padding-bottom: 4rem;
}
.menu-h1 { font-size: clamp(3rem, 8vw, 8rem); line-height: 0.9; margin-bottom: 1.75rem; font-weight: 700; }

.tab-bar {
  position: sticky;
  top: 72px;
  z-index: 50;
  background: oklch(0.40 0.17 259 / 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.tab-bar-inner {
  overflow-x: auto;
  scrollbar-width: none;
  display: flex;
}
.tab-bar-inner::-webkit-scrollbar { display: none; }
.tab-btn {
  position: relative;
  padding: 1.2rem 1.4rem;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
  color: var(--fg50);
  transition: color .2s;
  font-family: "Raleway", sans-serif;
  flex-shrink: 0;
}
.tab-btn:hover { color: var(--fg75); }
.tab-btn.active { color: var(--fg); }
.tab-btn.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 9999px;
}

.menu-section-header {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.menu-section-title { font-size: clamp(2.5rem, 6vw, 4rem); }
.menu-count { font-size: 0.875rem; color: var(--fg50); }
.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border);
}
@media (max-width: 700px) { .menu-grid { grid-template-columns: 1fr; } }
.menu-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: baseline;
  gap: 1rem;
}
.menu-item:nth-child(odd)  { padding-right: clamp(1rem, 3vw, 3rem); }
.menu-item:nth-child(even) { padding-left: clamp(1rem, 3vw, 3rem); border-left: 1px solid var(--border); }
@media (max-width: 700px) {
  .menu-item:nth-child(even) { padding-left: 0; border-left: none; }
}
.menu-item-info { flex: 1; min-width: 0; }
.menu-item-en { font-family: "Playfair Display", serif; font-size: clamp(1.1rem, 2.5vw, 1.5rem); line-height: 1.2; display: block; }
.menu-item-al { font-size: 0.8rem; color: var(--fg50); margin-top: 0.2rem; display: block; }
.menu-item-price {
  flex-shrink: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-variant-numeric: tabular-nums;
}
.price-unit { font-family: "Raleway", sans-serif; font-size: 0.75rem; color: var(--fg50); }
.menu-divider { display: flex; align-items: center; gap: 1.5rem; margin-top: 4rem; color: oklch(0.97 0.004 258 / 0.25); }
.menu-divider-line { flex: 1; height: 1px; background: var(--border); }
.menu-divider-icon { font-family: "Playfair Display", serif; font-style: italic; font-size: 1.5rem; color: var(--fg50); }
.menu-cta { text-align: center; padding: 0 1rem 7rem; }
.menu-cta-quote { font-family: "Playfair Display", serif; font-style: italic; font-size: clamp(1.5rem, 3vw, 2.25rem); color: var(--fg50); margin-bottom: 2.5rem; }

/* ══════════════════════════════════════════════
   RESERVE PAGE
══════════════════════════════════════════════ */
.reserve-section {
  padding-top: 8rem;
  padding-bottom: 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
@media (max-width: 900px) { .reserve-section { grid-template-columns: 1fr; } }
.reserve-sticky { position: sticky; top: 6rem; }
.reserve-h1 { font-size: clamp(3rem, 6vw, 4.5rem); line-height: 0.95; margin-bottom: 2rem; }
.reserve-desc { color: var(--fg75); line-height: 1.7; max-width: 48ch; margin-bottom: 2.5rem; }
.info-block { margin-bottom: 1.25rem; }
.info-label { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--fg50); margin-bottom: 0.3rem; }
.info-value { font-size: 0.9rem; }

.reserve-form { padding: clamp(1.75rem, 3vw, 2.5rem); border-radius: 1.5rem; display: grid; gap: 1.25rem; }
.form-group { display: grid; gap: 0.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; }
@media (max-width: 540px) {
  .form-row, .form-row-3 { grid-template-columns: 1fr; }
}
.form-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fg50);
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid oklch(1 0 0 / 0.2);
  padding: 0.6rem 0;
  font-size: 0.9rem;
  color: var(--fg);
  font-family: "Raleway", sans-serif;
  outline: none;
  transition: border-color .2s;
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold); }
.form-select { cursor: pointer; }
.form-select option { background: #1c1a16; color: var(--fg); }
.form-textarea { resize: none; }
.form-submit { margin-top: 0.75rem; width: 100%; padding: 1.1rem; font-size: 11px; letter-spacing: 0.3em; }
.form-success { padding: 3.5rem 1rem; text-align: center; }
.form-success-icon { font-family: "Playfair Display", serif; font-size: 2.5rem; margin-bottom: 1rem; }
.form-success-title { font-family: "Playfair Display", serif; font-size: 2.5rem; margin-bottom: 0.75rem; }
.form-success-body { color: var(--fg65); line-height: 1.6; }
.form-error {
  font-size: 0.875rem;
  color: oklch(0.75 0.18 27);
  background: oklch(0.65 0.22 27 / 0.1);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  display: none;
}
.form-error.visible { display: block; }

/* ══════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════ */
.contact-header { padding-top: 8rem; padding-bottom: 3rem; max-width: 50rem; }
.contact-h1 { font-size: clamp(3rem, 7vw, 5.5rem); line-height: 0.9; margin-bottom: 1.5rem; font-weight: 700; }
.contact-body { color: var(--fg75); line-height: 1.7; max-width: 52ch; }
.contact-grid { display: grid; grid-template-columns: 3fr 2fr; gap: clamp(1.5rem, 3vw, 3rem); align-items: start; padding-bottom: 5rem; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.map-wrap { position: relative; border-radius: 1.5rem; overflow: hidden; border: 1px solid var(--border); aspect-ratio: 4/3; }
@media (min-width: 901px) { .map-wrap { aspect-ratio: auto; height: 540px; } }
.map-wrap iframe { width: 100%; height: 100%; border: none; filter: grayscale(10%); }
.map-btn {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  padding: 0.6rem 1.25rem;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border-radius: 9999px;
}
.map-btn:hover { background: var(--gold); color: var(--bg); }
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-address-title { font-size: 1.5rem; line-height: 1.3; margin-bottom: 0.25rem; }
.contact-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
@media (max-width: 400px) { .contact-actions { grid-template-columns: 1fr; } }
.contact-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 1rem;
  transition: background .2s, border-color .2s, color .2s;
}
.contact-action-primary { background: var(--gold); color: var(--bg); }
.contact-action-primary:hover { background: var(--fg); color: var(--bg); }
.contact-action-secondary { border: 1px solid var(--border); }
.contact-action-secondary:hover { border-color: var(--gold); color: var(--gold); }
.contact-action-sub { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; opacity: 0.7; margin-bottom: 0.25rem; }
.contact-action-val { font-size: 0.875rem; font-weight: 500; }
.hours-card { border-radius: 1rem; padding: 1.5rem; }
.hours-card-top { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid oklch(1 0 0 / 0.1); padding-bottom: 0.75rem; margin-bottom: 1rem; }
.hours-label { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--fg50); }
.hours-open { display: flex; align-items: center; gap: 0.5rem; font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); }
.hours-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:0.4; } }
.hours-list { display: grid; gap: 0.6rem; font-size: 0.875rem; }
.hours-row { display: flex; justify-content: space-between; gap: 1rem; color: var(--fg65); }
.hours-row.today { color: var(--fg); font-weight: 600; }
