:root {
  --navy: #0b1a2b;
  --orange: #f58426;
  --bg: #f4f4f4;
  --white: #ffffff;
  --text: #222;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--navy);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.5rem;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo {
  height: 36px;
}

.site-title {
  font-weight: 700;
  letter-spacing: 0.04em;
}

nav a {
  color: var(--white);
  margin-left: 1rem;
  text-decoration: none;
  font-weight: 500;
}

nav a:hover {
  text-decoration: underline;
}

.hero {
  background: linear-gradient(140deg, #0b1a2b 0%, #132b46 50%, #f58426 100%);
  color: #fff;
  padding: 6rem 1.5rem 5rem;
  text-align: left;
}

.hero-content {
  max-width: 720px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

.hero p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.btn {
  background: var(--orange);
  color: #fff;
  padding: 0.7rem 1.4rem;
  border: none;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}

.section {
  padding: 3rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  background: var(--bg);
}

.section.alt {
  background: #fff;
}

.section h2 {
  margin-bottom: 1rem;
}

.cards-grid,
.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-top: 1.5rem;
}

.info-card,
.gallery-item {
  background: #fff;
  border-radius: 12px;
  padding: 1.25rem;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.gallery-item {
  min-height: 100px;
  display: grid;
  place-items: center;
  text-align: center;
  background: rgba(245,132,38,0.06);
  border: 1px dashed rgba(0,0,0,0.05);
}

.list {
  list-style: disc inside;
  line-height: 1.8;
}

.contact-form {
  display: grid;
  gap: 1rem;
  max-width: 420px;
  margin-top: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.6rem 0.8rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.footer {
  text-align: center;
  padding: 2rem 1rem 3rem;
  font-size: 0.85rem;
  color: #666;
}

.disclaimer {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: #777;
  max-width: 500px;
}

