/* ============================================================
   Blue Horizon Adventures — Shared Stylesheet
   Clean & modern: white-forward with teal accents
   ============================================================ */

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

/* ── Variables ───────────────────────────────────────────── */
:root {
  --teal-400:   #2DD4BF;
  --teal-500:   #14B8A6;
  --teal-600:   #0D9488;
  --teal-700:   #0F766E;
  --teal-800:   #115E59;
  --navy:       #0C3547;
  --navy-light: #1A4A5C;
  --white:      #FFFFFF;
  --off-white:  #F8FAFB;
  --teal-tint:  #F0FDFC;
  --text-dark:  #1A2E3B;
  --text-mid:   #4B6578;
  --text-light: #8FA3B1;
  --border:     #E2EBF0;
  --shadow-sm:  0 1px 3px rgba(12,53,71,.08);
  --shadow-md:  0 4px 16px rgba(12,53,71,.12);
  --shadow-lg:  0 12px 40px rgba(12,53,71,.16);
  --radius:     6px;
  --radius-lg:  12px;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
  --max-w:      1140px;
  --section-py: clamp(60px, 8vw, 100px);
  --nav-h:      70px;
  --safe-top:   env(safe-area-inset-top, 0px);
  --nav-offset: calc(var(--nav-h) + var(--safe-top));
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ──────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); }

.serif { font-family: var(--font-serif); }
.italic { font-style: italic; }

p { margin-bottom: 1.2rem; color: var(--text-mid); }
p:last-child { margin-bottom: 0; }

/* ── Layout helpers ──────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}
.section { padding: var(--section-py) 0; }
.section--teal { background: var(--teal-tint); }
.section--navy { background: var(--navy); }
.section--off  { background: var(--off-white); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.text-center { text-align: center; }
.text-white  { color: var(--white); }
.text-teal   { color: var(--teal-600); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 14px;
}
.eyebrow--white { color: #ffffff; }

.section-heading { margin-bottom: 20px; }
.section-intro {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 640px;
  margin: 0 auto 48px;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: .02em;
  cursor: pointer;
  transition: all .2s ease;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--teal-600);
  color: var(--white);
  border-color: var(--teal-600);
}
.btn-primary:hover { background: var(--teal-700); border-color: var(--teal-700); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.7);
}
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: var(--white); }

.btn-outline-teal {
  background: transparent;
  color: var(--teal-600);
  border-color: var(--teal-600);
}
.btn-outline-teal:hover { background: var(--teal-600); color: var(--white); }

.btn-lg { padding: 18px 40px; font-size: 1rem; }

/* ── Navigation ──────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
  padding-top: var(--safe-top);
}
.site-nav.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img { height: 40px; width: auto; }
.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--navy);
  font-weight: 600;
  letter-spacing: .01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: .02em;
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--teal-500);
  transform: scaleX(0);
  transition: transform .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--teal-600); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta { margin-left: 8px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: all .3s;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-offset); left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 20px clamp(20px, 5vw, 60px) 28px;
  z-index: 999;
  box-shadow: var(--shadow-lg);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-child { border-bottom: none; }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(12,53,71,.82) 0%,
    rgba(12,53,71,.55) 50%,
    rgba(12,53,71,.25) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  color: var(--white);
  padding-top: var(--nav-offset);
}
.hero-content h1 { color: var(--white); margin-bottom: 24px; }
.hero-content p { color: rgba(255,255,255,.85); font-size: 1.15rem; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Page hero (interior pages) */
.page-hero {
  padding-top: var(--nav-offset);
  position: relative;
  height: clamp(260px, 40vw, 420px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,53,71,.85) 0%, rgba(12,53,71,.35) 60%, transparent 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 48px;
  color: var(--white);
}
.page-hero-content h1 { color: var(--white); }
.page-hero-content p { color: rgba(255,255,255,.8); font-size: 1.1rem; margin-top: 10px; }

