/* ============================================================
 * Hajzak — Production Stylesheet
 * Design tokens from tokens.css + page-level styles
 * ============================================================ */

:root {
  /* — Brand palette — */
  --hz-ink:        #1A1F22;
  --hz-ink-2:      #4B5258;
  --hz-ink-3:      #7C848A;
  --hz-cream:      #FAF6EE;
  --hz-paper:      #F4ECDD;
  --hz-paper-2:    #EBE0CA;
  --hz-line:       rgba(26, 31, 34, 0.10);
  --hz-line-2:     rgba(26, 31, 34, 0.18);

  --hz-teal-900:   #0A3640;
  --hz-teal-700:   #0E4D5C;
  --hz-teal-500:   #1B6B7A;
  --hz-teal-200:   #BFD3D6;
  --hz-teal-50:    #E6EDEE;

  --hz-sand-700:   #A07B4F;
  --hz-sand-500:   #D4A574;
  --hz-sand-300:   #E6CDA6;
  --hz-sand-100:   #F2E5CC;

  --hz-terra:      #B8553D;
  --hz-terra-50:   #F6E2DA;
  --hz-olive:      #6B7A4E;
  --hz-olive-50:   #E4E8D8;

  /* — Type — */
  --hz-display:    "Newsreader", "Source Serif Pro", Georgia, serif;
  --hz-body:       "Plus Jakarta Sans", -apple-system, "Segoe UI", system-ui, sans-serif;
  --hz-mono:       "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --hz-arabic:     "Cairo", "IBM Plex Sans Arabic", "Tajawal", system-ui, sans-serif;

  /* — Radius — */
  --hz-r-1: 4px;
  --hz-r-2: 8px;
  --hz-r-3: 12px;
  --hz-r-4: 16px;
  --hz-r-pill: 999px;

  /* — Shadow — */
  --hz-shadow-1: 0 1px 2px rgba(26,31,34,.06), 0 1px 1px rgba(26,31,34,.04);
  --hz-shadow-2: 0 6px 18px -8px rgba(26,31,34,.18), 0 2px 4px rgba(26,31,34,.04);
  --hz-shadow-3: 0 24px 60px -20px rgba(10,54,64,.25), 0 8px 16px -8px rgba(26,31,34,.08);

  /* — Space scale — */
  --hz-s-1:  4px;
  --hz-s-2:  8px;
  --hz-s-3: 12px;
  --hz-s-4: 16px;
  --hz-s-5: 24px;
  --hz-s-6: 32px;
  --hz-s-7: 48px;
  --hz-s-8: 64px;
  --hz-s-9: 96px;
  --hz-s-10: 128px;
}

/* ============================================================
 * Reset & base
 * ============================================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--hz-cream);
  color: var(--hz-ink);
  font-family: var(--hz-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
  letter-spacing: -0.005em;
}

h1, h2, h3, h4, h5, h6 { margin: 0; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

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

.hz-display { font-family: var(--hz-display); font-weight: 400; letter-spacing: -0.02em; }
.hz-mono    { font-family: var(--hz-mono); font-feature-settings: "ss01"; }
.hz-ar      { font-family: var(--hz-arabic); }

.hz-eyebrow {
  font-family: var(--hz-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hz-ink-2);
}

/* ============================================================
 * Layout — page container, sections
 * ============================================================ */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--hz-s-6);
}

@media (max-width: 768px) {
  .container { padding: 0 var(--hz-s-5); }
}

section {
  padding: var(--hz-s-9) 0;
}

@media (max-width: 768px) {
  section { padding: var(--hz-s-8) 0; }
}

.section-tight { padding: var(--hz-s-7) 0; }

.section-header {
  margin-bottom: var(--hz-s-7);
  max-width: 720px;
}

