
:root {
  --bg: #f4f5f7;
  --surface: #ffffff;
  --accent: #0d6b5d;
  --accent-soft: #e0f2ef;
  --text-main: #1f2933;
  --text-muted: #6b7280;
  --border-subtle: #e5e7eb;
  --radius-lg: 18px;
  --shadow-soft: 0 12px 30px rgba(15, 23, 42, 0.08);
}

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

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text-main);
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(244,245,247,0.92);
  border-bottom: 1px solid rgba(148,163,184,0.2);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.6rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-logo {
  max-width: 260px;
  width: 100%;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--text-main);
  font-weight: 500;
}

.nav-links a.nav-cta {
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.25rem;
  flex-direction: column;
  gap: 0.2rem;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--text-main);
  border-radius: 999px;
}

.main-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 3.5rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 2.5rem;
  align-items: center;
  margin-top: 1.5rem;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 3vw, 2.8rem);
  margin-bottom: 0.75rem;
}

.hero-copy p {
  color: var(--text-muted);
  line-height: 1.55;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 1rem 0;
}

.badge {
  font-size: 0.75rem;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: #fff;
}

.badge.accent {
  background: var(--accent-soft);
  border-color: transparent;
  color: var(--accent);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.45rem 1.2rem;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 500;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.btn-outline {
  border-color: var(--border-subtle);
  background: #fff;
  color: var(--text-main);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-stat-label {
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-stat-value {
  color: var(--text-main);
  font-weight: 600;
  margin-top: 0.15rem;
}

.hero-media {
  position: relative;
}

.hero-card {
  background: linear-gradient(135deg, #0d6b5d 0%, #0f172a 100%);
  border-radius: 24px;
  padding: 0.4rem;
  box-shadow: var(--shadow-soft);
}

.hero-image {
  width: 100%;
  display: block;
  border-radius: 20px;
  min-height: 220px;
  object-fit: cover;
}

.hero-tag {
  position: absolute;
  bottom: -0.5rem;
  left: 1.4rem;
  background: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  box-shadow: var(--shadow-soft);
}

.section {
  margin-top: 2.5rem;
}

.section-header h2 {
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
}

.section-header p {
  color: var(--text-muted);
  max-width: 600px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.8rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}

.card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148,163,184,0.22);
}

.card h3 {
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}

.card-tagline {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--accent);
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-top: 0.5rem;
}

.chip {
  font-size: 0.75rem;
  padding: 0.18rem 0.7rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
}

.info-banner {
  margin-top: 1.4rem;
  background: #fff7ed;
  border-radius: var(--radius-lg);
  border: 1px solid #fed7aa;
  padding: 0.9rem 1.1rem;
  font-size: 0.9rem;
}

.table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  font-size: 0.9rem;
}

.table th,
.table td {
  padding: 0.6rem 0.8rem;
  border-bottom: 1px solid var(--border-subtle);
}

.table thead th {
  background: #f3f4f6;
  text-align: left;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.table tbody tr:last-child td {
  border-bottom: none;
}

.subtle {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.highlight {
  font-weight: 600;
  color: #9a3412;
}

.site-footer {
  margin-top: 2rem;
  border-top: 1px solid rgba(148,163,184,0.3);
  background: #020617;
  color: #e5e7eb;
  padding: 2rem 1.25rem 1.5rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2.3fr 1.4fr 1.7fr;
  gap: 1.4rem;
  font-size: 0.9rem;
}

.footer-inner h4 {
  margin-top: 0;
  margin-bottom: 0.4rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-links a {
  color: #e5e7eb;
}

.footer-bottom {
  max-width: 1100px;
  margin: 1.4rem auto 0;
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #9ca3af;
}

.map-embed {
  margin-top: 1.4rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-subtle);
}

.map-embed iframe {
  width: 100%;
  height: 280px;
  border: 0;
}

/* Responsive */

@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-media {
    order: -1;
  }

  .hero-meta {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

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

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding-inline: 0.9rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    inset-inline: 0.75rem;
    top: 60px;
    background: #0f172a;
    color: #e5e7eb;
    border-radius: 16px;
    padding: 0.6rem 0.7rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    transform-origin: top right;
    transform: scaleY(0.6);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.16s ease, transform 0.16s ease;
  }

  .nav-links a {
    color: #e5e7eb;
    width: 100%;
    padding: 0.3rem 0.5rem;
    border-radius: 8px;
  }

  .nav-links a.nav-cta {
    background: #22c55e;
    color: #022c22;
    box-shadow: none;
  }

  .nav-links.is-open {
    opacity: 1;
    transform: scaleY(1);
    pointer-events: auto;
  }

  .hero-meta {
    grid-template-columns: minmax(0,1fr);
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .site-logo {
    max-width: 190px;
  }
}
