/* ============================================
   B&B Antwerp For Two — Design System
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400..600;1,9..144,400..600&family=Archivo:wght@400;500;600;700&display=swap');

/* --- CSS Custom Properties --- */
:root {
  --color-background: #f5efe7;
  --color-foreground: #231c15;
  --color-muted: #ece5da;
  --color-muted-foreground: #665a4e;
  --color-primary: #d95827;
  --color-primary-foreground: #211810;
  --color-accent: #c23c3c;
  --color-accent-foreground: #f5efe7;
  --color-accent-soft: #f0e0da;
  --color-border: #ded7cc;
  --radius-sm: 2px;
  --radius-md: 6px;
  --radius-lg: 12px;
  --font-display: 'Fraunces', ui-serif, Georgia, serif;
  --font-body: 'Archivo', ui-sans-serif, system-ui, sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background-color: var(--color-background);
  color: var(--color-foreground);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.65;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img, svg { display: block; vertical-align: middle; }
img { max-width: 100%; height: auto; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: -0.01em;
  text-wrap: balance;
  font-weight: 500;
  line-height: 1.08;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.25rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.75rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); line-height: 1.2; }
::selection { background-color: var(--color-primary); color: var(--color-primary-foreground); }
:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }
main { flex: 1; }

/* --- Top Bar --- */
.top-bar {
  background-color: var(--color-foreground);
  color: color-mix(in srgb, var(--color-background) 85%, transparent);
}
.top-bar-inner {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  height: 2.25rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 1.25rem;
  font-size: 0.75rem;
}
@media (min-width: 640px) { .top-bar-inner { padding: 0 2rem; } }
.top-bar-left { display: flex; min-width: 0; align-items: center; gap: 1rem; }
.top-bar-left a {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  transition: color 0.15s;
}
.top-bar-left a:hover { color: var(--color-primary); }
.top-bar-left .email-link { display: none; }
@media (min-width: 640px) { .top-bar-left .email-link { display: flex; } }
.top-bar-right { display: flex; align-items: center; gap: 0.75rem; }
.top-bar-right a {
  transition: color 0.15s;
  display: flex;
}
.top-bar-right a:hover { color: var(--color-primary); }

/* --- Header / Nav --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--color-border);
  background-color: color-mix(in srgb, var(--color-background) 92%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.site-nav {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  height: 4rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0 1.25rem;
}
@media (min-width: 640px) { .site-nav { padding: 0 2rem; } }
.nav-logo img { height: 2.25rem; width: auto; }
.nav-links {
  display: none;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-links a {
  padding: 0.5rem 0;
  transition: color 0.15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--color-accent); }
.nav-actions { display: flex; align-items: center; gap: 0.625rem; }
.btn-book {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 9999px;
  background-color: var(--color-primary);
  color: var(--color-primary-foreground);
  border: none;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s, transform 0.3s;
  text-decoration: none;
  line-height: 1;
}
.btn-book:hover { background-color: var(--color-foreground); color: var(--color-background); }
.btn-book:active { transform: scale(0.98); }
@media (min-width: 640px) { .btn-book { display: inline-flex; } }
.mobile-menu-btn {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 1px solid var(--color-border);
  background: transparent;
  cursor: pointer;
  transition: border-color 0.15s;
}
.mobile-menu-btn:hover { border-color: var(--color-foreground); }
@media (min-width: 1024px) { .mobile-menu-btn { display: none; } }
.mobile-menu-btn svg { width: 1.25rem; height: 1.25rem; }

/* --- Mobile Menu Overlay --- */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background-color: var(--color-background);
  padding: 5rem 1.5rem 2rem;
  flex-direction: column;
  gap: 0.5rem;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 1px solid var(--color-border);
  background: transparent;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
}
.mobile-menu a {
  font-size: 1.125rem;
  font-weight: 500;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border);
  transition: color 0.15s;
}
.mobile-menu a:hover { color: var(--color-accent); }

/* --- Eyebrow Label --- */
.eyebrow {
  font-family: var(--font-body);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  display: inline-flex;
}
.eyebrow::before {
  content: "";
  background-color: var(--color-primary);
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
}
.eyebrow.eyebrow-white { color: rgba(255,255,255,0.9); }