.section-header h2 {
  font-family: var(--hz-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-top: var(--hz-s-3);
}

.section-header p {
  font-size: 17px;
  color: var(--hz-ink-2);
  margin-top: var(--hz-s-4);
  max-width: 580px;
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 238, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hz-line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--hz-s-4) 0;
  gap: var(--hz-s-6);
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.nav-brand-wordmark {
  font-family: var(--hz-display);
  font-size: 26px;
  letter-spacing: -0.025em;
  line-height: 1;
}

.nav-brand-ar {
  font-family: var(--hz-arabic);
  font-size: 22px;
  font-weight: 600;
  color: var(--hz-teal-700);
  line-height: 1;
  direction: rtl;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--hz-s-6);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--hz-ink-2);
  transition: color 0.15s;
  position: relative;
}

.nav-links a:hover { color: var(--hz-teal-700); }
.nav-links a.active { color: var(--hz-ink); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -6px; left: 0; right: 0;
  height: 2px;
  background: var(--hz-sand-500);
  border-radius: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--hz-s-3);
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: inline-flex; }
}

@media (min-width: 901px) {
  .nav-mobile-toggle { display: none; }
}

.nav-mobile-toggle {
  width: 40px; height: 40px;
  border-radius: var(--hz-r-2);
  border: 1px solid var(--hz-line-2);
  background: transparent;
  align-items: center; justify-content: center;
}

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--hz-cream);
  z-index: 200;
  flex-direction: column;
  padding: var(--hz-s-5);
}

.nav-drawer.open { display: flex; }

.nav-drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--hz-s-7);
}

.nav-drawer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--hz-s-5);
}

.nav-drawer-links a {
  font-family: var(--hz-display);
  font-size: 32px;
  letter-spacing: -0.02em;
}

/* ============================================================
 * Buttons (from design system)
 * ============================================================ */

.hz-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--hz-r-2);
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.005em;
  transition: transform .12s, background .15s, box-shadow .15s, border-color .15s;
  white-space: nowrap;
  font-family: var(--hz-body);
}
.hz-btn:active { transform: translateY(1px); }

.hz-btn-primary { background: var(--hz-teal-700); color: var(--hz-cream); }
.hz-btn-primary:hover { background: var(--hz-teal-500); }

.hz-btn-secondary { background: var(--hz-cream); color: var(--hz-ink); border-color: var(--hz-line-2); }
.hz-btn-secondary:hover { background: var(--hz-paper); }

.hz-btn-ghost { background: transparent; color: var(--hz-ink); }
.hz-btn-ghost:hover { background: var(--hz-line); }

.hz-btn-accent { background: var(--hz-sand-500); color: #2a1d0e; }
.hz-btn-accent:hover { background: var(--hz-sand-300); }

.hz-btn-sm { padding: 8px 14px; font-size: 13px; }
.hz-btn-lg { padding: 16px 26px; font-size: 15px; }

/* ============================================================
 * Inputs
 * ============================================================ */

.hz-input {
  display: block;
  width: 100%;
  padding: 12px 14px;
  background: var(--hz-cream);
  border: 1px solid var(--hz-line-2);
  border-radius: var(--hz-r-2);
  font: inherit;
  color: var(--hz-ink);
  transition: border-color .15s, box-shadow .15s;
}

.hz-input:focus {
  outline: none;
  border-color: var(--hz-teal-700);
  box-shadow: 0 0 0 3px var(--hz-teal-50);
}

.hz-input::placeholder { color: var(--hz-ink-3); }

.hz-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hz-ink-2);
  margin-bottom: 6px;
}

.hz-input-with-icon {
  position: relative;
}

.hz-input-with-icon svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--hz-ink-3);
  pointer-events: none;
}

.hz-input-with-icon .hz-input { padding-left: 42px; }

textarea.hz-input {
  min-height: 140px;
  resize: vertical;
  font-family: var(--hz-body);
}

/* ============================================================
 * Badges
 * ============================================================ */

.hz-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--hz-r-pill);
  background: var(--hz-paper);
  color: var(--hz-ink-2);
  border: 1px solid var(--hz-line);
}

