:root {
  color-scheme: dark;
  color: #e8edf8;
  background: #070a12;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top, rgba(16, 29, 60, 0.8), #070a12 45%);
}

img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.hero {
  padding: 4rem 1.5rem 3rem;
  background: linear-gradient(180deg, rgba(0, 32, 64, 0.95), transparent 70%), url('images/Generated Image December 30, 2025 - 11_43PM.jpeg') center/cover no-repeat;
  color: #ffffff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 1024px;
  margin: 0 auto;
  z-index: 1;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.45rem 0.9rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3.6rem);
  max-width: 12ch;
  line-height: 1.05;
}

.hero-text {
  max-width: 760px;
  font-size: 1.05rem;
  margin-bottom: 2rem;
  color: #d7e2ff;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.6rem;
  border-radius: 999px;
  background: #2f78ff;
  color: #ffffff;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
  background: #1f63e8;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.09);
  color: #f3f7ff;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 3rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.section:last-of-type {
  border-bottom: none;
}

.section-header {
  max-width: 760px;
  margin-bottom: 1.75rem;
}

.section-label {
  display: block;
  margin-bottom: 0.75rem;
  color: #82b1ff;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.85rem;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 2.4vw, 2.8rem);
}

.section-text,
.section p,
.card p,
.feature-list li {
  color: #cbd3e9;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

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

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

.align-end {
  align-items: end;
}

ul {
  margin: 0;
  padding-left: 1.35rem;
}

li {
  margin-bottom: 0.9rem;
}

.card {
  padding: 1.5rem;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
}

.card h4 {
  margin-top: 0;
  margin-bottom: 0.8rem;
}

.feature-list {
  display: grid;
  gap: 0.9rem;
  list-style: none;
  padding-left: 0;
}

.feature-list li {
  position: relative;
  padding-left: 1.7rem;
}

.feature-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #2f78ff;
}

.location-section {
  background: rgba(15, 23, 42, 0.85);
  border-radius: 32px;
  padding: 3rem 2rem;
}

.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.contact-section {
  padding-bottom: 4rem;
}

.contact-card {
  max-width: 760px;
  padding: 2.5rem;
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
}

.contact-card h3 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.footer {
  padding: 1.5rem 0 2.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.65);
}

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

  .hero {
    padding: 3rem 1rem 2rem;
  }
}

@media (max-width: 600px) {
  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
