:root {
  --bg: #060606;
  --bg-soft: #101010;
  --card: rgba(20, 20, 20, 0.85);
  --text: #f5f0e4;
  --muted: #cbb891;
  --gold: #d9ab49;
  --gold-2: #f0d28a;
  --line: rgba(217, 171, 73, 0.24);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top, rgba(217, 171, 73, 0.12), transparent 28%),
    linear-gradient(180deg, #050505 0%, #090909 100%);
  color: var(--text);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 90px 0; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(6, 6, 6, 0.78);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 86px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  letter-spacing: 0.4px;
}
.brand img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(240, 210, 138, 0.3);
}
.brand small {
  color: var(--muted);
  font-size: 12px;
  font-family: 'Inter', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.menu {
  display: flex;
  gap: 22px;
  align-items: center;
}
.menu a {
  color: #f6edd7;
  font-weight: 600;
  position: relative;
}
.menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  transition: width .3s ease;
}
.menu a:hover::after { width: 100%; }
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  color: var(--gold-2);
  font-size: 26px;
  border-radius: 12px;
  width: 52px;
  height: 52px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.42) 55%, rgba(0,0,0,.85) 100%),
    url('img/poster-2.jpeg') center/cover no-repeat;
  opacity: .22;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: center;
}
.eyebrow,
.section-tag {
  display: inline-block;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  background: rgba(255,255,255,0.02);
}
.hero h1,
.section-heading h2,
.section-title h2,
.contact-content h2 {
  font-family: 'Cinzel', serif;
  line-height: 1.1;
  margin: 18px 0 18px;
}
.hero h1 { font-size: clamp(40px, 5vw, 72px); max-width: 760px; }
.hero p,
.section-heading p,
.contact-content p {
  color: #e1d4b9;
  font-size: 18px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 26px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 14px;
  font-weight: 800;
  letter-spacing: .3px;
  transition: .3s ease;
}
.btn-primary {
  color: #111;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 10px 30px rgba(217, 171, 73, 0.22);
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-outline {
  border: 1px solid var(--line);
  color: var(--gold-2);
  background: rgba(255,255,255,0.02);
}
.btn-outline:hover { border-color: rgba(240, 210, 138, .6); }
.full { width: 100%; }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.stat-card,
.info-card,
.contact-box,
.contact-form,
.hero-card,
.quote-box,
.highlight-banner {
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.stat-card {
  padding: 18px;
  border-radius: 18px;
}
.stat-card strong {
  display: block;
  color: var(--gold-2);
  font-size: 18px;
  margin-bottom: 6px;
}
.stat-card span { color: #dbccb0; font-size: 14px; }
.hero-card {
  padding: 14px;
  border-radius: 28px;
}
.logo-card img {
  border-radius: 22px;
  width: 100%;
  object-fit: cover;
}
.grid-2,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}
.image-stack img {
  border-radius: 26px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 14px;
}
.feature-list li {
  position: relative;
  padding-left: 32px;
  color: #efe2c6;
}
.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 900;
}
.section-title.center { text-align: center; margin-bottom: 34px; }
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.info-card {
  border-radius: 24px;
  padding: 28px;
}
.card-icon { font-size: 30px; margin-bottom: 18px; }
.info-card h3 {
  font-family: 'Cinzel', serif;
  margin: 0 0 12px;
  font-size: 26px;
}
.info-card p { margin: 0; color: #dccfb5; line-height: 1.8; }
.highlight-banner {
  margin-top: 26px;
  border-radius: 26px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.highlight-banner strong {
  color: var(--gold-2);
  font-size: 28px;
  display: block;
  margin-bottom: 8px;
}
.highlight-banner p { margin: 0; color: #dccfb5; }
.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
}
.gallery-item {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #0b0b0b;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-item.large { grid-row: span 2; min-height: 740px; }
.quote-box {
  border-radius: 26px;
  padding: 40px;
  text-align: center;
}
.quote-box p {
  margin: 0 0 12px;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.4;
  font-family: 'Cinzel', serif;
  color: #fff4db;
}
.quote-box span { color: var(--gold); font-weight: 700; }
.contact-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 26px;
}
.contact-box {
  padding: 20px;
  border-radius: 20px;
}
.contact-box strong {
  display: block;
  color: var(--gold-2);
  margin-bottom: 8px;
}
.contact-box span { color: #e4d7bc; font-size: 14px; }
.contact-form {
  border-radius: 26px;
  padding: 26px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(240, 210, 138, 0.14);
  background: rgba(255,255,255,0.03);
  color: white;
  border-radius: 14px;
  padding: 16px 18px;
  font: inherit;
  margin-bottom: 14px;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #baa783; }
.footer {
  border-top: 1px solid var(--line);
  background: rgba(0,0,0,.45);
}
.footer-inner {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer strong {
  font-family: 'Cinzel', serif;
  font-size: 22px;
}
.footer p { margin: 8px 0 0; color: #cdb88f; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; color: #f6e7c0; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }

@media (max-width: 991px) {
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    border-radius: 18px;
    background: rgba(10,10,10,.96);
    border: 1px solid var(--line);
  }
  .menu.open { display: flex; }
  .hero-grid,
  .grid-2,
  .contact-grid,
  .cards-3,
  .stats,
  .contact-boxes,
  .field-row,
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.large { min-height: auto; grid-row: auto; }
  .highlight-banner,
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .section { padding: 70px 0; }
  .hero { padding-top: 80px; }
  .hero h1 { font-size: 38px; }
  .hero p,
  .section-heading p,
  .contact-content p { font-size: 16px; }
  .nav { min-height: 76px; }
  .brand img { width: 52px; height: 52px; }
  .brand { font-size: 14px; }
  .quote-box { padding: 26px; }
}