.hz-badge-teal  { background: var(--hz-teal-50); color: var(--hz-teal-700); border-color: transparent; }
.hz-badge-sand  { background: var(--hz-sand-100); color: var(--hz-sand-700); border-color: transparent; }
.hz-badge-terra { background: var(--hz-terra-50); color: var(--hz-terra); border-color: transparent; }
.hz-badge-olive { background: var(--hz-olive-50); color: var(--hz-olive); border-color: transparent; }
.hz-badge-ink   { background: var(--hz-ink); color: var(--hz-cream); border-color: transparent; }

/* ============================================================
 * Cards
 * ============================================================ */

.hz-card {
  background: var(--hz-cream);
  border: 1px solid var(--hz-line);
  border-radius: var(--hz-r-3);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.hz-card-hover:hover {
  transform: translateY(-4px);
  box-shadow: var(--hz-shadow-3);
}

.hz-hr { height: 1px; background: var(--hz-line); border: 0; margin: 0; }

/* Striped placeholder for imagery */
.hz-ph {
  background:
    repeating-linear-gradient(135deg,
      rgba(26,31,34,0.05) 0 8px,
      rgba(26,31,34,0.02) 8px 16px),
    var(--hz-paper-2);
  position: relative;
  overflow: hidden;
}

.hz-ph::after {
  content: attr(data-ph);
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--hz-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(26,31,34,0.55);
  text-align: center;
  padding: var(--hz-s-3);
}

/* Dotted travel line */
.hz-dotline {
  flex: 1;
  min-width: 24px;
  background-image: radial-gradient(circle, var(--hz-ink-3) 1px, transparent 1.5px);
  background-size: 6px 2px;
  background-repeat: repeat-x;
  background-position: center;
  height: 2px;
}

/* ============================================================
 * Hero
 * ============================================================ */

.hero {
  position: relative;
  padding: var(--hz-s-10) 0 var(--hz-s-9);
  overflow: hidden;
}

.hero-bg-circle-1 {
  position: absolute;
  right: -120px; top: -80px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: var(--hz-paper-2);
  opacity: 0.5;
  z-index: 0;
}

.hero-bg-circle-2 {
  position: absolute;
  right: 80px; top: 100px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: var(--hz-sand-100);
  z-index: 0;
}

.hero > .container { position: relative; z-index: 1; }

.hero h1 {
  font-family: var(--hz-display);
  font-size: clamp(56px, 9vw, 144px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: var(--hz-s-4);
}

.hero h1 em {
  font-style: italic;
  color: var(--hz-teal-700);
}

.hero-arabic {
  font-family: var(--hz-arabic);
  font-size: clamp(40px, 6vw, 80px);
  color: var(--hz-teal-700);
  line-height: 1;
  margin-bottom: var(--hz-s-6);
  font-weight: 600;
  direction: rtl;
}

.hero-tagline {
  font-family: var(--hz-display);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 28px);
  color: var(--hz-ink-2);
  letter-spacing: -0.015em;
  max-width: 640px;
  margin-bottom: var(--hz-s-7);
}

/* Smaller hero for inner pages */
.hero-inner {
  padding: var(--hz-s-9) 0 var(--hz-s-7);
}

.hero-inner h1 {
  font-size: clamp(48px, 7vw, 96px);
}

/* ============================================================
 * Booking Widget (hero search)
 * ============================================================ */

.booking-widget {
  background: var(--hz-cream);
  border-radius: var(--hz-r-4);
  box-shadow: var(--hz-shadow-3);
  border: 1px solid var(--hz-line);
  padding: var(--hz-s-5);
  max-width: 920px;
  margin-top: var(--hz-s-6);
}

.booking-tabs {
  display: inline-flex;
  gap: 4px;
  background: var(--hz-paper);
  padding: 4px;
  border-radius: var(--hz-r-pill);
  border: 1px solid var(--hz-line);
  margin-bottom: var(--hz-s-4);
  flex-wrap: wrap;
}

.booking-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--hz-r-pill);
  border: 0;
  background: transparent;
  color: var(--hz-ink-2);
  font-weight: 600;
  font-size: 13px;
  transition: background .15s, color .15s;
  font-family: var(--hz-body);
}

.booking-tab.active {
  background: var(--hz-ink);
  color: var(--hz-cream);
}

