﻿@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;600;700&family=Sora:wght@400;600;700&display=swap');

:root {
  --bg-0: #101417;
  --bg-1: #14191f;
  --bg-2: #1a222a;
  --surface: #161d24;
  --surface-2: #1c252e;
  --accent: #c49a5a;
  --accent-2: #6cae9f;
  --text: #edf1f3;
  --muted: #a1abb2;
  --line: #2a333c;
  --shadow-soft: 0 18px 40px rgba(5, 8, 10, 0.45);
  --shadow-strong: 0 30px 70px rgba(3, 6, 8, 0.6);
  --radius: 20px;
  --radius-sm: 12px;
  --font-body: 'Manrope', sans-serif;
  --font-heading: 'Sora', sans-serif;
  --max-width: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  min-height: 100vh;
  background:
    radial-gradient(circle at 14% 12%, rgba(196, 154, 90, 0.16), transparent 45%),
    radial-gradient(circle at 85% 5%, rgba(108, 174, 159, 0.16), transparent 45%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 72px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 72px),
    linear-gradient(140deg, var(--bg-0) 0%, var(--bg-1) 45%, var(--bg-2) 100%);
}

::selection {
  background: rgba(196, 154, 90, 0.3);
  color: #0b0f12;
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid rgba(196, 154, 90, 0.7);
  outline-offset: 2px;
}

.container {
  width: min(100% - 2.5rem, var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(12, 16, 20, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 30px rgba(3, 6, 8, 0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  width: 104px;
  height: 104px;
  border-radius: 18px;
  background: linear-gradient(140deg, rgba(196, 154, 90, 0.95), rgba(108, 174, 159, 0.75));
  display: grid;
  place-items: center;
  color: #0f1419;
  box-shadow: 0 16px 36px rgba(12, 16, 20, 0.55);
}

.brand-mark svg {
  width: 52px;
  height: 52px;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text span {
  display: block;
  font-size: 2.34rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--muted);
}

.brand-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.4rem;
  letter-spacing: 0.02em;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  padding: 0.55rem 0.9rem;
  border-radius: 12px;
  font-size: 0.9rem;
}

.nav-menu {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  flex-wrap: wrap;
}

.nav-menu a {
  font-size: 0.92rem;
  color: var(--muted);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.04);
  transition: all 0.25s var(--ease);
}

.nav-menu a:hover {
  color: var(--text);
  border-color: rgba(196, 154, 90, 0.45);
  background: rgba(196, 154, 90, 0.14);
}

.nav-menu a.active {
  color: #0f1419;
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 12px 28px rgba(196, 154, 90, 0.35);
}

.hero {
  padding: 6rem 0 5rem;
}

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

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 3.2vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #f7f9fa;
  text-shadow: 0 10px 40px rgba(3, 6, 8, 0.6);
}

.hero p {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 560px;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.6rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border 0.25s var(--ease);
  background: rgba(255, 255, 255, 0.06);
}

.button.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0f1419;
  border-color: transparent;
  box-shadow: 0 18px 40px rgba(196, 154, 90, 0.3);
}

.button.ghost {
  color: var(--text);
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.hero-card {
  position: relative;
  background: linear-gradient(155deg, rgba(22, 29, 36, 0.98), rgba(14, 18, 24, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.hero-card::after {
  content: '';
  position: absolute;
  inset: auto 0 -45% 0;
  height: 70%;
  background: radial-gradient(circle, rgba(196, 154, 90, 0.2), transparent 60%);
  opacity: 0.6;
  pointer-events: none;
}

.hero-card ul {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.85rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-card li {
  list-style: none;
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.section {
  padding: 5rem 0;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.section-lead {
  color: var(--muted);
  max-width: 720px;
  line-height: 1.8;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.6rem;
  margin-top: 2.4rem;
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 16px 36px rgba(4, 6, 8, 0.4);
  transition: transform 0.25s var(--ease), border 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(108, 174, 159, 0.5);
  box-shadow: 0 24px 60px rgba(3, 6, 8, 0.6);
}

.card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

.badges {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

.badge {
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  font-size: 0.78rem;
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.gallery {
  margin-top: 2.5rem;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow-soft);
}

.gallery-view {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) - 6px);
  background: radial-gradient(circle at 20% 20%, rgba(196, 154, 90, 0.12), transparent 40%),
    #12171c;
  display: grid;
  place-items: center;
  padding: 1rem;
  height: clamp(300px, 54vh, 580px);
}

.gallery-view img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.gallery-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.2rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.gallery-meta {
  color: var(--muted);
  font-size: 0.9rem;
}

.gallery-buttons {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.icon-button {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border-radius: 12px;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  transition: all 0.25s var(--ease);
}

.icon-button:hover {
  border-color: rgba(196, 154, 90, 0.7);
  color: #0f1419;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.gallery-thumbs {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.1rem;
  overflow-x: auto;
  padding-bottom: 0.3rem;
}

.gallery-thumbs button {
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  outline: 2px solid transparent;
  cursor: pointer;
  width: 86px;
  height: 60px;
  flex: 0 0 auto;
  transition: border 0.2s var(--ease), transform 0.2s var(--ease);
}

.gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.2);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.gallery-thumbs button.active {
  border-color: rgba(196, 154, 90, 0.8);
  transform: translateY(-2px);
}

.gallery-thumbs button.active img {
  filter: none;
  transform: scale(1.04);
}

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

.panel {
  background: var(--surface);
  padding: 1.7rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-soft);
}

.panel h3 {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

.panel ul {
  list-style: none;
  display: grid;
  gap: 0.7rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.counter-widget {
  position: fixed;
  right: 16px;
  bottom: 16px;
  display: grid;
  gap: 6px;
  opacity: 0.85;
  z-index: 20;
}

.counter-widget img {
  width: 86px;
  height: auto;
  display: block;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #b49a74;
  font-size: 0.72rem;
  margin-bottom: 0.6rem;
}

.footer {
  padding: 3.5rem 0 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(15, 19, 24, 0.92);
}

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

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

.footer small {
  color: var(--muted);
}

.page-hero {
  padding: 4rem 0 3rem;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 2.7vw, 3.2rem);
  color: #f1f4f6;
}

.page-hero p {
  color: var(--muted);
  margin-top: 1rem;
  max-width: 720px;
  line-height: 1.8;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--delay, 0s);
}

body.ready .reveal {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(12, 16, 20, 0.96);
    padding: 1rem 1.2rem 1.4rem;
    flex-direction: column;
    display: none;
    gap: 0.6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-menu.open {
    display: flex;
  }
}

@media (max-width: 600px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .brand-text span {
    letter-spacing: 0.25em;
    font-size: 0.7rem;
  }

  .hero {
    padding: 4rem 0 3.5rem;
  }

  .section {
    padding: 4rem 0;
  }

  .gallery-view {
    height: clamp(220px, 46vh, 380px);
  }

  .gallery-controls {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery-thumbs button {
    width: 70px;
    height: 50px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto;
  }

  .reveal,
  body.ready .reveal {
    transition: none;
    opacity: 1;
    transform: none;
  }

  .button,
  .card,
  .icon-button {
    transition: none;
  }
}
