﻿:root {
  --ink: #0b0f14;
  --ink-2: #2b323b;
  --muted: #6b7280;
  --paper: #f9f7f2;
  --paper-2: #f1ede4;
  --accent: #caff4d;
  --accent-2: #1d4ed8;
  --card: #ffffff;
  --shadow: 0 18px 36px rgba(11, 15, 20, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Sora", sans-serif;
  color: var(--ink);
  background: var(--paper);
  background-image:
    radial-gradient(circle at 12% 8%, rgba(202, 255, 77, 0.25), transparent 45%),
    radial-gradient(circle at 86% 20%, rgba(29, 78, 216, 0.12), transparent 40%),
    linear-gradient(90deg, rgba(11, 15, 20, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(11, 15, 20, 0.04) 1px, transparent 1px);
  background-size: auto, auto, 36px 36px, 36px 36px;
  line-height: 1.6;
}

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

a:hover {
  color: var(--accent-2);
}

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

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(249, 247, 242, 0.9);
  border-bottom: 1px solid rgba(11, 15, 20, 0.08);
  backdrop-filter: blur(10px);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand__badge {
  background: var(--ink);
  color: var(--paper);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.75rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 12px;
  padding: 0;
  margin: 0;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  background: transparent;
  transition: all 0.2s ease;
}

.nav-links a.active,
.nav-links a:hover {
  background: var(--ink);
  color: var(--paper);
}

.hero {
  padding: 90px 0 70px;
  position: relative;
}

.hero__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
}

.hero h1 {
  font-family: "Syne", sans-serif;
  font-size: clamp(2.2rem, 3.6vw, 4rem);
  margin: 10px 0 16px;
}

.hero p.lead {
  font-size: 1.05rem;
  color: var(--ink-2);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--paper-2);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.hero-panel {
  background: var(--card);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(11, 15, 20, 0.08);
}

.search-pill {
  display: flex;
  gap: 12px;
  padding: 10px;
  background: var(--paper);
  border-radius: 999px;
  border: 1px solid rgba(11, 15, 20, 0.1);
}

.search-pill input {
  border: 0;
  outline: none;
  background: transparent;
  flex: 1;
}

.search-pill button {
  border: 0;
  background: var(--accent);
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 999px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.stat {
  background: var(--paper-2);
  border-radius: 16px;
  padding: 14px;
  text-align: center;
}

.stat span:first-child {
  display: block;
  font-weight: 700;
  font-size: 1.3rem;
}

.section {
  padding: 70px 0;
}

.section--light {
  background: var(--card);
  border-top: 1px solid rgba(11, 15, 20, 0.08);
  border-bottom: 1px solid rgba(11, 15, 20, 0.08);
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.section-title h2 {
  font-family: "Syne", sans-serif;
  font-size: 2rem;
  margin: 0;
}

.section-title .note {
  color: var(--muted);
}

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

.tile {
  background: var(--card);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(11, 15, 20, 0.08);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(11, 15, 20, 0.18);
}

.tile img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.tile__body {
  padding: 16px 18px 20px;
}

.tile__meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--muted);
}

.banner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: center;
  padding: 28px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 28px;
}

.banner .btn-solid {
  background: var(--accent);
  color: var(--ink);
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
}

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

.detail-card {
  background: var(--card);
  border-radius: 22px;
  padding: 22px;
  border: 1px solid rgba(11, 15, 20, 0.08);
  box-shadow: var(--shadow);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-row a {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--paper-2);
  font-size: 0.85rem;
  font-weight: 600;
}

.form-panel label {
  font-weight: 600;
  margin-bottom: 6px;
}

.form-panel .form-control,
.form-panel select,
.form-panel textarea {
  border-radius: 14px;
  border: 1px solid rgba(11, 15, 20, 0.2);
  padding: 12px 14px;
}

.form-panel button {
  border: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
}

.map-frame {
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.footer {
  margin-top: auto;
  background: var(--ink);
  color: var(--paper);
  padding: 50px 0 40px;
}

.footer h3 {
  font-family: "Syne", sans-serif;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: var(--paper);
}

.footer-social {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 24px;
  padding-top: 18px;
  font-size: 0.9rem;
}

.reveal {
  animation: rise 0.7s ease both;
}

.reveal.delay-1 { animation-delay: 0.1s; }
.reveal.delay-2 { animation-delay: 0.2s; }
.reveal.delay-3 { animation-delay: 0.3s; }
.reveal.delay-4 { animation-delay: 0.4s; }

@keyframes rise {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 991px) {
  .topbar__inner {
    padding: 14px 20px;
  }

  .nav-links {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 575px) {
  .hero {
    padding: 70px 0 50px;
  }

  .tile img {
    height: 190px;
  }
}
