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

:root {
  --ink:      #0e1420;
  --ink-2:    #1c2537;
  --ink-3:    #273247;
  --gold:     #c8a44a;
  --gold-2:   #dfc078;
  --gold-3:   #f5edd5;
  --cream:    #faf8f4;
  --cream-2:  #f0ebe0;
  --white:    #ffffff;
  --txt:      #1e1e2e;
  --txt-2:    #52526a;
  --txt-3:    #9898b0;
  --border:   rgba(200,164,74,0.2);
  --sh-sm:    0 2px 16px rgba(14,20,32,0.08);
  --sh-md:    0 8px 40px rgba(14,20,32,0.14);
  --sh-lg:    0 24px 64px rgba(14,20,32,0.2);
  --serif:    Georgia, 'Times New Roman', serif;
  --sans:     'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--txt);
  background: var(--cream);
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--gold); }

/* ══════════════ NAV ══════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  height: 76px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw;
  background: rgba(14,20,32,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(200,164,74,0.12);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.4); }

.nav-logo {
  font-family: var(--serif);
  font-size: 1.85rem;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.02em;
  line-height: 1;
}
.nav-logo-sub {
  font-family: var(--sans);
  font-size: 0.55rem;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-left: 4px;
  vertical-align: super;
}

.nav-links { display: flex; align-items: center; gap: 0; list-style: none; }
.nav-links a {
  display: block; padding: 0.45rem 1rem;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -1px; left: 1rem; right: 1rem; height: 1px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  margin-left: 1rem;
  background: var(--gold) !important;
  color: var(--ink) !important;
  font-weight: 700 !important;
  padding: 0.55rem 1.4rem !important;
  transition: background 0.3s, transform 0.2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-2) !important; transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 22px; height: 1.5px; background: #fff; display: block; transition: 0.3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* ══════════════ PAGE HERO ══════════════ */
.page-hero {
  padding: 148px 5vw 90px;
  background: var(--ink);
  position: relative; overflow: hidden;
}
.ph-glow {
  position: absolute; right: 0; top: 0; bottom: 0; width: 50%;
  background: radial-gradient(ellipse at 80% 50%, rgba(200,164,74,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.ph-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(200,164,74,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,164,74,0.04) 1px, transparent 1px);
  background-size: 65px 65px;
}
.ph-content { position: relative; max-width: 680px; }
.ph-tag {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
}
.ph-tag::before { content: ''; width: 24px; height: 1px; background: var(--gold); }
.ph-content h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400; line-height: 1.1;
  color: var(--white);
}
.ph-content h1 em { font-style: italic; color: var(--gold-2); }
.ph-bar { width: 50px; height: 2px; background: var(--gold); margin: 1.8rem 0; }
.ph-desc { font-size: 0.97rem; line-height: 1.85; color: rgba(255,255,255,0.5); max-width: 500px; }

/* ══════════════ SHARED ══════════════ */
.tag {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold);
}
.tag::before { content: ''; width: 20px; height: 1px; background: var(--gold); display: block; }
.tag.light { color: var(--gold-2); }
.tag.center { justify-content: center; }
.tag.center::before { display: none; }

.h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400; line-height: 1.15; color: var(--ink);
}
.h2 em { font-style: italic; color: var(--gold); }
.h2.light { color: var(--white); }
.h2.light em { color: var(--gold-2); }
.h2.center { text-align: center; }

.rule { width: 44px; height: 2px; background: var(--gold); margin: 1.3rem 0; }
.rule.center { margin-left: auto; margin-right: auto; }

/* ══════════════ BUTTONS ══════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: var(--sans);
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  cursor: pointer; border: none; transition: all 0.3s;
}
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-2); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(200,164,74,0.3); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: var(--ink-2); transform: translateY(-2px); box-shadow: var(--sh-md); }
.btn-ghost { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.28); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--white); }
.arr { transition: transform 0.3s; display: inline-block; }
.btn:hover .arr { transform: translateX(4px); }

/* ══════════════ REVEAL ══════════════ */
.reveal { opacity: 1; transform: none; }
.reveal.visible { opacity: 1; transform: none; }
.d1 { }
.d2 { }
.d3 { }
.d4 { }

/* ══════════════ FOOTER ══════════════ */
footer { background: var(--ink); border-top: 1px solid rgba(200,164,74,0.1); }
.ft-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 3rem; padding: 80px 5vw 60px;
  max-width: 1280px; margin: 0 auto;
}
.ft-brand .nav-logo { display: block; margin-bottom: 1.2rem; }
.ft-brand p { font-size: 0.82rem; line-height: 1.85; color: rgba(255,255,255,0.32); max-width: 240px; }
.ft-soc { display: flex; gap: 0.6rem; margin-top: 1.5rem; }
.ft-soc a {
  width: 36px; height: 36px;
  border: 1px solid rgba(200,164,74,0.22);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.35); font-size: 0.8rem; font-weight: 700;
  transition: all 0.3s;
}
.ft-soc a:hover { border-color: var(--gold); color: var(--gold); }
.ft-col h5 {
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.4rem;
}
.ft-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.ft-col li a {
  font-size: 0.8rem; color: rgba(255,255,255,0.36);
  transition: color 0.3s; display: flex; align-items: center; gap: 0.4rem;
}
.ft-col li a::before { content: '—'; color: var(--gold); font-size: 0.55rem; opacity: 0.4; }
.ft-col li a:hover { color: var(--gold); }
.ft-contact { display: flex; flex-direction: column; gap: 0.8rem; }
.ft-ci { display: flex; gap: 0.75rem; align-items: flex-start; }
.ft-ci .ic { color: var(--gold); font-size: 0.8rem; margin-top: 1px; flex-shrink: 0; }
.ft-ci span { font-size: 0.78rem; color: rgba(255,255,255,0.35); line-height: 1.6; }
.ft-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 1.4rem 5vw;
  max-width: 1280px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.6rem;
}
.ft-bottom p { font-size: 0.7rem; color: rgba(255,255,255,0.18); line-height: 1.6; }

/* ══════════════ RESPONSIVE ══════════════ */
@media (max-width: 1024px) { .ft-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: stretch;
    position: fixed; top: 76px; left: 0; right: 0; bottom: 0;
    background: rgba(14,20,32,0.99);
    padding: 2rem 5vw; gap: 0; overflow-y: auto;
  }
  .nav-links.open a { font-size: 0.9rem; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .nav-cta { margin-left: 0 !important; margin-top: 1.5rem; justify-content: center; display: flex !important; }
  .ft-grid { grid-template-columns: 1fr; gap: 2rem; padding: 50px 5vw 40px; }
}