.booking-fields {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1fr 1fr 0.8fr auto;
  gap: var(--hz-s-2);
  align-items: end;
}

@media (max-width: 1000px) {
  .booking-fields {
    grid-template-columns: 1fr 1fr;
  }
  .booking-fields > .hz-btn { grid-column: 1 / -1; }
}

@media (max-width: 500px) {
  .booking-fields { grid-template-columns: 1fr; }
}

/* ============================================================
 * Grids
 * ============================================================ */

.grid {
  display: grid;
  gap: var(--hz-s-5);
}

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

@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ============================================================
 * Destination / Tour cards
 * ============================================================ */

.dest-card {
  background: var(--hz-cream);
  border: 1px solid var(--hz-line);
  border-radius: var(--hz-r-3);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}

.dest-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--hz-shadow-3);
}

.dest-card-image {
  height: 240px;
  position: relative;
}

.dest-card-image .hz-badge {
  position: absolute;
  top: 12px; left: 12px;
}

.dest-card-body {
  padding: var(--hz-s-5);
  display: flex;
  flex-direction: column;
  gap: var(--hz-s-3);
  flex: 1;
}

.dest-card-title {
  font-family: var(--hz-display);
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.dest-card-meta {
  font-size: 13px;
  color: var(--hz-ink-2);
  display: flex;
  align-items: center;
  gap: 8px;
}

.dest-card-desc {
  font-size: 14px;
  color: var(--hz-ink-2);
  line-height: 1.6;
}

.dest-card-footer {
  margin-top: auto;
  padding-top: var(--hz-s-4);
  border-top: 1px solid var(--hz-line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  font-family: var(--hz-display);
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}

.price-from {
  font-size: 11px;
  font-family: var(--hz-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--hz-ink-3);
}

.price-currency {
  font-size: 13px;
  color: var(--hz-ink-2);
}

.price-value {
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.02em;
}

.price-lg .price-value { font-size: 32px; }

/* ============================================================
 * Value props / feature grid
 * ============================================================ */

.value-item {
  display: flex;
  flex-direction: column;
  gap: var(--hz-s-3);
}

.value-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--hz-r-3);
  background: var(--hz-teal-50);
  color: var(--hz-teal-700);
  display: grid;
  place-items: center;
  margin-bottom: var(--hz-s-2);
}

.value-item h3 {
  font-family: var(--hz-display);
  font-size: 22px;
  letter-spacing: -0.015em;
  line-height: 1.15;
}

.value-item p {
  font-size: 15px;
  color: var(--hz-ink-2);
  line-height: 1.6;
}

/* ============================================================
 * CTA section
 * ============================================================ */

.cta {
  background: var(--hz-teal-900);
  color: var(--hz-cream);
  border-radius: var(--hz-r-4);
  padding: var(--hz-s-9) var(--hz-s-7);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  right: -100px; top: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(212, 165, 116, 0.1);
}

.cta h2 {
  font-family: var(--hz-display);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: var(--hz-s-4);
  position: relative;
}

.cta p {
  font-size: 17px;
  opacity: 0.85;
  max-width: 540px;
  margin: 0 auto var(--hz-s-6);
  position: relative;
}

.cta-buttons {
  display: inline-flex;
  gap: var(--hz-s-3);
  position: relative;
  flex-wrap: wrap;
  justify-content: center;
}

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

.site-footer {
  background: var(--hz-ink);
  color: var(--hz-cream);
  padding: var(--hz-s-8) 0 var(--hz-s-6);
  margin-top: var(--hz-s-9);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--hz-s-7);
  margin-bottom: var(--hz-s-7);
}

@media (max-width: 800px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--hz-s-3);
}

.footer-wordmark {
  font-family: var(--hz-display);
  font-size: 32px;
  letter-spacing: -0.025em;
  line-height: 1;
}

.footer-ar {
  font-family: var(--hz-arabic);
  font-size: 24px;
  font-weight: 600;
  color: var(--hz-sand-500);
  direction: rtl;
  line-height: 1;
}