/* ── Cards ───────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: box-shadow .25s, transform .25s;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card-img { width: 100%; height: 220px; object-fit: cover; }
.card-body { padding: 28px; }
.card-body h3 { font-size: 1.4rem; margin-bottom: 10px; }
.card-body p { font-size: .95rem; }

/* Destination card */
.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.dest-card:hover img { transform: scale(1.05); }
.dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,53,71,.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.dest-card-overlay h4 { color: var(--white); font-size: 1.3rem; }
.dest-card-overlay p { color: rgba(255,255,255,.75); font-size: .85rem; margin: 4px 0 0; }

/* Feature icon block */
.feature {
  text-align: center;
  padding: 32px 20px;
}
.feature-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  line-height: 1;
}
.feature h3 { font-size: 1.3rem; margin-bottom: 10px; }
.feature p { font-size: .95rem; }

/* ── Testimonial ─────────────────────────────────────────── */
.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.testimonial blockquote {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--navy);
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial cite {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-style: normal;
}

/* ── Charter listing ─────────────────────────────────────── */
.charter-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: start;
  transition: box-shadow .2s;
}
.charter-item:hover { box-shadow: var(--shadow-md); }
.charter-item + .charter-item { margin-top: 20px; }
.charter-year-heading {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--teal-600);
  margin: 48px 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}
.charter-meta { display: flex; flex-wrap: wrap; gap: 10px; margin: 12px 0 16px; }
.charter-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
}
.tag-available  { background: #DCFCE7; color: #166534; }
.tag-sold-out   { background: #FEE2E2; color: #991B1B; }
.tag-completed  { background: var(--border); color: var(--text-light); }
.tag-coming-soon { background: #FEF9C3; color: #713F12; }
.charter-dates { font-weight: 600; color: var(--navy); font-size: 1rem; }
.charter-desc { font-size: .95rem; color: var(--text-mid); margin-top: 8px; }

/* ── Dividers ────────────────────────────────────────────── */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ── Accordion (FAQ) ─────────────────────────────────────── */
.accordion-item {
  border-bottom: 1px solid var(--border);
}
.accordion-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
}
.accordion-toggle .icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--teal-500);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-600);
  font-size: .9rem;
  transition: transform .3s;
}
.accordion-toggle.open .icon { transform: rotate(45deg); }
.accordion-body { display: none; padding-bottom: 22px; }
.accordion-body p { font-size: .97rem; }
.accordion-body.open { display: block; }

/* ── Side-by-side photo + text ───────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.split-img { position: relative; overflow: hidden; min-height: 460px; }
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.split-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 80px);
}
.split-body h2 { margin-bottom: 20px; }
.split-body p { margin-bottom: 16px; }
.split--reverse .split-img { order: 1; }
.split--reverse .split-body { order: 0; }

/* ── Stat row ────────────────────────────────────────────── */
.stat-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 48px;
  padding: 48px 0;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: var(--teal-500);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 6px;
}

/* ── Anchor nav (resources page) ─────────────────────────── */
.anchor-nav {
  position: sticky;
  top: var(--nav-offset);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  padding: 0;
}
.anchor-nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  display: flex;
  gap: 0;
  overflow-x: auto;
}
.anchor-nav a {
  padding: 16px 20px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-mid);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all .2s;
}
.anchor-nav a:hover,
.anchor-nav a.active { color: var(--teal-600); border-bottom-color: var(--teal-500); }

/* ── Inline highlight box ────────────────────────────────── */
.highlight-box {
  background: var(--teal-tint);
  border-left: 4px solid var(--teal-500);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 24px 0;
}
.highlight-box p { color: var(--text-dark); margin: 0; }

