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

:root {
  --gold:        #C9A84C;
  --gold-light:  #E8C97A;
  --gold-dark:   #9A7A30;
  --gold-faint:  rgba(201,168,76,0.08);
  --black:       #0A0A0A;
  --dark:        #111111;
  --dark-2:      #1A1A1A;
  --dark-3:      #252525;
  --white:       #F8F5EE;
  --white-dim:   rgba(248,245,238,0.6);
  --white-faint: rgba(248,245,238,0.08);
  --serif:       'Playfair Display', Georgia, serif;
  --serif-2:     'Cormorant Garamond', serif;
  --sans:        'Montserrat', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--black); color: var(--white); font-family: var(--sans); font-weight: 300; line-height: 1.7; overflow-x: hidden; }

/* noise */
body::before { content: ''; position: fixed; inset: 0; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E"); pointer-events: none; z-index: 9999; opacity: 0.35; }

/* ── NAV ── */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; padding: 24px 60px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(201,168,76,0.15); background: rgba(10,10,10,0.92); backdrop-filter: blur(20px); }
.nav-logo { font-family: var(--serif); font-size: 1.35rem; font-weight: 700; color: var(--gold); text-decoration: none; letter-spacing: .06em; }
.nav-logo span { font-style: italic; font-weight: 400; color: var(--white); font-size: .8em; margin-left: 6px; }
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a { font-family: var(--sans); font-size: .68rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--white-dim); text-decoration: none; position: relative; transition: color .3s; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width .35s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.lang-btn { font-family: var(--sans); font-size: .65rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--white-dim); background: transparent; border: 1px solid rgba(248,245,238,0.2); padding: 8px 16px; cursor: pointer; transition: all .3s; }
.lang-btn:hover { border-color: var(--gold); color: var(--gold); }
.nav-login { font-family: var(--sans); font-size: .68rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--white-dim); background: transparent; border: none; cursor: pointer; transition: color .3s; padding: 8px 0; }
.nav-login:hover { color: var(--gold); }
.nav-cta { font-family: var(--sans); font-size: .68rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--black); background: var(--gold); padding: 12px 28px; border: none; cursor: pointer; transition: all .3s; }
.nav-cta:hover { background: var(--gold-light); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 1px; background: var(--white); }
.mobile-nav { display: none; position: fixed; top: 73px; left: 0; right: 0; z-index: 199; background: rgba(10,10,10,0.97); border-bottom: 1px solid rgba(201,168,76,0.15); padding: 32px 40px; flex-direction: column; gap: 20px; }
.mobile-nav.open { display: flex; }
.mobile-nav a { font-family: var(--sans); font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; color: var(--white-dim); text-decoration: none; padding-bottom: 16px; border-bottom: 1px solid var(--white-faint); }

/* ── PAGE HERO ── */
.page-hero { padding: 180px 60px 100px; background: linear-gradient(170deg, var(--dark-2) 0%, var(--black) 60%); position: relative; overflow: hidden; border-bottom: 1px solid rgba(201,168,76,0.15); }
.page-hero::before { content: ''; position: absolute; top: -100px; right: -100px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%); pointer-events: none; }
.page-hero-label { font-family: var(--sans); font-size: .65rem; letter-spacing: .35em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; display: block; }
.page-hero h1 { font-family: var(--serif); font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 400; line-height: 1.1; color: var(--white); max-width: 700px; }
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero p { font-family: var(--serif-2); font-size: 1.15rem; color: var(--white-dim); max-width: 540px; margin-top: 24px; font-weight: 300; line-height: 1.85; }

/* ── SHARED COMPONENTS ── */
.section-label { font-family: var(--sans); font-size: .65rem; font-weight: 500; letter-spacing: .35em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: block; }
.gold-line { width: 50px; height: 1px; background: linear-gradient(to right, var(--gold), var(--gold-light)); margin-bottom: 28px; }
.divider { display: flex; align-items: center; gap: 20px; margin: 24px 0; }
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: linear-gradient(to right, transparent, var(--gold-dark), transparent); }
.divider-diamond { width: 7px; height: 7px; background: var(--gold); transform: rotate(45deg); flex-shrink: 0; }
.btn-primary { display: inline-block; font-family: var(--sans); font-size: .68rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--black); background: var(--gold); padding: 16px 40px; text-decoration: none; border: none; cursor: pointer; transition: all .3s; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(201,168,76,.25); }
.btn-outline { display: inline-block; font-family: var(--sans); font-size: .68rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); background: transparent; padding: 15px 39px; text-decoration: none; border: 1px solid rgba(201,168,76,.5); cursor: pointer; transition: all .3s; }
.btn-outline:hover { background: rgba(201,168,76,.08); border-color: var(--gold); }