/* --- Buttons --- */
.btn {
  font-family: var(--font-body);
  border-radius: 9999px;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s, transform 0.3s;
  display: inline-flex;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-primary-foreground);
}
.btn-primary:hover { background-color: var(--color-foreground); color: var(--color-background); }
.btn-outline {
  border: 1.5px solid color-mix(in srgb, var(--color-foreground) 35%, transparent);
  color: var(--color-foreground);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--color-foreground);
  background-color: var(--color-foreground);
  color: var(--color-background);
}
.btn-on-photo {
  color: #fff;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.85);
}
.btn-on-photo:hover {
  color: var(--color-foreground);
  background-color: #fff;
}

/* --- Link Arrow --- */
.link-arrow {
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  font-size: 0.95rem;
  font-weight: 600;
  display: inline-flex;
  position: relative;
  color: var(--color-accent);
}
.link-arrow::after {
  content: "";
  background-color: var(--color-accent);
  transform-origin: 0;
  width: 100%;
  height: 1.5px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
  bottom: -3px;
  left: 0;
  transform: scaleX(0);
}
.link-arrow:hover::after { transform: scaleX(1); }
.link-arrow svg { transition: transform 0.3s; }
.link-arrow:hover svg { transform: translate(4px); }

/* --- Ticket Cards --- */
.ticket {
  background-color: var(--color-foreground);
  color: var(--color-background);
  border-radius: var(--radius-lg);
  --ticket-hole: var(--color-background);
  background-image:
    radial-gradient(circle at left center, var(--ticket-hole) 0 0.75rem, transparent 0.8rem),
    radial-gradient(circle at right center, var(--ticket-hole) 0 0.75rem, transparent 0.8rem);
  position: relative;
  padding: 2rem;
  transition: transform 0.3s;
}
.ticket:hover { transform: translateY(-2px); }
@media (min-width: 768px) { .ticket { padding: 2.5rem; } }
.ticket-divider {
  border: none;
  border-top: 2px dashed color-mix(in srgb, var(--color-background) 25%, transparent);
  margin: 1.25rem 0;
}

