/* ============================================================
   Reedy 24 Translate — Static HTML/CSS
   Design: Neo-Modernist Editorial
   Colors: Navy #0A2540, Teal #00B8A9, Gold #F4B942, Warm-White #F8F9FB
   Fonts: DM Serif Display (headings), DM Sans (body)
   ============================================================ */

/* --- Self-hosted Fonts (no CDN) --- */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/dm-sans-latin.woff2') format('woff2'),
       url('fonts/dm-sans-latin-ext.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/dm-sans-italic-latin.woff2') format('woff2'),
       url('fonts/dm-sans-italic-latin-ext.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Serif Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/dm-serif-latin.woff2') format('woff2'),
       url('fonts/dm-serif-latin-ext.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Serif Display';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/dm-serif-italic-latin.woff2') format('woff2'),
       url('fonts/dm-serif-italic-latin-ext.woff2') format('woff2');
}

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: #333;
  background: #F8F9FB;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}
h1, h2, h3, h4, h5, h6 { font-family: 'DM Serif Display', Georgia, serif; line-height: 1.15; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button, input, textarea, select { font-family: inherit; font-size: inherit; }

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #eee; }
::-webkit-scrollbar-thumb { background: #00B8A9; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #009a8d; }

/* --- Layout --- */
.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; max-width: 1280px; } }

