/* Global reset & basics */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #0f172a 0, #020617 55%);
  color: #e5e7eb;
  line-height: 1.6;
}

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

a {
  color: #f97316;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Layout helpers */
.wrapper {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

.section {
  padding: 72px 0;
}

.section-alt {
  background: rgba(15, 23, 42, 0.85);
}

.section-title {
  font-size: 1.9rem;
  margin: 0 0 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.section-intro {
  margin: 0 0 32px;
  color: #9ca3af;
}

/* Grid */
.grid {
  display: grid;
  gap: 24px;
}
.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(to right, rgba(15,23,42,0.98), rgba(15,23,42,0.92));
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
}
.brand {
  max-width: 460px;
}
.brand-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #9ca3af;
  margin-bottom: 4px;
}
.brand-name {
  font-size: 1.6rem;
  margin: 0;
}
.brand-role {
  margin: 2px 0 0;
  font-size: 0.9rem;
  color: #9ca3af;
}

.nav {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 0.9rem;
}
.nav a {
  color: #e5e7eb;
  padding: 4px 0;
}
.nav a:hover {
  color: #f97316;
}
.nav-cta {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid #f97316;
}

/* Hero */
.hero {
  padding: 72px 0 64px;
}
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}
.hero-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #93c5fd;
  margin: 0 0 10px;
}
.hero h2 {
  font-size: clamp(2rem, 3vw, 2.4rem);
  margin: 0 0 14px;
}
.hero-body {
  margin: 0 0 18px;
  color: #d1d5db;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}
.hero-metas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-photo {
  position: relative;
}
.hero-photo-frame {
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 18px 45px rgba(15, 23, 42, 0.9),
    0 0 0 1px rgba(148, 163, 184, 0.25);
}
.hero-flag {
  position: absolute;
  bottom: -10px;
  right: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ef4444, #0ea5e9, #22c55e);
  font-weight: 700;
  font-size: 0.75rem;
}

/* Pills */
.meta-pill {
  border-radius: 999px;
  padding: 6px 12px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.8);
}
.meta-label {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #9ca3af;
}
.meta-value {
  font-size: 0.8rem;
}

/* Cards */
.card {
  padding: 18px 18px 20px;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.88);
  border: 1px solid rgba(148, 163, 184, 0.25);
}
.card.highlight {
  background: radial-gradient(circle at top left, rgba(59,130,246,0.18), rgba(15,23,42,0.95));
}
.card.transparent {
  background: transparent;
  border-color: transparent;
}
.photo-card {
  padding: 0;
  overflow: hidden;
}
.list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.list li {
  padding-left: 16px;
  position: relative;
  margin-bottom: 8px;
  font-size: 0.95rem;
}
.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #f97316;
}
.note {
  margin-top: 10px;
  font-size: 0.8rem;
  color: #9ca3af;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
}
.btn.primary {
  background: linear-gradient(135deg, #f97316, #facc15);
  color: #111827;
  font-weight: 600;
}
.btn.primary:hover {
  filter: brightness(1.05);
}
.btn.ghost {
  border-color: rgba(148, 163, 184, 0.7);
  color: #e5e7eb;
}
.btn.ghost:hover {
  border-color: #f97316;
}

/* Gallery */
.gallery-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.25);
}
.gallery-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.gallery-item figcaption {
  padding: 10px 12px 12px;
  font-size: 0.8rem;
  color: #9ca3af;
}

/* Contact */
.contact-section {
  border-top: 1px solid rgba(148, 163, 184, 0.25);
}
.contact-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}
.contact-highlight {
  font-size: 1.05rem;
  margin: 4px 0 10px;
}
.contact-highlight a {
  color: #fbbf24;
  font-weight: 600;
}
.contact-meta {
  font-size: 0.9rem;
  color: #9ca3af;
}

/* Footer */
.site-footer {
  padding: 20px 0 28px;
  border-top: 1px solid rgba(148, 163, 184, 0.3);
  background: #020617;
}
.footer-inner {
  text-align: center;
  font-size: 0.8rem;
  color: #9ca3af;
}
.footer-small {
  margin-top: 4px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-photo {
    order: -1;
  }
}