/* --- Image Zoom on Hover --- */
.img-zoom { overflow: hidden; border-radius: var(--radius-lg); position: relative; }
.img-zoom img {
  transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.img-zoom:hover img { transform: scale(1.04); }

/* --- Marquee --- */
.marquee-wrap {
  overflow: hidden;
  background-color: var(--color-primary);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee-content {
  display: flex;
  align-items: center;
  padding: 0.75rem 0;
  color: var(--color-primary-foreground);
}
.marquee-content span {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-right: 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  white-space: nowrap;
}
.marquee-content .dot {
  width: 0.5rem;
  height: 0.5rem;
  background-color: color-mix(in srgb, var(--color-primary-foreground) 60%, transparent);
  flex-shrink: 0;
}
@keyframes marquee { 0% { transform: translate(0); } 100% { transform: translate(-50%); } }

/* --- Hero Section --- */
.hero {
  position: relative;
  display: flex;
  min-height: 88svh;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenburns 28s ease-in-out both;
}
@keyframes kenburns { 0% { transform: scale(1.08); } 100% { transform: scale(1); } }
.scrim-bottom {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
    to top,
    rgba(35, 28, 21, 0.78) 0%,
    rgba(35, 28, 21, 0.35) 45%,
    transparent 75%
  );
}
.hero-content {
  max-width: 80rem;
  margin: 0 auto;
  width: 100%;
  padding: 0 1.25rem;
  position: relative;
  padding-bottom: 4rem;
  padding-top: 10rem;
}
@media (min-width: 640px) { .hero-content { padding-left: 2rem; padding-right: 2rem; } }
@media (min-width: 1024px) { .hero-content { padding-left: 3rem; } }
.hero-content .eyebrow { margin-bottom: 0; }
.hero-content h1 {
  margin-top: 1rem;
  max-width: 48rem;
  color: #fff;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.15));
}
.hero-content p.hero-desc {
  margin-top: 1.25rem;
  max-width: 36rem;
  font-size: 1.125rem;
  color: rgba(255,255,255,0.85);
}
.hero-buttons {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* --- Page Hero (sub-pages) --- */
.page-hero {
  position: relative;
  display: flex;
  min-height: 50svh;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero .hero-content {
  padding-bottom: 3rem;
  padding-top: 10rem;
}
.page-hero h1 { color: #fff; filter: drop-shadow(0 1px 2px rgba(0,0,0,0.15)); }

/* --- Sections --- */
.section {
  padding: 5rem 0;
}
@media (min-width: 768px) { .section { padding: 8rem 0; } }
.section-muted { background-color: var(--color-muted); }
.section-accent-soft { background-color: var(--color-accent-soft); }
.container {
  max-width: 72rem;
  margin: 0 auto;
  width: 100%;
  padding: 0 1.25rem;
}
@media (min-width: 640px) { .container { padding-left: 2rem; padding-right: 2rem; } }
@media (min-width: 1024px) { .container { padding-left: 3rem; padding-right: 3rem; } }
.container-narrow { max-width: 48rem; }

/* --- Grid Utilities --- */
.grid-2 { display: grid; gap: 2rem; }
@media (min-width: 1024px) { .grid-2 { grid-template-columns: 1fr 1fr; } }
.grid-3 { display: grid; gap: 2rem; }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.grid-12 { display: grid; gap: 3rem; }
@media (min-width: 768px) { .grid-12 { grid-template-columns: repeat(12, 1fr); } }
.col-5 { grid-column: span 5; }
.col-7 { grid-column: span 7; }
.col-full { grid-column: 1 / -1; }
.items-center { align-items: center; }

/* --- Rule After (section header with line) --- */
.rule-after {
  align-items: center;
  gap: 1.25rem;
  display: flex;
}
.rule-after::after {
  content: "";
  background-color: var(--color-border);
  flex: 1;
  height: 1px;
}

/* --- Card Link --- */
.card-link {
  display: block;
  transition: color 0.15s;
}
.card-link:hover h3 { color: var(--color-accent); }
.card-label {
  position: absolute;
  left: 1rem;
  top: 1rem;
  border-radius: 9999px;
  background-color: color-mix(in srgb, var(--color-background) 90%, transparent);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- Room Image Grid --- */
.room-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
.room-images .main-img {
  grid-column: span 2;
  aspect-ratio: 16/10;
}
.room-images .sub-img {
  aspect-ratio: 4/3;
}

/* --- Feature List --- */
.feature-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  padding: 1.5rem 0;
  font-size: 0.875rem;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.feature-list li svg { width: 1.25rem; height: 1.25rem; color: var(--color-accent); flex-shrink: 0; }

/* --- Distance List --- */
.distance-list { max-width: 24rem; }
.distance-item {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  border-bottom: 1px solid var(--color-border);
  padding: 0.625rem 0;
  font-size: 0.875rem;
}
.distance-item svg { width: 1rem; height: 1rem; color: var(--color-accent); flex-shrink: 0; align-self: center; }
.distance-item .name { font-weight: 500; }
.distance-item .dots { flex: 1; border-bottom: 1px dotted var(--color-border); margin: 0 0.25rem; }
.distance-item .dist { color: var(--color-muted-foreground); }

/* --- Checkmark List --- */
.check-list {
  display: grid;
  gap: 0.625rem;
  font-size: 0.875rem;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.check-list li svg { width: 1rem; height: 1rem; color: var(--color-accent); flex-shrink: 0; }

/* --- FAQ Accordion --- */
.faq-group { margin-bottom: 3rem; }
.faq-group h2 { margin-bottom: 1.5rem; }
.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  color: var(--color-foreground);
  transition: background-color 0.15s;
}
.faq-question:hover { background-color: color-mix(in srgb, var(--color-muted) 50%, transparent); }
.faq-question svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 1.25rem 1.25rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-muted-foreground);
}
.faq-item.open .faq-answer { display: block; }

/* --- CTA Banner (full-width image bg) --- */
.cta-banner {
  position: relative;
  overflow: hidden;
}
.cta-banner .bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-banner .scrim-full {
  position: absolute;
  inset: 0;
  background-color: rgba(35, 28, 21, 0.4);
}
.cta-banner .cta-content {
  position: relative;
  padding: 6rem 0;
  text-align: center;
  color: #fff;
}
@media (min-width: 768px) { .cta-banner .cta-content { padding: 9rem 0; } }
.cta-banner h2 {
  max-width: 40rem;
  margin: 0 auto;
  color: #fff;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.15));
}
.cta-banner p {
  margin-top: 1rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255,255,255,0.85);
}

/* --- Footer --- */
.site-footer {
  background-color: var(--color-foreground);
  color: var(--color-background);
}
.footer-main {
  max-width: 80rem;
  margin: 0 auto;
  padding: 4rem 1.25rem;
}
@media (min-width: 640px) { .footer-main { padding-left: 2rem; padding-right: 2rem; } }
@media (min-width: 768px) { .footer-main { padding: 5rem 2rem; } }
.footer-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(12, 1fr); gap: 2rem; } }
.footer-brand { grid-column: 1 / -1; }
@media (min-width: 768px) { .footer-brand { grid-column: span 5; } }
.footer-brand img { height: 2.5rem; width: auto; }
.footer-brand .tagline {
  margin-top: 1.25rem;
  max-width: 24rem;
  color: color-mix(in srgb, var(--color-background) 75%, transparent);
}
.footer-brand .address-link {
  margin-top: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--color-background) 75%, transparent);
  transition: color 0.15s;
}
.footer-brand .address-link:hover { color: var(--color-primary); }
.footer-brand .address-link svg { margin-top: 0.125rem; flex-shrink: 0; width: 1rem; height: 1rem; }
.footer-nav {
  grid-column: 1 / -1;
}
@media (min-width: 768px) { .footer-nav { grid-column: span 2; } }
.footer-nav h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: color-mix(in srgb, var(--color-background) 50%, transparent);
  margin-bottom: 1rem;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-nav a {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--color-background) 80%, transparent);
  transition: color 0.15s;
}
.footer-nav a:hover { color: var(--color-primary); }
.footer-book {
  grid-column: 1 / -1;
}
@media (min-width: 768px) { .footer-book { grid-column: span 3; } }
.footer-book h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: color-mix(in srgb, var(--color-background) 50%, transparent);
  margin-bottom: 1rem;
}
.footer-book p {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--color-background) 80%, transparent);
}