/* --- Color Utilities --- */
.bg-navy { background-color: #0A2540; }
.bg-teal { background-color: #00B8A9; }
.bg-gold { background-color: #F4B942; }
.bg-warm-white { background-color: #F8F9FB; }
.bg-white { background-color: #fff; }
.text-navy { color: #0A2540; }
.text-teal { color: #00B8A9; }
.text-gold { color: #F4B942; }
.text-soft-gray { color: #6B7280; }
.text-white { color: #fff; }

/* --- Navbar --- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: transparent;
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  border-bottom: 1px solid #e5e7eb;
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 96px;
}
@media (min-width: 1024px) { .navbar-inner { height: 112px; } }
.navbar-logo img { height: 88px; width: auto; }
.nav-links { display: none; align-items: center; gap: 2rem; }
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-links a {
  font-size: 0.8125rem; font-weight: 500; letter-spacing: 0.05em;
  text-transform: uppercase; color: rgba(10,37,64,0.8);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: #00B8A9; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: #00B8A9; color: #fff; padding: 0.625rem 1.5rem;
  border-radius: 2px; font-size: 0.8125rem; font-weight: 500;
  letter-spacing: 0.05em; border: none; cursor: pointer;
  transition: background 0.2s;
}
.nav-cta:hover { background: #009a8d; }

/* Mobile menu */
.mobile-toggle {
  display: block; background: none; border: none; cursor: pointer;
  color: #0A2540; font-size: 1.5rem; padding: 0.5rem;
}
@media (min-width: 1024px) { .mobile-toggle { display: none; } }
.mobile-menu {
  display: none; background: #fff; border-top: 1px solid #e5e7eb;
  padding: 1.5rem 1rem;
}
.mobile-menu.open { display: block; }
@media (min-width: 1024px) { .mobile-menu { display: none !important; } }
.mobile-menu a {
  display: block; padding: 0.75rem 1rem; font-size: 0.875rem;
  font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em;
  color: #0A2540; border-radius: 2px; transition: all 0.2s;
}
.mobile-menu a:hover, .mobile-menu a.active { color: #00B8A9; background: rgba(0,184,169,0.05); }
.mobile-menu .nav-cta { width: 100%; justify-content: center; margin-top: 1rem; }

/* --- SVG Icons (inline) --- */
.icon { width: 1.25rem; height: 1.25rem; display: inline-block; vertical-align: middle; }
.icon-sm { width: 1rem; height: 1rem; }
.icon-lg { width: 1.5rem; height: 1.5rem; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 2rem; border-radius: 2px;
  font-size: 0.8125rem; font-weight: 500; letter-spacing: 0.05em;
  border: none; cursor: pointer; transition: all 0.2s;
  text-decoration: none;
}
.btn-teal { background: #00B8A9; color: #fff; }
.btn-teal:hover { background: #009a8d; }
.btn-navy { background: #0A2540; color: #fff; }
.btn-navy:hover { background: #0d3055; }
.btn-gold { background: #F4B942; color: #0A2540; }
.btn-gold:hover { background: #e5a830; }
.btn-outline {
  background: transparent; border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-outline-navy {
  background: transparent; border: 1px solid rgba(10,37,64,0.2);
  color: #0A2540;
}
.btn-outline-navy:hover { background: #0A2540; color: #fff; }
.btn-full { width: 100%; justify-content: center; }
.btn-lg { padding: 1rem 2rem; }

/* --- Section Spacing --- */
.section-pad { padding: 5rem 0; }
@media (min-width: 1024px) { .section-pad { padding: 7rem 0; } }
.section-pad-sm { padding: 4rem 0; }
@media (min-width: 1024px) { .section-pad-sm { padding: 6rem 0; } }

/* --- Accent Line --- */
.accent-line {
  display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem;
}
.accent-line .line { height: 1px; width: 3rem; background: #00B8A9; }
.accent-line span {
  color: #00B8A9; font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase;
}
.accent-line-gold .line { background: #F4B942; }
.accent-line-gold span { color: #F4B942; }

/* --- Hero Sections --- */
.hero-main {
  position: relative; min-height: 90vh;
  display: flex; align-items: center; overflow: hidden;
}
.hero-main .hero-bg {
  position: absolute; inset: 0;
}
.hero-main .hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-main .hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,37,64,0.95), rgba(10,37,64,0.8), rgba(10,37,64,0.5));
}
.hero-page { padding-top: 7rem; padding-bottom: 4rem; }
@media (min-width: 1024px) { .hero-page { padding-top: 9rem; padding-bottom: 6rem; } }
.hero-content { position: relative; z-index: 10; padding-top: 6rem; }
@media (min-width: 1024px) { .hero-content { padding-top: 0; } }
.hero-title {
  font-size: 2.25rem; color: #fff; line-height: 1.1; margin-bottom: 1.5rem;
}
@media (min-width: 640px) { .hero-title { font-size: 3rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 3.75rem; } }
@media (min-width: 1280px) { .hero-title { font-size: 4.5rem; } }
.hero-title .teal { color: #00B8A9; font-style: italic; }
.hero-subtitle {
  color: rgba(255,255,255,0.7); font-size: 1.125rem; max-width: 36rem;
  line-height: 1.7; margin-bottom: 2rem;
}
@media (min-width: 1024px) { .hero-subtitle { font-size: 1.25rem; } }

/* Trust indicators */
.trust-row {
  display: flex; align-items: center; gap: 2rem; margin-top: 3rem;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.5); font-size: 0.875rem;
}
.trust-item svg { color: #00B8A9; }

/* --- Stats Section --- */
.stats-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem;
}
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 3rem; } }
.stat-item { text-align: center; }
@media (min-width: 1024px) { .stat-item { text-align: left; } }
.stat-value { font-family: 'DM Serif Display', serif; font-size: 3rem; color: #00B8A9; margin-bottom: 0.5rem; }
@media (min-width: 1024px) { .stat-value { font-size: 3.75rem; } }
.stat-label {
  color: rgba(255,255,255,0.5); font-size: 0.8125rem;
  letter-spacing: 0.05em; text-transform: uppercase;
}

/* --- Cards --- */
.card {
  background: #fff; padding: 1.5rem; border-radius: 2px;
  border: 1px solid #e5e7eb; transition: all 0.3s;
}
.card:hover { border-color: rgba(0,184,169,0.3); box-shadow: 0 10px 25px rgba(0,0,0,0.08); }
.card-lg { padding: 2rem; }
@media (min-width: 1024px) { .card-lg { padding: 2.5rem; } }
.card-featured { border-color: rgba(0,184,169,0.4); box-shadow: 0 0 0 1px rgba(0,184,169,0.2); }
.card-urgent { border-color: rgba(244,185,66,0.4); box-shadow: 0 0 0 1px rgba(244,185,66,0.2); }

.icon-box {
  width: 2.5rem; height: 2.5rem; border-radius: 2px;
  background: rgba(0,184,169,0.1); display: flex;
  align-items: center; justify-content: center; margin-bottom: 1rem;
  transition: background 0.3s;
}
.card:hover .icon-box { background: rgba(0,184,169,0.2); }
.icon-box svg { width: 1.25rem; height: 1.25rem; color: #00B8A9; }
.icon-box-lg { width: 3rem; height: 3rem; }
.icon-box-lg svg { width: 1.5rem; height: 1.5rem; }
.icon-box-gold { background: rgba(244,185,66,0.15); }
.icon-box-gold svg { color: #F4B942; }

/* --- Grid Layouts --- */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.grid-4 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }
.grid-12 { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .grid-12 { grid-template-columns: repeat(12, 1fr); gap: 4rem; } }
.col-span-4 { grid-column: span 1; }
@media (min-width: 1024px) { .col-span-4 { grid-column: span 4; } }
.col-span-5 { grid-column: span 1; }
@media (min-width: 1024px) { .col-span-5 { grid-column: span 5; } }
.col-span-7 { grid-column: span 1; }
@media (min-width: 1024px) { .col-span-7 { grid-column: span 7; } }
.col-span-8 { grid-column: span 1; }
@media (min-width: 1024px) { .col-span-8 { grid-column: span 8; } }

/* --- Language Tags --- */
.lang-tag {
  display: inline-block; padding: 0.5rem 1rem; background: rgba(10,37,64,0.05);
  color: #0A2540; font-size: 0.875rem; border-radius: 2px;
  transition: all 0.2s;
}
.lang-tag:hover { background: rgba(0,184,169,0.1); color: #00B8A9; }
.lang-tag-sm { padding: 0.25rem 0.5rem; font-size: 0.75rem; color: rgba(10,37,64,0.7); }

/* --- Forms --- */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block; font-size: 0.875rem; font-weight: 500;
  color: #0A2540; margin-bottom: 0.5rem;
}
.form-label-light { color: rgba(255,255,255,0.6); }
.form-input, .form-textarea {
  width: 100%; padding: 0.75rem 1rem; border: 1px solid #e5e7eb;
  border-radius: 2px; font-size: 0.875rem; background: #fff;
  transition: border-color 0.2s; outline: none;
}
.form-input:focus, .form-textarea:focus { border-color: #00B8A9; }
.form-input-dark {
  background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2);
  color: #fff;
}
.form-input-dark::placeholder { color: rgba(255,255,255,0.3); }
.form-input-dark:focus { border-color: #00B8A9; }
.form-textarea { resize: none; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: repeat(2, 1fr); } }

/* --- Tables --- */
.data-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; border: 1px solid #e5e7eb; border-radius: 2px; }
.data-table th {
  text-align: left; padding: 0.75rem; font-weight: 600;
  color: #0A2540; background: rgba(10,37,64,0.05);
  border-bottom: 1px solid #e5e7eb;
}
.data-table td { padding: 0.75rem; border-bottom: 1px solid #e5e7eb; }
.data-table tr:last-child td { border-bottom: none; }
.data-table .font-medium { font-weight: 500; color: #0A2540; }

/* --- Footer --- */
.footer { background: #0A2540; color: rgba(255,255,255,0.8); }
.footer-accent { height: 4px; background: linear-gradient(to right, #00B8A9, #F4B942, #00B8A9); }
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 3rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; } }
.footer h4 { font-family: 'DM Serif Display', serif; color: #fff; font-size: 1.125rem; margin-bottom: 1.5rem; }
.footer-links a {
  display: block; font-size: 0.875rem; color: rgba(255,255,255,0.6);
  padding: 0.375rem 0; transition: color 0.2s;
}
.footer-links a:hover { color: #00B8A9; }
.footer-bottom {
  margin-top: 4rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-direction: column; align-items: center;
  justify-content: space-between; gap: 1rem;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; } }
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.4); }
.footer-bottom a { font-size: 0.75rem; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-bottom a:hover { color: #00B8A9; }

/* Ping animation */
@keyframes ping { 75%, 100% { transform: scale(2); opacity: 0; } }
.ping-dot { position: relative; display: inline-flex; width: 0.5rem; height: 0.5rem; margin-left: 0.25rem; }
.ping-dot .ping-ring {
  position: absolute; display: inline-flex; width: 100%; height: 100%;
  border-radius: 50%; background: #00B8A9; opacity: 0.75;
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.ping-dot .ping-core { position: relative; display: inline-flex; width: 0.5rem; height: 0.5rem; border-radius: 50%; background: #00B8A9; }

/* --- Process Steps --- */
.step-number { font-family: 'DM Serif Display', serif; font-size: 3.75rem; color: rgba(0,184,169,0.15); margin-bottom: 1rem; }

/* --- Featured Image Overlay --- */
.featured-image { position: relative; border-radius: 2px; overflow: hidden; box-shadow: 0 25px 50px rgba(0,0,0,0.15); }
.featured-image img { width: 100%; height: 16rem; object-fit: cover; }
@media (min-width: 1024px) { .featured-image img { height: 24rem; } }
.featured-image .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,37,64,0.6), transparent);
}
.featured-image .overlay-text {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2rem;
  font-family: 'DM Serif Display', serif; font-size: 1.5rem; color: #fff;
}
@media (min-width: 1024px) { .featured-image .overlay-text { padding: 3rem; font-size: 1.875rem; } }

/* --- CTA Section --- */
.cta-section { text-align: center; }
.cta-section h2 { font-size: 1.875rem; color: #fff; margin-bottom: 1.5rem; }
@media (min-width: 1024px) { .cta-section h2 { font-size: 3rem; } }
.cta-section p { color: rgba(255,255,255,0.6); font-size: 1.125rem; max-width: 36rem; margin: 0 auto 2rem; }

/* --- Legal Pages --- */
.legal-content { max-width: 48rem; margin: 0 auto; }
.legal-content h2 { font-size: 1.5rem; color: #0A2540; margin-bottom: 1rem; }
.legal-content h3 { font-family: 'DM Serif Display', serif; font-size: 1.125rem; color: #0A2540; margin: 1.5rem 0 0.5rem; }
.legal-content p { color: #6B7280; line-height: 1.7; margin-bottom: 1rem; }
.legal-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content ul li { color: #6B7280; line-height: 1.7; margin-bottom: 0.5rem; }
.legal-content ul li strong { color: #0A2540; }
.legal-content a { color: #00B8A9; }
.legal-content a:hover { text-decoration: underline; }
.legal-section { margin-bottom: 2.5rem; }

/* Contact info box */
.info-box {
  background: #fff; padding: 1.5rem; border-radius: 2px;
  border: 1px solid #e5e7eb;
}
.info-box .info-title { font-weight: 600; color: #0A2540; font-size: 1.125rem; margin-bottom: 0.75rem; }
.info-box p { font-size: 0.875rem; margin-bottom: 0.5rem; }

/* --- Service Price --- */
.service-price { font-family: 'DM Serif Display', serif; font-size: 1.875rem; color: #0A2540; }
.service-unit { font-size: 0.875rem; color: #6B7280; margin-left: 0.5rem; }
.service-badge { font-size: 0.6875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.badge-teal { color: #00B8A9; }
.badge-gold { color: #F4B942; }

/* Check list */
.check-list { list-style: none; padding: 0; }
.check-list li {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.875rem; color: #6B7280; margin-bottom: 0.75rem;
}
.check-list li svg { width: 1rem; height: 1rem; color: #00B8A9; flex-shrink: 0; }

/* Bullet list for CTA */
.bullet-list li {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.875rem; color: rgba(255,255,255,0.7); margin-bottom: 1rem;
}
.bullet-dot { width: 6px; height: 6px; border-radius: 50%; background: #00B8A9; flex-shrink: 0; }

/* --- About Image --- */
.about-image { position: relative; }
.about-image img { width: 100%; border-radius: 2px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.about-image .deco-teal {
  position: absolute; bottom: -1rem; right: -1rem;
  width: 6rem; height: 6rem; background: rgba(0,184,169,0.1);
  border-radius: 2px; z-index: -1;
}
.about-image .deco-gold {
  position: absolute; top: -1rem; left: -1rem;
  width: 4rem; height: 4rem; background: rgba(244,185,66,0.1);
  border-radius: 2px; z-index: -1;
}

/* About stats row */
.about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-top: 2rem; padding-top: 2rem; border-top: 1px solid #e5e7eb;
}
.about-stats .stat-val { font-family: 'DM Serif Display', serif; font-size: 1.875rem; color: #00B8A9; margin-bottom: 0.25rem; }
.about-stats .stat-lbl { font-size: 0.875rem; color: #6B7280; }

/* --- Contact Info Items --- */
.contact-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 2rem; }
.contact-item .icon-box { margin-bottom: 0; flex-shrink: 0; }
.contact-item h3 { font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 0.875rem; color: #0A2540; margin-bottom: 0.25rem; }
.contact-item p, .contact-item a { font-size: 0.875rem; color: #6B7280; line-height: 1.6; }
.contact-item a:hover { color: #00B8A9; }

/* --- Lead Form (dark bg) --- */
.lead-form-wrap {
  position: relative; overflow: hidden;
}
.lead-form-wrap .form-bg { position: absolute; inset: 0; }
.lead-form-wrap .form-bg img { width: 100%; height: 100%; object-fit: cover; }
.lead-form-wrap .form-bg .overlay { position: absolute; inset: 0; background: rgba(10,37,64,0.9); }
.lead-form-card {
  background: rgba(255,255,255,0.05); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 2px;
  padding: 2rem;
}
@media (min-width: 1024px) { .lead-form-card { padding: 2.5rem; } }

/* --- Utility --- */
.max-w-3xl { max-width: 48rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-xl { max-width: 36rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.pt-8 { padding-top: 2rem; }
.pb-6 { padding-bottom: 1.5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.inline-flex { display: inline-flex; }
.hidden { display: none; }
.block { display: block; }
.relative { position: relative; }
.overflow-x-auto { overflow-x: auto; }
.rounded-sm { border-radius: 2px; }
.shadow-sm { box-shadow: 0 1px 3px rgba(0,0,0,0.08); }
.border { border: 1px solid #e5e7eb; }
.border-t { border-top: 1px solid #e5e7eb; }
.border-b { border-bottom: 1px solid #e5e7eb; }
.leading-relaxed { line-height: 1.7; }
.tracking-wide { letter-spacing: 0.05em; }
.uppercase { text-transform: uppercase; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-lg { font-size: 1.125rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.italic { font-style: italic; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.space-y-10 > * + * { margin-top: 2.5rem; }

/* SVG icon colors */
svg.teal { color: #00B8A9; fill: none; stroke: currentColor; }
svg.gold { color: #F4B942; fill: none; stroke: currentColor; }
svg.navy { color: #0A2540; fill: none; stroke: currentColor; }
svg.white { color: #fff; fill: none; stroke: currentColor; }
svg.white-50 { color: rgba(255,255,255,0.5); fill: none; stroke: currentColor; }
