:root {
  --bg: #0c1018;
  --bg-soft: #151b28;
  --card: rgba(20, 28, 42, 0.72);
  --line: rgba(227, 203, 154, 0.24);
  --gold: #e3cb9a;
  --gold-strong: #d8b777;
  --text: #f4f1ea;
  --muted: #c8c3b6;
  --shadow: 0 20px 50px rgba(2, 8, 20, 0.55);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  background: radial-gradient(circle at 10% 0%, #1c2434 0%, var(--bg) 46%), var(--bg);
  color: var(--text);
  line-height: 1.65;
}
img { max-width: 100%; display: block; border-radius: 14px; }
a { color: inherit; text-decoration: none; }

.background-orb {
  position: fixed;
  z-index: -1;
  pointer-events: none;
  inset: auto auto 14% 4%;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, rgba(227, 203, 154, 0.18), rgba(227, 203, 154, 0));
  filter: blur(34px);
}

.container { width: min(1180px, 92vw); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(12, 16, 24, 0.8);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 600; letter-spacing: .02em; }
.brand img { width: 36px; height: 36px; border-radius: 8px; }
.brand small { display: block; color: var(--muted); font-size: 11px; font-weight: 500; }

.nav { display: flex; gap: 18px; align-items: center; }
.nav a { font-size: 14px; color: #efe9dc; opacity: .86; transition: .3s; }
.nav a:hover, .nav a.active { color: var(--gold); opacity: 1; }

.lang-switch { display: inline-flex; border: 1px solid var(--line); border-radius: 999px; padding: 3px; gap: 3px; }
.lang-btn {
  border: 0; background: transparent; color: var(--muted); border-radius: 999px;
  padding: 7px 12px; cursor: pointer; font-weight: 600; transition: .3s;
}
.lang-btn.active { background: rgba(227, 203, 154, 0.18); color: var(--gold); }

.mobile-toggle { display: none; background: transparent; border: 1px solid var(--line); color: var(--gold); padding: 8px 10px; border-radius: 10px; }

.hero { padding: 90px 0 54px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; }
.eyebrow { color: var(--gold); font-size: 12px; letter-spacing: .22em; text-transform: uppercase; }
h1, h2, h3 { line-height: 1.2; margin: .25em 0 .5em; font-family: "Cormorant Garamond", Georgia, serif; letter-spacing: .01em; }
h1 { font-size: clamp(2.4rem, 5.6vw, 4.5rem); }
h2 { font-size: clamp(1.9rem, 3.7vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.1vw, 1.75rem); }
.lead { color: var(--muted); font-size: 1.1rem; max-width: 64ch; }

.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.btn {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 19px;
  font-weight: 700;
  transition: transform .35s, border-color .3s, background .3s;
}
.btn:hover { transform: translateY(-2px); border-color: rgba(227, 203, 154, .7); }
.btn-primary { background: linear-gradient(130deg, #e3cb9a, #caa161); color: #1b1a17; border: 0; }
.btn-ghost { color: var(--text); }

.panel {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(31, 42, 63, 0.75), rgba(16, 23, 35, 0.78));
  box-shadow: var(--shadow);
}
.hero-stat { display: grid; gap: 14px; padding: 16px 18px; margin-top: 18px; }
.hero-stat strong { font-size: 1.35rem; color: var(--gold); }

.section { padding: 56px 0; }
.section.top-line { border-top: 1px solid rgba(227, 203, 154, .12); }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.card { padding: 24px; }
.card p { color: var(--muted); }

.photo-card { position: relative; overflow: hidden; border-radius: 20px; border: 1px solid var(--line); }
.photo-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.photo-card:hover img { transform: scale(1.04); }
.photo-card .overlay {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 14px 16px;
  background: linear-gradient(to top, rgba(9, 12, 18, .88), rgba(9, 12, 18, 0));
  font-size: .95rem;
}

.banner {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(115deg, rgba(227, 203, 154, .1), rgba(227, 203, 154, .03));
}

.faq-item { border-top: 1px solid var(--line); padding: 16px 0; }
.faq-item summary { cursor: pointer; font-weight: 700; }
.faq-item p { color: var(--muted); }

.site-footer { border-top: 1px solid var(--line); margin-top: 60px; padding: 42px 0; }
.footer-grid { display: grid; grid-template-columns: 1.1fr 1fr 1fr; gap: 20px; }
.footer-grid p, .footer-grid a { color: var(--muted); font-size: 14px; }
.footer-grid a:hover { color: var(--gold); }

.contact-form { display: grid; gap: 12px; }
input, textarea, select {
  width: 100%; padding: 12px 14px;
  border-radius: 12px; border: 1px solid rgba(227, 203, 154, .24);
  background: rgba(7, 10, 15, .55); color: var(--text);
  font: inherit;
}
textarea { min-height: 130px; resize: vertical; }

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

.toast {
  position: fixed; right: 20px; bottom: 20px; z-index: 120;
  background: rgba(18, 25, 38, .96); border: 1px solid var(--line); color: var(--text);
  padding: 12px 14px; border-radius: 12px; opacity: 0; transform: translateY(10px);
  transition: .35s;
}
.toast.show { opacity: 1; transform: translateY(0); }

.cookie-banner {
  position: fixed; left: 50%; transform: translateX(-50%); bottom: 18px; width: min(940px, 94vw);
  background: rgba(10, 14, 22, .95); border: 1px solid var(--line); border-radius: 18px;
  padding: 18px; z-index: 90; box-shadow: var(--shadow);
  transition: opacity .4s ease, transform .4s ease;
}
.cookie-banner.hidden { opacity: 0; visibility: hidden; transform: translate(-50%, 16px); }
.cookie-grid { display: grid; grid-template-columns: 1fr auto; gap: 14px; align-items: center; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.cookie-settings { margin-top: 14px; display: none; border-top: 1px solid var(--line); padding-top: 14px; }
.cookie-settings.open { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.switch { display: flex; align-items: center; justify-content: space-between; padding: 10px; border: 1px solid var(--line); border-radius: 10px; }
.switch input { width: 42px; height: 22px; }

@media (max-width: 980px) {
  .hero-grid, .grid-2, .grid-3, .footer-grid { grid-template-columns: 1fr; }
  .nav-wrap {
    position: fixed; top: 70px; left: 4vw; right: 4vw;
    background: rgba(11, 15, 23, .98); border: 1px solid var(--line); border-radius: 14px;
    padding: 15px; display: none;
  }
  .nav-wrap.open { display: block; }
  .nav { flex-direction: column; align-items: flex-start; }
  .mobile-toggle { display: inline-flex; }
}
