@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Manrope:wght@300;400;500;600;700&display=swap');

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

:root {
  --gold: #c9a84c;
  --gold-soft: #d4b86a;
  --gold-border: rgba(201,168,76,0.18);
  --beige: #e8dcc8;
  --bg-deep: #160f28;
  --bg-card: rgba(255,255,255,0.04);
  --bg-header: rgba(18,12,34,0.88);
  --muted: rgba(232,220,200,0.58);
  --text: #e8dcc8;
  --radius: 1rem;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', sans-serif;
  background: var(--bg-deep);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1,h2,h3,h4 { font-family: 'Cormorant Garamond', serif; }

.text-gold { color: var(--gold); }
.text-gold-soft { color: var(--gold-soft); }
.text-beige { color: var(--beige); }
.text-muted { color: var(--muted); }

.text-gradient-gold {
  background: linear-gradient(135deg, #c9a84c 0%, #f0d080 50%, #d4b86a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* HEADER */
header {
  position: fixed; top:0; left:0; right:0; z-index:100;
  backdrop-filter: blur(18px);
  background: var(--bg-header);
  border-bottom: 1px solid var(--gold-border);
  height: 64px;
}
.header-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.logo { display:flex; align-items:center; gap:0.5rem; text-decoration:none; }
.logo-star { color:var(--gold); font-size:1.4rem; }
.logo-text {
  font-family:'Cormorant Garamond',serif;
  font-size:0.78rem; letter-spacing:0.22em; text-transform:uppercase; color:var(--gold-soft);
}
nav { display:flex; align-items:center; gap:1.6rem; }
nav a {
  font-size:0.8rem; color:var(--muted); text-decoration:none;
  transition:color 0.2s; letter-spacing:0.03em;
}
nav a:hover, nav a.active { color:var(--gold); }
.menu-btn {
  display:none; background:none; border:none;
  color:var(--gold); font-size:1.5rem; cursor:pointer;
}
.mobile-nav {
  display:none; position:fixed; top:64px; left:0; right:0;
  background:rgba(18,12,34,0.98); border-bottom:1px solid var(--gold-border);
  padding:1.5rem 2rem; z-index:99; flex-direction:column; gap:0.9rem;
}
.mobile-nav.open { display:flex; }
.mobile-nav a {
  font-size:1rem; color:var(--muted); text-decoration:none;
  padding:0.4rem 0; border-bottom:1px solid var(--gold-border); transition:color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a.active { color:var(--gold); }

main { flex:1; padding-top:64px; }

/* FOOTER */
footer {
  border-top:1px solid var(--gold-border);
  padding:3.5rem 2rem; background:rgba(14,9,26,0.9);
}
.footer-inner { max-width:1200px; margin:0 auto; }
.footer-grid {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:2.5rem; margin-bottom:2.5rem;
}
.footer-brand p { font-size:0.85rem; color:var(--muted); line-height:1.7; margin-top:0.75rem; }
.footer-nav h4, .footer-contacts h4 {
  font-family:'Cormorant Garamond',serif; color:var(--beige); margin-bottom:1rem; font-size:1.1rem;
}
.footer-nav ul, .footer-contacts ul { list-style:none; display:flex; flex-direction:column; gap:0.5rem; }
.footer-nav a, .footer-contacts a {
  font-size:0.83rem; color:var(--muted); text-decoration:none; transition:color 0.2s;
}
.footer-nav a:hover, .footer-contacts a:hover { color:var(--gold); }
.footer-bottom {
  border-top:1px solid rgba(201,168,76,0.1); padding-top:2rem;
  font-size:0.73rem; color:rgba(232,220,200,0.45); line-height:1.8;
}
.footer-bottom strong { color:rgba(212,184,106,0.75); font-weight:400; }

/* CARDS */
.glass-card {
  background:var(--bg-card);
  border:1px solid var(--gold-border);
  backdrop-filter:blur(8px);
  transition:transform 0.25s, border-color 0.25s;
}
.glass-card:hover { border-color:rgba(201,168,76,0.38); }

/* BUTTONS */
.btn-gold {
  display:inline-block; padding:0.85rem 2rem; border-radius:999px;
  background:linear-gradient(135deg,#c9a84c,#e8c85a);
  color:#160f28; font-weight:600; font-size:0.88rem; text-decoration:none;
  transition:transform 0.2s, box-shadow 0.2s;
  box-shadow:0 4px 20px rgba(201,168,76,0.28);
  cursor:pointer; border:none; font-family:'Manrope',sans-serif;
}
.btn-gold:hover { transform:scale(1.03); box-shadow:0 6px 28px rgba(201,168,76,0.42); }
.btn-outline {
  display:inline-block; padding:0.85rem 2rem; border-radius:999px;
  border:1px solid var(--gold); color:var(--gold); font-size:0.88rem;
  text-decoration:none; transition:background 0.2s;
  font-family:'Manrope',sans-serif;
}
.btn-outline:hover { background:rgba(201,168,76,0.1); }

/* PAGE HERO */
.page-hero {
  text-align:center; padding:5rem 1.5rem 3rem;
  max-width:760px; margin:0 auto;
}
.eyebrow {
  display:inline-block; font-size:0.68rem; letter-spacing:0.32em;
  text-transform:uppercase; color:var(--gold); margin-bottom:1.2rem;
}
.page-hero h1 { font-size:clamp(2.4rem,6vw,4rem); line-height:1.1; margin-bottom:1.2rem; }
.page-hero p { color:var(--muted); line-height:1.85; font-size:0.97rem; }

section.content { max-width:1200px; margin:0 auto; padding:2rem 2rem 5rem; }

/* FORM */
.form-group { margin-bottom:1.2rem; }
.form-group label {
  display:block; font-size:0.75rem; letter-spacing:0.1em;
  text-transform:uppercase; color:var(--gold-soft); margin-bottom:0.45rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width:100%; background:rgba(255,255,255,0.05);
  border:1px solid var(--gold-border); color:var(--text);
  border-radius:0.5rem; padding:0.75rem 1rem;
  font-family:'Manrope',sans-serif; font-size:0.88rem;
  transition:border-color 0.2s; outline:none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color:rgba(201,168,76,0.55); }
.form-group select option { background:#160f28; color:var(--text); }
.form-group textarea { min-height:110px; resize:vertical; }

/* RESPONSIVE */
@media (max-width:900px) {
  nav { display:none; }
  .menu-btn { display:block; }
  .footer-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width:640px) {
  .footer-grid { grid-template-columns:1fr; }
  .header-inner { padding:0 1.25rem; }
  section.content { padding:1.5rem 1.25rem 4rem; }
  .page-hero { padding:3rem 1.25rem 2rem; }
}
