﻿:root {
  --bg: #f8f6f0;
  --bg-2: #ffffff;
  --text: #141414;
  --muted: #4b4b4b;
  --gold: #f5b900;
  --gold-deep: #d99a00;
  --line: rgba(20, 20, 20, 0.1);
  --card: #ffffff;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, #f8f6f0 55%, #ffffff 100%);
  min-height: 100vh;
}
img { max-width: 100%; display: block; }

.container { width: min(1140px, 90vw); margin: 0 auto; }
.section { padding: 90px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}
.site-header.header-hidden {
  transform: translateY(-100%);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}
.logo img { width: 56px; height: 56px; object-fit: cover; border-radius: 10px; }

.nav { display: flex; gap: 20px; }
.nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  position: relative;
  padding-bottom: 6px;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav a:hover::after, .nav a.active::after { width: 100%; }

h1, h2, h3, h4, h5 {
  font-family: "Playfair Display", serif;
  letter-spacing: 0.2px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-size: 12px;
  color: var(--gold-deep);
  display: inline-block;
  margin-bottom: 16px;
}
.lead { font-size: 18px; color: var(--muted); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  background: linear-gradient(120deg, var(--gold), var(--gold-deep));
  color: #1b1400;
  box-shadow: 0 12px 26px rgba(245, 185, 0, 0.35);
}
.btn-outline {
  color: var(--text);
  border-color: rgba(20, 20, 20, 0.2);
}

.section-head { margin-bottom: 30px; max-width: 720px; }

.grid-two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(15, 12, 0, 0.08);
}

/* ===== PREMIUM FOOTER ===== */
.site-footer {
  background: linear-gradient(180deg, #1a1612 0%, #0d0b09 100%);
  padding: 0;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-deep), var(--gold), transparent);
}
.site-footer::after {
  content: "";
  position: absolute;
  top: -200px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245, 185, 0, 0.06) 0%, transparent 60%);
  pointer-events: none;
}
.footer-main {
  padding: 80px 0 60px;
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 50px;
}
.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
  max-width: 320px;
}
.footer-logo {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.footer-col h5 {
  color: #ffffff;
  font-size: 1rem;
  margin: 0 0 24px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h5::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-deep));
}
.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 14px;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}
.footer-col a:hover {
  color: var(--gold);
  padding-left: 8px;
}
.footer-col p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 12px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.footer-contact-item svg {
  width: 20px; height: 20px;
  stroke: var(--gold);
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-item span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.5;
}
.footer-contact-item a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline;
  padding: 0;
  margin: 0;
}
.footer-contact-item a:hover {
  color: var(--gold);
  padding-left: 0;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px 0;
  position: relative;
  z-index: 1;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  margin: 0;
}
.footer-bottom-links {
  display: flex;
  gap: 30px;
}
.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-bottom-links a:hover {
  color: var(--gold);
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-social a {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 0;
  margin: 0;
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-3px);
  padding: 0;
}
.footer-social a svg {
  width: 28px;
  height: 28px;
  fill: rgba(255, 255, 255, 0.85);
  transition: fill 0.3s ease;
}
.footer-social a:hover svg {
  fill: #1a1612;
}

.bg-orb {
  position: fixed;
  width: 420px;
  height: 420px;
  filter: blur(120px);
  opacity: 0.15;
  z-index: -1;
}
.orb-one { background: #f5b900; top: -200px; left: -200px; }
.orb-two { background: #111111; bottom: -220px; right: -200px; opacity: 0.08; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, #1a1612 0%, #0d0b09 100%);
  padding: 24px 0;
  z-index: 9999;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.cookie-banner.hidden {
  transform: translateY(100%);
  opacity: 0;
}
.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cookie-text {
  flex: 1;
  min-width: 300px;
}
.cookie-text h4 {
  color: #ffffff;
  font-size: 1rem;
  margin: 0 0 8px;
}
.cookie-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}
.cookie-text a {
  color: var(--gold);
  text-decoration: none;
}
.cookie-text a:hover {
  text-decoration: underline;
}
.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: inherit;
}
.cookie-btn.accept {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #1a1612;
}
.cookie-btn.accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(245, 185, 0, 0.3);
}
.cookie-btn.essential {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.cookie-btn.essential:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}
.cookie-btn.reject {
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.cookie-btn.reject:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}
@media (max-width: 768px) {
  .cookie-banner { padding: 20px 0; }
  .cookie-content { flex-direction: column; text-align: center; gap: 20px; }
  .cookie-text { min-width: 100%; }
  .cookie-buttons { justify-content: center; width: 100%; }
  .cookie-btn { padding: 10px 18px; font-size: 13px; }
}

@media (max-width: 980px) {
  .nav-wrap { flex-wrap: wrap; justify-content: center; }
  .nav { flex-wrap: wrap; justify-content: center; }
  .grid-two { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom-inner { justify-content: center; text-align: center; }
}
@media (max-width: 640px) {
  .btn { width: 100%; }
  .footer-main { padding: 60px 0 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand { text-align: center; }
  .footer-brand p { max-width: 100%; }
  .footer-logo { margin: 0 auto 20px; }
  .footer-col h5::after { left: 50%; transform: translateX(-50%); }
  .footer-col { text-align: center; }
  .footer-contact-item { justify-content: center; }
  .footer-social { justify-content: center; }
  .footer-bottom-links { flex-direction: column; gap: 12px; align-items: center; }
}