/* --- Footer Bottom Bar --- */
.footer-bottom {
  border-top: 1px solid color-mix(in srgb, var(--color-background) 15%, transparent);
}
.footer-bottom-inner {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 1.25rem;
  font-size: 0.75rem;
  color: color-mix(in srgb, var(--color-background) 60%, transparent);
}
@media (min-width: 640px) { .footer-bottom-inner { flex-direction: row; padding-left: 2rem; padding-right: 2rem; } }
.footer-socials { display: flex; align-items: center; gap: 1rem; }
.footer-socials a {
  transition: color 0.15s;
  display: flex;
}
.footer-socials a:hover { color: var(--color-primary); }

/* --- Scroll Reveal Animation --- */
.reveal {
  opacity: 1;
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(0);
}
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(1.25rem);
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Promotions page --- */
.promo-code {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  background-color: var(--color-muted);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  margin-top: 1rem;
}

/* --- Hidden Secrets sections --- */
.secret-section { margin-bottom: 4rem; }
.secret-section h3 {
  font-family: var(--font-display);
  margin-bottom: 1rem;
}
.secret-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) { .secret-item { flex-direction: row; gap: 1.5rem; } }
.secret-item img {
  width: 100%;
  max-width: 16rem;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
}
.secret-item-text h4 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; }
.secret-item-text p { color: var(--color-muted-foreground); font-size: 0.95rem; line-height: 1.6; }
.secret-item-text a { color: var(--color-accent); font-weight: 600; }
.secret-item-text a:hover { text-decoration: underline; }

/* --- Utility --- */
.sr-only { clip-path: inset(50%); white-space: nowrap; border-width: 0; width: 1px; height: 1px; margin: -1px; padding: 0; position: absolute; overflow: hidden; }
.text-accent { color: var(--color-accent); }
.text-primary { color: var(--color-primary); }
.text-muted { color: var(--color-muted-foreground); }
.text-center { text-align: center; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-7 { margin-top: 1.75rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.max-w-prose { max-width: 65ch; }
.leading-relaxed { line-height: 1.625; }
.italic { font-style: italic; }
.font-display { font-family: var(--font-display); }
.text-xl { font-size: 1.25rem; line-height: 1.75; }
.text-3xl { font-size: 1.875rem; line-height: 2.25; }
.text-5xl { font-size: 3rem; line-height: 1; }
.font-semibold { font-weight: 600; }
