:root {
  --bg: #0d1117;
  --card: rgba(13, 20, 31, 0.7);
  --muted: #9da5b4;
  --text: #f4f6fb;
  --accent: #ffb347;
  --accent-strong: #ff884b;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 25px 65px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 10% 20%, #1f2933 0%, #0b0e13 50%, #050608 100%);
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.hero {
  padding: 32px clamp(20px, 5vw, 72px) 48px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
  gap: clamp(32px, 4vw, 64px);
}

.top-nav {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0.08em;
}

.logo-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  display: grid;
  place-items: center;
  font-weight: 600;
  color: #141722;
}

.cta {
  padding: 12px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s ease, transform 0.2s ease;
}

.cta:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.hero-content h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  margin: 12px 0 16px;
  font-family: "Space Grotesk", sans-serif;
}

.hero-content .lede {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 40ch;
  line-height: 1.6;
}

.eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.btn {
  padding: 14px 24px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  color: #10121b;
  box-shadow: 0 15px 40px rgba(255, 136, 75, 0.4);
}

.btn.ghost {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text);
  background: transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.hero-media {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  background: #111523;
  box-shadow: var(--shadow);
}

.hero-media img {
  height: 100%;
  object-fit: cover;
}

.hero-tag {
  position: absolute;
  bottom: 18px;
  left: 18px;
  padding: 16px 20px;
  border-radius: 20px;
  background: rgba(5, 6, 8, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-family: "Space Grotesk", sans-serif;
}

main {
  padding: 0 clamp(20px, 5vw, 80px) 80px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

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

.highlights article {
  background: var(--card);
  border-radius: 24px;
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.highlights h3 {
  margin: 0 0 8px;
  font-family: "Space Grotesk", sans-serif;
}

.gallery {
  background: rgba(7, 10, 18, 0.7);
  border-radius: 40px;
  padding: 48px clamp(20px, 5vw, 60px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.section-heading h2 {
  margin: 8px 0 32px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

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

.gallery figure {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  background: #0a0f18;
  border: 1px solid var(--border);
}

.gallery figcaption {
  padding: 16px;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.contact-card,
.map-card {
  background: var(--card);
  border-radius: 32px;
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.address {
  font-size: 1.1rem;
  margin-bottom: 24px;
  line-height: 1.5;
}

.contact-links,
.social {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-links a,
.social a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  text-decoration: none;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.2s ease, transform 0.2s ease;
}

.contact-links a:hover,
.social a:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
}

.icon svg {
  width: 20px;
  height: 20px;
  fill: var(--accent);
}

.map-card iframe {
  border: none;
  width: 100%;
  height: 100%;
  min-height: 320px;
  border-radius: 24px;
}

footer {
  padding: 32px 20px 48px;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

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

  .hero-media {
    order: -1;
  }

  .hero-content .lede {
    max-width: 100%;
  }
}

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

  .cta {
    display: none;
  }

  .contact-card,
  .map-card {
    padding: 24px;
  }
}
