@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

:root {
  color-scheme: dark;
  --bg: #010b1a;
  --card: rgba(255, 255, 255, 0.05);
  --card-border: rgba(255, 255, 255, 0.12);
  --primary: #f7c948;
  --accent: #f2b705;
  --muted: #d1d6e5;
  --glow: rgba(247, 201, 72, 0.35);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  background: radial-gradient(circle at top right, rgba(247, 201, 72, 0.16), transparent 40%),
    radial-gradient(circle at 15% 20%, rgba(246, 204, 113, 0.12), transparent 35%), var(--bg);
  color: #f6f6f2;
  line-height: 1.6;
  min-height: 100vh;
}

main {
  padding: 5rem 5vw 4rem;
}

header {
  position: sticky;
  top: 0;
  background: rgba(2, 9, 24, 0.95);
  backdrop-filter: blur(14px);
  z-index: 10;
  border-bottom: 1px solid var(--card-border);
}

header .top-banner {
  background: linear-gradient(90deg, rgba(247, 201, 72, 0.15), rgba(143, 224, 196, 0.15));
  padding: 0.65rem 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: #fff;
  letter-spacing: 0.05em;
}

.nav-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.8rem 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
}

header nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  row-gap: 0.45rem;
  flex: 1;
  justify-content: flex-start;
  font-family: 'Playfair Display', serif;
  margin-right: 0.5rem;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  margin-right: 1rem;
}

.logo-wrap img {
  height: 80px;
  width: 80px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.25rem;
}

.logo-wrap .brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-wrap .brand strong {
  font-size: 1.2rem;
  letter-spacing: 0.06em;
}

.logo-wrap .brand span {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--muted);
}

header nav a {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.08em;
  padding: 0.4rem 1rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  transition: background 0.3s, color 0.3s, border 0.3s;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.03);
}

header nav a:hover,
header nav a.active {
  background: rgba(247, 201, 72, 0.15);
  color: var(--accent);
  border-color: rgba(247, 201, 72, 0.4);
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
  padding: 4rem 0;
}

.hero .hero-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 10px 40px var(--glow);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 4vw, 3.6rem);
  margin-bottom: 1rem;
}

.hero p {
  color: var(--muted);
}

.cta-group {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  border-radius: 999px;
  padding: 0.9rem 1.6rem;
  font-weight: 600;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
}

.btn.primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #060308;
}

.btn.outlined {
  border-color: var(--muted);
  color: var(--muted);
}

.sections {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-top: 2rem;
}

.section {
  max-width: 1200px;
  margin: 0 auto;
}

.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  margin-bottom: 1rem;
}

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

.section-submenu {
  margin-top: 1rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.section-submenu a {
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 0.25rem 0.9rem;
  background: transparent;
  color: #fff;
  cursor: pointer;
  letter-spacing: 0.05em;
  font-size: 0.8rem;
  text-decoration: none;
}

.section-submenu a.active {
  border-color: var(--accent);
  color: var(--accent);
}

.card-grid {
  margin-top: 2rem;
  display: grid;
  gap: 1.25rem;
}

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

.map-frame {
  width: 100%;
  height: 360px;
  border: 0;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

form.card {
  display: grid;
  gap: 1rem;
}

label {
  display: flex;
  flex-direction: column;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: var(--muted);
}

input,
textarea {
  margin-top: 0.35rem;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.02);
  color: #fff;
  font-size: 1rem;
}

textarea {
  resize: vertical;
}

.card {
  background: var(--card);
  border-radius: 18px;
  border: 1px solid var(--card-border);
  padding: 1.75rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
}

.card p {
  overflow-wrap: anywhere;
  word-break: break-word;
  color: var(--muted);
}

.card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.card span {
  font-size: 0.95rem;
  color: var(--accent);
}

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

.message {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
}

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

.testimonial {
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid var(--card-border);
  background: rgba(255, 255, 255, 0.04);
}

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

.gallery-card {
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(143, 224, 196, 0.15), rgba(247, 201, 72, 0.15));
  border: 1px solid var(--card-border);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  font-weight: 600;
}

.footer {
  padding: 2rem 0;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid var(--card-border);
}

.stats-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1rem;
}

.stat-card {
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 7, 13, 0.6);
  text-align: center;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5);
}

.stat-card span {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.25em;
  margin-top: 0.25rem;
}

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

.step-card {
  padding: 1.4rem;
  border-radius: 16px;
  border: 1px dashed var(--card-border);
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.95rem;
}

.contact-panel {
  margin-top: 3rem;
  padding: 2.5rem;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(28, 28, 32, 0.8), rgba(58, 58, 66, 0.9));
  border: 1px solid var(--card-border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
}

.contact-panel h3 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.contact-panel p {
  color: var(--muted);
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .hero .hero-card {
    padding: 3rem;
  }

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

@media (max-width: 1024px) {
  .nav-wrap {
    flex-direction: column;
    gap: 0.75rem;
  }

  header nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .cta-group {
    flex-direction: column;
  }
}
