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

:root {
  --navy: #0f1c3f;
  --navy-light: #1a2d56;
  --navy-dark: #091229;
  --gold: #d4a853;
  --gold-light: #e8c97a;
  --gold-dark: #b8912e;
  --cream: #faf6ee;
  --cream-dark: #f0e8d8;
  --white: #ffffff;
  --text: #1a1a1a;
  --text-light: #4a4a4a;
  --text-muted: #7a7a7a;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Loader ─────────────────────────────────────── */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center; gap: 6px;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-char {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold);
  animation: loaderBounce 0.6s var(--ease) infinite alternate;
}
.loader-char:nth-child(2) { animation-delay: 0.08s; }
.loader-char:nth-child(3) { animation-delay: 0.16s; }
.loader-char:nth-child(4) { animation-delay: 0.24s; }
.loader-char:nth-child(5) { animation-delay: 0.32s; }
.loader-char:nth-child(6) { animation-delay: 0.40s; }
.loader-char:nth-child(7) { animation-delay: 0.48s; }
.loader-char:nth-child(8) { animation-delay: 0.56s; }
@keyframes loaderBounce {
  from { transform: translateY(0); opacity: 0.5; }
  to { transform: translateY(-12px); opacity: 1; }
}

/* ── Navbar ──────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.navbar.scrolled {
  background: rgba(15, 28, 63, 0.97);
  padding: 14px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
  backdrop-filter: blur(10px);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.nav-brand-mark {
  width: 36px; height: 36px;
  background: var(--gold);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 4px;
}
.nav-brand-text { font-style: italic; }
.nav-links {
  display: flex; align-items: center; gap: 32px;
  list-style: none;
}
.nav-link {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.3s var(--ease);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }
.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 10px 22px;
  border-radius: 4px;
  font-weight: 600;
  transition: background 0.3s var(--ease), transform 0.2s var(--ease);
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  width: 28px; padding: 4px 0;
}
.nav-toggle span {
  display: block; height: 2px; background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(212,168,83,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 80px;
  flex: 1;
}
.hero-greeting {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 16px; margin-bottom: 48px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.3s var(--ease);
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(212,168,83,0.3); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-full { width: 100%; justify-content: center; }
.hero-meta { display: flex; gap: 32px; flex-wrap: wrap; }
.hero-meta-item {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
}
.hero-meta-item svg { color: var(--gold); flex-shrink: 0; }

.hero-image { position: relative; }
.hero-img-wrapper {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}
.hero-img-wrapper img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-img-accent {
  position: absolute; inset: 0;
  border: 1px solid rgba(212,168,83,0.2);
  border-radius: 8px;
  pointer-events: none;
}
.hero-img-wrapper::before {
  content: '';
  position: absolute; top: -20px; right: -20px;
  width: 120px; height: 120px;
  border: 2px solid var(--gold);
  border-radius: 4px;
  z-index: -1;
  opacity: 0.4;
}
.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: scrollPulse 2s var(--ease) infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; transform: translateX(-50%) translateY(4px); }
}

/* ── Marquee ─────────────────────────────────────── */
.marquee {
  background: var(--navy-dark);
  padding: 14px 0;
  overflow: hidden;
  border-top: 1px solid rgba(212,168,83,0.15);
  border-bottom: 1px solid rgba(212,168,83,0.15);
}
.marquee-track {
  display: flex;
  animation: marqueeScroll 30s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(212,168,83,0.6);
  padding: 0 24px;
  flex-shrink: 0;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Section Labels & Titles ─────────────────────── */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 16px;
  position: relative;
  padding-left: 40px;
}
.section-label::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  width: 28px; height: 1.5px;
  background: var(--gold);
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.lead {
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ── About ───────────────────────────────────────── */
.about {
  padding: 120px 0;
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(15,28,63,0.15);
  position: relative;
}
.about-image-wrap::after {
  content: '';
  position: absolute; bottom: -16px; right: -16px;
  width: 60%; height: 60%;
  border: 2px solid var(--gold);
  border-radius: 8px;
  z-index: -1;
  opacity: 0.3;
}
.about-image-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-content p { color: var(--text-light); line-height: 1.8; margin-bottom: 16px; }
.about-stats {
  display: flex; gap: 32px; margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(15,28,63,0.1);
}
.stat { flex: 1; }
.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  background: rgba(15,28,63,0.1);
  align-self: stretch;
}

/* ── Menu ────────────────────────────────────────── */
.menu {
  padding: 120px 0;
  background: var(--white);
}
.menu-header { text-align: center; margin-bottom: 48px; }
.menu-header .section-label { padding-left: 0; }
.menu-header .section-label::before { display: none; }
.menu-intro {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}
.menu-categories {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.menu-tab {
  padding: 10px 28px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1.5px solid rgba(15,28,63,0.15);
  border-radius: 100px;
  transition: all 0.3s var(--ease);
}
.menu-tab:hover { color: var(--navy); border-color: var(--navy); }
.menu-tab.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
}
.menu-item {
  background: var(--cream);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.menu-item:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(15,28,63,0.12); }
