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

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

:root {
  --black:   #080808;
  --dark:    #f4f4f2;
  --surface: #ffffff;
  --surface2:#ebebea;
  --border:  rgba(201,168,76,0.3);
  --border2: rgba(0,0,0,0.09);
  --text:    #111111;
  --muted:   rgba(17,17,17,0.52);
  --gold:    #c9a84c;
  --gold-lt: #d4aa55;
  --gold-dim: rgba(201,168,76,0.12);
  --r:       4px;
}

html { scroll-behavior: smooth; }
body {
  background: var(--surface);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

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

/* ── NAV — stays dark ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 68px;
  background: rgba(8,8,8,0.94);
  backdrop-filter: blur(28px) saturate(1.2);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem; font-weight: 600; letter-spacing: 0.5px;
  display: flex; flex-direction: column; line-height: 1;
  color: #f0ece4;
}
.logo em { color: var(--gold); font-style: normal; }
.logo span {
  font-size: 0.52rem; font-weight: 400; color: rgba(240,236,228,0.4);
  letter-spacing: 3px; text-transform: uppercase; margin-top: 3px;
}
.nav-links {
  display: none; list-style: none;
  gap: 2.5rem; align-items: center;
}
@media (min-width: 900px) { .nav-links { display: flex; } }
.nav-links a {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 1.5px;
  color: rgba(240,236,228,0.6); text-transform: uppercase;
  transition: color 0.2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: #f0ece4; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--gold) !important; color: var(--black) !important;
  padding: 0.5rem 1.4rem; border-radius: var(--r);
  font-weight: 600 !important; letter-spacing: 0.5px !important;
  transition: background 0.2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-lt) !important; }
.hamburger {
  display: flex; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.hamburger span { display: block; width: 22px; height: 1.5px; background: #f0ece4; transition: all 0.3s; }
@media (min-width: 900px) { .hamburger { display: none; } }
.mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0;
  background: rgba(8,8,8,0.97); backdrop-filter: blur(28px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 2rem 5%; z-index: 499;
  flex-direction: column; gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 0.82rem; color: rgba(240,236,228,0.6);
  letter-spacing: 2px; text-transform: uppercase;
  padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu a:last-child { border-bottom: none; color: var(--gold); }

/* ── BUTTONS ── */
.btn-gold {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--gold); color: var(--black);
  padding: 0.9rem 2.2rem; border-radius: var(--r);
  font-weight: 600; font-size: 0.78rem;
  letter-spacing: 1.5px; text-transform: uppercase;
  transition: background 0.2s, transform 0.2s;
}
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-1px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1px solid rgba(0,0,0,0.22); color: var(--text);
  padding: 0.9rem 2.2rem; border-radius: var(--r);
  font-size: 0.78rem; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase;
  transition: border-color 0.2s, transform 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-1px); }

/* Hero btn-outline override (on dark photo backgrounds) */
#hero .btn-outline {
  border-color: rgba(255,255,255,0.3);
  color: #f0ece4;
}
#hero .btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-sm {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--gold); color: var(--black);
  padding: 0.45rem 1.1rem; border-radius: var(--r);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.5px; text-transform: uppercase;
  transition: background 0.2s;
}
.btn-sm:hover { background: var(--gold-lt); }

/* ── SHARED SECTION ── */
section { padding: 6rem 5%; }
.eyebrow {
  font-size: 0.62rem; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem;
}
.eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--gold); flex-shrink: 0; }
h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 600; line-height: 1.1; letter-spacing: -0.5px;
}
.sec-sub {
  color: var(--muted); font-size: 0.9rem; max-width: 520px;
  line-height: 1.8; margin-top: 1rem;
}

/* ── FOOTER — stays dark ── */
.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 3.5rem 5% 2.5rem;
}
.site-footer .logo { color: #f0ece4; }
.site-footer__inner {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 2rem;
}
@media (max-width: 900px) {
  .site-footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .site-footer__inner { grid-template-columns: 1fr; gap: 2rem; }
}
.f-brand p {
  font-size: 0.8rem; color: rgba(240,236,228,0.42); margin-top: 0.75rem;
  max-width: 240px; line-height: 1.75;
}
.f-col h4 {
  font-size: 0.58rem; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem;
}
.f-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.f-col ul a {
  font-size: 0.8rem; color: rgba(240,236,228,0.45);
  transition: color 0.2s;
}
.f-col ul a:hover { color: #f0ece4; }
.f-col ul span { font-size: 0.8rem; color: rgba(240,236,228,0.45); }
.site-footer__bottom {
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: space-between; align-items: center;
}
.site-footer__bottom p { font-size: 0.72rem; color: rgba(255,255,255,0.2); }
.pay-methods { display: flex; align-items: center; gap: 0.4rem; flex-wrap: wrap; }
.pay-methods svg { border-radius: var(--r); opacity: 0.5; transition: opacity 0.2s; }
.pay-methods svg:hover { opacity: 0.85; }

/* ── REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ── MOBILE ── */
@media (max-width: 640px) {
  nav { height: 60px; padding: 0 1.25rem; }
  .mobile-menu { top: 60px; }
  section { padding: 4rem 1.25rem; }
}
