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

:root {
  --black:    #0A0A0A;
  --dark:     #141414;
  --card:     #1E1E1E;
  --mid:      #2A2A2A;
  --border:   #3A3A3A;
  --gray:     #888888;
  --silver:   #BBBBBB;
  --white:    #F0EDE8;
  --gold:     #C9A84C;
  --gold-lt:  #E8C96A;
  --gold-dk:  #8B6914;
  --nav-h:    64px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  min-height: 100vh;
}

/* ── NAV ─────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(14,14,14,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gold-dk);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 36px;
  z-index: 1000;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.nav-brand-text { line-height: 1.2; }
.nav-brand-text .top {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--gold);
}
.nav-brand-text .bottom {
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--gray);
  font-weight: 400;
}

.nav-links {
  display: flex;
  gap: 0;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 8px 20px;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--silver);
  text-decoration: none;
  position: relative;
  transition: color 0.2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 60%;
}

/* ── PAGE WRAPPER ────────────────────────────────────── */
.page {
  padding-top: var(--nav-h);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── FOOTER ──────────────────────────────────────────── */
footer {
  background: var(--dark);
  border-top: 1px solid var(--gold-dk);
  padding: 20px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  color: var(--gray);
  letter-spacing: 0.06em;
  margin-top: auto;
}

footer a { color: var(--gray); text-decoration: none; }
footer a:hover { color: var(--gold); }

/* ── GOLD RULE ───────────────────────────────────────── */
.gold-rule {
  width: 48px;
  height: 1.5px;
  background: var(--gold);
  margin: 10px 0 18px;
}

.gold-rule.wide { width: 100%; }

/* ── EYEBROW ─────────────────────────────────────────── */
.eyebrow {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
}

/* ── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 11px 28px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover {
  background: var(--gold-lt);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline:hover {
  background: rgba(201,168,76,0.08);
  transform: translateY(-1px);
}

/* ── CARDS ───────────────────────────────────────────── */
.card {
  background: var(--card);
  border-radius: 4px;
  border-left: 3px solid var(--gold);
  padding: 28px 28px 24px 28px;
  position: relative;
}

/* ── FORMS ───────────────────────────────────────────── */
.form-group { margin-bottom: 18px; }

label {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gray);
  margin-bottom: 6px;
  text-transform: uppercase;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  width: 100%;
  background: #181818;
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 10px 14px;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
}

input:focus, textarea:focus {
  border-color: var(--gold);
}

textarea { resize: vertical; min-height: 120px; }

/* ── UTILITY ─────────────────────────────────────────── */
.text-gold  { color: var(--gold); }
.text-gray  { color: var(--gray); }
.text-silver { color: var(--silver); }

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.15;
}

/* ── FADE IN ANIMATION ───────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s ease both; }
.fade-up-2 { animation: fadeUp 0.7s 0.15s ease both; }
.fade-up-3 { animation: fadeUp 0.7s 0.3s ease both; }
.fade-up-4 { animation: fadeUp 0.7s 0.45s ease both; }

/* ── SUCCESS / ERROR MESSAGES ────────────────────────── */
.msg {
  padding: 14px 18px;
  border-radius: 3px;
  font-size: 13px;
  margin-bottom: 18px;
  display: none;
}
.msg.success { background: rgba(201,168,76,0.12); border: 1px solid var(--gold); color: var(--gold); display: block; }
.msg.error   { background: rgba(180,60,60,0.12);  border: 1px solid #b44; color: #e88; display: block; }