.menu-item-img {
  height: 200px;
  overflow: hidden;
}
.menu-item-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.menu-item:hover .menu-item-img img { transform: scale(1.08); }
.menu-item-body { padding: 24px; }
.menu-item-top { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.menu-item-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
}
.menu-item-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(212,168,83,0.15);
  padding: 4px 10px;
  border-radius: 100px;
}
.menu-item-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.menu-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 40px;
  font-style: italic;
}

/* ── Gallery ─────────────────────────────────────── */
.gallery {
  padding: 120px 0;
  background: var(--cream);
}
.gallery-header { text-align: center; margin-bottom: 48px; }
.gallery-header .section-label { padding-left: 0; }
.gallery-header .section-label::before { display: none; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,28,63,0.7) 0%, transparent 50%);
  display: flex; align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
  font-style: italic;
}
.gallery-item--tall { grid-column: 1 / 5; grid-row: 1 / 3; }
.gallery-item--tall img { height: 100%; }
.gallery-item:nth-child(2) { grid-column: 5 / 9; }
.gallery-item:nth-child(3) { grid-column: 9 / 13; }
.gallery-item--wide { grid-column: 1 / 13; grid-row: 2 / 3; }
.gallery-item--wide img { height: 100%; }

/* ── Visit ───────────────────────────────────────── */
.visit {
  padding: 120px 0;
  background: var(--navy);
  color: var(--white);
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.visit .section-title { color: var(--white); }
.visit .section-label { color: var(--gold); }
.visit-intro {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 40px;
}
.visit-details { display: flex; flex-direction: column; gap: 32px; }
.visit-detail { display: flex; gap: 20px; align-items: flex-start; }
.visit-detail-icon {
  width: 48px; height: 48px;
  background: rgba(212,168,83,0.1);
  border: 1px solid rgba(212,168,83,0.2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.visit-detail-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}
.visit-detail-value {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
}
.visit-link { color: var(--gold) !important; transition: color 0.3s; }
.visit-link:hover { color: var(--gold-light); }

.visit-form-wrap {
  background: var(--navy-light);
  border: 1px solid rgba(212,168,83,0.15);
  border-radius: 12px;
  padding: 40px;
}
.form-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 8px;
}
.form-sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 32px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  color: var(--white);
  font-size: 0.95rem;
  transition: border-color 0.3s, background 0.3s;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.08);
}
.form-group select option { background: var(--navy); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-success {
  text-align: center;
  padding: 40px 20px;
}
.form-success svg { color: var(--gold); margin: 0 auto 16px; }
.form-success h4 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 12px;
}
.form-success p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* ── Map ─────────────────────────────────────────── */
.map-section { padding: 0; }
.map-container { border-radius: 0; overflow: hidden; }
.map-container iframe { width: 100%; height: 400px; }

/* ── Footer ──────────────────────────────────────── */
.footer {
  background: var(--navy-dark);
  padding: 80px 0 0;
  color: var(--white);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-brand .nav-brand { margin-bottom: 8px; }
.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 280px;
}
.footer-nav-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-nav a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  padding: 4px 0;
  transition: color 0.3s;
}
.footer-nav a:hover { color: var(--white); }
.footer-contact p,
.footer-hours p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
}
.footer-link {
  color: var(--gold) !important;
  font-size: 0.9rem;
  transition: color 0.3s;
}
.footer-link:hover { color: var(--gold-light); }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ── Scroll Animations ───────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { gap: 40px; }
  .about-grid { gap: 48px; }
  .visit-grid { gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: 280px; height: 100vh;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 40px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    box-shadow: -10px 0 40px rgba(0,0,0,0.3);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-toggle { display: flex; z-index: 101; }
  .nav-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 98;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
  }
  .nav-overlay.active { opacity: 1; visibility: visible; }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 100px;
    text-align: center;
  }
  .hero-sub { margin: 0 auto 40px; }
  .hero-actions { justify-content: center; }
  .hero-meta { justify-content: center; }
  .hero-image { order: -1; max-width: 400px; margin: 0 auto; }
  .hero-img-wrapper::before { display: none; }

  .about-grid { grid-template-columns: 1fr; }
  .about-image-wrap { max-width: 400px; margin: 0 auto; }

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

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item--tall { grid-column: 1 / -1; grid-row: auto; }
  .gallery-item:nth-child(2) { grid-column: 1 / 2; }
  .gallery-item:nth-child(3) { grid-column: 2 / 3; }
  .gallery-item--wide { grid-column: 1 / -1; }
  .gallery-item--tall img,
  .gallery-item--wide img { height: 250px; }

  .visit-grid { grid-template-columns: 1fr; }
  .visit-form-wrap { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-headline { font-size: 2rem; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .about-stats { flex-direction: column; gap: 24px; }
  .stat-divider { width: 100%; height: 1px; }
  .menu-categories { gap: 6px; }
  .menu-tab { padding: 8px 18px; font-size: 0.75rem; }
}