/* ── FOOTER ── */
footer { background: var(--dark-2); border-top: 1px solid rgba(201,168,76,0.18); padding: 80px 60px 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; color: var(--gold); }
.footer-brand p { font-size: .83rem; color: var(--white-dim); line-height: 1.85; margin-top: 14px; max-width: 260px; }
.footer-col h4 { font-family: var(--sans); font-size: .62rem; font-weight: 600; letter-spacing: .25em; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: .85rem; color: var(--white-dim); text-decoration: none; transition: color .3s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(248,245,238,0.07); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: .75rem; color: rgba(248,245,238,0.3); letter-spacing: .05em; }
.footer-bottom a { color: var(--gold); text-decoration: none; }

/* ── MODALS ── */
.overlay { position: fixed; inset: 0; background: rgba(5,5,5,.82); backdrop-filter: blur(8px); z-index: 500; display: none; align-items: center; justify-content: center; padding: 20px; }
.overlay.active { display: flex; }
.modal { background: var(--dark-2); border: 1px solid rgba(201,168,76,.2); padding: 52px 48px; width: 100%; max-width: 480px; position: relative; animation: mUp .35s ease both; }
@keyframes mUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.modal-close { position: absolute; top: 20px; right: 24px; background: none; border: none; color: var(--white-dim); font-size: 1.3rem; cursor: pointer; transition: color .2s; }
.modal-close:hover { color: var(--gold); }
.modal h2 { font-family: var(--serif); font-size: 2rem; font-weight: 400; color: var(--white); margin-bottom: 4px; }
.modal h2 em { font-style: italic; color: var(--gold); }
.modal-sub { font-family: var(--serif-2); font-size: .95rem; color: var(--white-dim); margin-bottom: 32px; }
.m-group { margin-bottom: 16px; }
.m-group label { display: block; font-family: var(--sans); font-size: .6rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 7px; }
.m-group input { width: 100%; background: rgba(248,245,238,.04); border: 1px solid rgba(248,245,238,.12); color: var(--white); font-family: var(--serif-2); font-size: .95rem; padding: 12px 14px; transition: border-color .3s; }
.m-group input:focus { outline: none; border-color: rgba(201,168,76,.5); }
.m-group input::placeholder { color: rgba(248,245,238,.22); }
.m-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 16px; }
.modal-switch { font-family: var(--serif-2); font-size: .92rem; color: var(--white-dim); text-align: center; margin-top: 20px; }
.modal-switch a { color: var(--gold); cursor: pointer; }
.m-divider { text-align: center; position: relative; margin: 20px 0; }
.m-divider::before, .m-divider::after { content: ''; position: absolute; top: 50%; width: calc(50% - 28px); height: 1px; background: rgba(248,245,238,.08); }
.m-divider::before { left: 0; } .m-divider::after { right: 0; }
.m-divider span { font-family: var(--sans); font-size: .6rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(248,245,238,.3); }
.social-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
.s-btn { background: transparent; border: 1px solid rgba(248,245,238,.12); color: var(--white-dim); font-family: var(--sans); font-size: .65rem; letter-spacing: .1em; padding: 12px; cursor: pointer; transition: all .3s; display: flex; align-items: center; justify-content: center; gap: 8px; }
.s-btn:hover { border-color: rgba(201,168,76,.4); color: var(--gold); }
.toast { position: fixed; bottom: 32px; right: 32px; z-index: 600; background: var(--dark-3); border: 1px solid rgba(201,168,76,.35); color: var(--white); padding: 16px 28px; font-family: var(--sans); font-size: .72rem; letter-spacing: .1em; transform: translateX(180%); transition: transform .4s ease; box-shadow: 0 8px 32px rgba(0,0,0,.4); }
.toast.show { transform: translateX(0); }
#scrollTop { position: fixed; bottom: 32px; left: 32px; z-index: 300; width: 44px; height: 44px; background: transparent; border: 1px solid rgba(201,168,76,.35); color: var(--gold); cursor: pointer; display: none; align-items: center; justify-content: center; font-size: .9rem; transition: all .3s; }
#scrollTop.visible { display: flex; }
#scrollTop:hover { background: rgba(201,168,76,.1); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.fade-up { animation: fadeUp .9s ease both; }
.fade-in { animation: fadeIn .9s ease both; }
.delay-1 { animation-delay: .15s; } .delay-2 { animation-delay: .3s; }
.delay-3 { animation-delay: .45s; } .delay-4 { animation-delay: .6s; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── FORM ── */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-family: var(--sans); font-size: .62rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; background: rgba(248,245,238,.04); border: 1px solid rgba(248,245,238,.1); color: var(--white); font-family: var(--serif-2); font-size: .95rem; padding: 14px 16px; transition: border-color .3s; appearance: none; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: rgba(201,168,76,.5); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--dark-2); color: var(--white); }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(248,245,238,.22); font-family: var(--serif-2); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 18px 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .page-hero { padding: 130px 24px 70px; }
  footer { padding: 60px 24px 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .modal { padding: 40px 28px; }
  .m-row { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