.footer-tagline {
  font-family: var(--hz-display);
  font-style: italic;
  font-size: 17px;
  opacity: 0.7;
  margin-top: var(--hz-s-3);
  max-width: 320px;
}

.footer-col h4 {
  font-family: var(--hz-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: var(--hz-s-3);
  font-weight: 500;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--hz-s-2);
}

.footer-col a {
  font-size: 14px;
  opacity: 0.8;
  transition: opacity 0.15s;
}

.footer-col a:hover { opacity: 1; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--hz-s-5);
  border-top: 1px solid rgba(250, 246, 238, 0.1);
  font-size: 13px;
  opacity: 0.6;
  flex-wrap: wrap;
  gap: var(--hz-s-3);
}

/* ============================================================
 * Page-specific: About
 * ============================================================ */

.about-bridge {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--hz-s-7);
  align-items: center;
  padding: var(--hz-s-8) 0;
  border-top: 1px solid var(--hz-line);
  border-bottom: 1px solid var(--hz-line);
}

@media (max-width: 800px) {
  .about-bridge { grid-template-columns: 1fr; }
}

.about-bridge-ar {
  font-family: var(--hz-arabic);
  font-size: clamp(80px, 12vw, 160px);
  color: var(--hz-teal-700);
  font-weight: 600;
  line-height: 1;
  direction: rtl;
}

.about-bridge-en {
  font-family: var(--hz-display);
  font-style: italic;
  font-size: 22px;
  color: var(--hz-ink-2);
  line-height: 1.5;
  max-width: 480px;
}

.about-bridge-en strong {
  font-weight: 500;
  font-style: normal;
  color: var(--hz-ink);
}

/* ============================================================
 * Page-specific: Contact
 * ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--hz-s-8);
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--hz-s-4);
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--hz-s-4);
}

@media (max-width: 600px) {
  .contact-form-row { grid-template-columns: 1fr; }
}

.contact-info {
  background: var(--hz-paper);
  border-radius: var(--hz-r-3);
  padding: var(--hz-s-6);
  display: flex;
  flex-direction: column;
  gap: var(--hz-s-5);
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: var(--hz-s-1);
}

.contact-info-item .label {
  font-family: var(--hz-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hz-ink-3);
}

.contact-info-item .value {
  font-family: var(--hz-display);
  font-size: 20px;
  letter-spacing: -0.015em;
}

/* ============================================================
 * Filter bar (Tours, Destinations)
 * ============================================================ */

.filter-bar {
  display: flex;
  gap: var(--hz-s-2);
  flex-wrap: wrap;
  margin-bottom: var(--hz-s-6);
  padding-bottom: var(--hz-s-5);
  border-bottom: 1px solid var(--hz-line);
}

.filter-chip {
  padding: 8px 16px;
  border-radius: var(--hz-r-pill);
  border: 1px solid var(--hz-line-2);
  background: transparent;
  font-size: 13px;
  font-weight: 500;
  color: var(--hz-ink-2);
  transition: all 0.15s;
  font-family: var(--hz-body);
}

.filter-chip:hover {
  border-color: var(--hz-ink);
  color: var(--hz-ink);
}

.filter-chip.active {
  background: var(--hz-ink);
  color: var(--hz-cream);
  border-color: var(--hz-ink);
}

/* ============================================================
 * Animations
 * ============================================================ */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  animation: fadeUp 0.7s ease-out backwards;
}

.fade-up-1 { animation-delay: 0.05s; }
.fade-up-2 { animation-delay: 0.15s; }
.fade-up-3 { animation-delay: 0.25s; }
.fade-up-4 { animation-delay: 0.35s; }

/* ============================================================
 * Utilities
 * ============================================================ */

.text-center { text-align: center; }
.mt-s4 { margin-top: var(--hz-s-4); }
.mt-s5 { margin-top: var(--hz-s-5); }
.mt-s6 { margin-top: var(--hz-s-6); }
.mt-s7 { margin-top: var(--hz-s-7); }
.flex-row { display: flex; gap: var(--hz-s-3); flex-wrap: wrap; }

/* Sr-only */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