/* ── Profile card (guides) ───────────────────────────────── */
.profile-card {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 48px;
}
.profile-card--reverse { direction: rtl; }
.profile-card--reverse > * { direction: ltr; }
.profile-photo { position: relative; }
.profile-photo img { width: 100%; height: 100%; object-fit: cover; min-height: 400px; }
.profile-body { padding: clamp(32px, 4vw, 52px); display: flex; flex-direction: column; justify-content: center; }
.profile-body h2 { margin-bottom: 6px; }
.profile-role {
  font-size: .85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--teal-600);
  margin-bottom: 20px;
}
.profile-body p { font-size: .98rem; }
.cred-list { margin-top: 20px; }
.cred-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: .92rem;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
}
.cred-list li:last-child { border-bottom: none; }
.cred-icon { color: var(--teal-500); flex-shrink: 0; margin-top: 2px; }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.65);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand h3 {
  font-family: var(--font-serif);
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.footer-brand p { font-size: .9rem; line-height: 1.7; color: rgba(255,255,255,.55); }
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal-400);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 10px;
  transition: color .2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.35); margin: 0; }
.footer-email a {
  color: var(--teal-400);
  font-size: .9rem;
  font-weight: 500;
}
.footer-email a:hover { color: var(--teal-300); }

/* ── Day itinerary (accordion-style) ────────────────────── */
.itinerary-day {
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.itinerary-toggle {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  cursor: pointer;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
}
.day-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal-tint);
  border: 2px solid var(--teal-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--teal-700);
  font-weight: 600;
}
.itinerary-toggle h4 {
  font-size: 1.05rem;
  color: var(--navy);
  font-family: var(--font-sans);
  font-weight: 600;
}
.itinerary-toggle .toggle-icon {
  margin-left: auto;
  color: var(--teal-500);
  font-size: 1.2rem;
  transition: transform .3s;
}
.itinerary-toggle.open .toggle-icon { transform: rotate(90deg); }
.itinerary-body { display: none; padding: 0 0 28px 64px; }
.itinerary-body.open { display: block; }
.itinerary-body p { font-size: .97rem; }

/* ── Packing list ────────────────────────────────────────── */
.packing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-top: 32px; }
.packing-section h3 { font-size: 1.1rem; font-family: var(--font-sans); font-weight: 600; margin-bottom: 14px; color: var(--navy); }
.packing-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  font-size: .93rem;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}
.packing-list li:last-child { border-bottom: none; }
.check { color: var(--teal-500); flex-shrink: 0; margin-top: 3px; }
.x-mark { color: #EF4444; flex-shrink: 0; margin-top: 3px; }

/* ── Cost table ──────────────────────────────────────────── */
.cost-table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: .95rem; }
.cost-table th {
  text-align: left;
  padding: 12px 16px;
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.cost-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); color: var(--text-mid); }
.cost-table tr:last-child td { border-bottom: none; }
.cost-table tr:hover td { background: var(--teal-tint); }
.cost-table .total-row td { font-weight: 700; color: var(--navy); background: var(--teal-tint); font-size: 1rem; }

/* ── Contact form ────────────────────────────────────────── */
.contact-form { max-width: 600px; margin: 0 auto; }
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: .02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: .97rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal-500);
  box-shadow: 0 0 0 3px rgba(20,184,166,.12);
}
.form-group textarea { min-height: 140px; resize: vertical; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 960px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split-img { min-height: 320px; }
  .split--reverse .split-img { order: 0; }
  .split--reverse .split-body { order: 1; }
  .profile-card { grid-template-columns: 1fr; }
  .profile-card--reverse { direction: ltr; }
  .profile-photo img { min-height: 300px; max-height: 380px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .grid-2 { grid-template-columns: 1fr; gap: 32px; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-content { max-width: 100%; }
  .charter-item { grid-template-columns: 1fr; }
  .packing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stat-row { gap: 32px; }
  .itinerary-body { padding-left: 20px; }
  .page-hero {
    padding-top: max(90px, calc(70px + env(safe-area-inset-top, 20px)));
    height: clamp(300px, 50vw, 420px);
  }
  .hero-content { padding-top: max(90px, calc(70px + env(safe-area-inset-top, 20px))); }
}

/* ── Utilities ───────────────────────────────────────────── */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
