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

:root {
  --black: #111111;
  --white: #ffffff;
  --gold: #D4AF37;
  --gold-soft: rgba(212, 175, 55, 0.15);
  --gold-line: rgba(212, 175, 55, 0.4);
  --gray-50: #f8f8f8;
  --gray-100: #f1f1f1;
  --gray-200: #e6e6e6;
  --gray-500: #888888;
  --gray-700: #444444;
  --gray-900: #1a1a1a;
  --serif: Georgia, 'Times New Roman', serif;
  --heading-font: 'Poppins', var(--serif);
  --body-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --max-width: 1280px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--body-font);
  color: var(--black);
  background: var(--white);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--black);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
p { margin-bottom: 1rem; color: var(--gray-700); }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--black); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0 0 1rem 1.25rem; }
li { margin-bottom: 0.5rem; color: var(--gray-700); }

/* ===== HEADER ===== */
.site-header { position: relative; z-index: 100; background: var(--white); border-bottom: 1px solid var(--gray-200); }

.top-bar {
  background: var(--black);
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  padding: 0.55rem 0;
}
.top-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.top-bar a { color: var(--white); transition: color var(--transition); }
.top-bar a:hover { color: var(--gold); }
.top-bar-contact { display: flex; gap: 1.75rem; flex-wrap: wrap; }
.top-bar-contact span { display: inline-flex; align-items: center; gap: 0.4rem; }
.top-bar-contact span::before { content: ''; width: 5px; height: 5px; background: var(--gold); border-radius: 50%; display: inline-block; }
.top-bar-social { display: flex; gap: 1rem; }

.main-nav { border-bottom: 1px solid var(--gold-line); }
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.logo {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--black);
  text-decoration: none;
  line-height: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.logo:hover { color: var(--black); }
.logo .logo-main { color: var(--black); }
.logo .logo-main span { color: var(--gold); }
.logo .logo-sub {
  font-family: var(--body-font);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  align-items: center;
}
.nav-links li a {
  font-family: var(--body-font);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--transition);
}
.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links li a:hover { color: var(--gold); }
.nav-links li a:hover::after { width: 100%; }
.nav-links li a.active,
.nav-links li a[aria-current="page"] {
  color: var(--gold);
}
.nav-links li a.active::after,
.nav-links li a[aria-current="page"]::after { width: 100%; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--gold);
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
  border-radius: 2px;
}
.nav-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(170deg, var(--black) 0%, #1f1f1f 60%, #2a2a2a 100%);
  color: var(--white);
  padding: clamp(4rem, 10vw, 8rem) 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold));
}
.hero-inner { max-width: 820px; margin: 0 auto; position: relative; z-index: 2; }
.hero-eyebrow {
  font-family: var(--body-font);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: inline-block;
  padding: 0.4rem 1.25rem;
  border: 1px solid var(--gold-line);
  border-radius: 100px;
}
.hero h1 {
  color: var(--white);
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero h1 span { color: var(--gold); font-style: italic; }
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: var(--body-font);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.95rem 2.25rem;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--gold);
  transition: left 0.35s ease;
  z-index: -1;
}
.btn:hover {
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}
.btn:hover::before { left: 0; }
.btn-light { border-color: var(--white); color: var(--white); }
.btn-light::before { background: var(--white); }
.btn-light:hover { color: var(--black); box-shadow: 0 8px 25px rgba(255,255,255,0.2); }
.btn-solid { background: var(--gold); color: var(--black); border-color: var(--gold); }
.btn-solid::before { background: var(--black); }
.btn-solid:hover { color: var(--gold); }

/* ===== SECTION DIVIDER ===== */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem 1.5rem;
  background: var(--white);
}
.section-divider::before, .section-divider::after {
  content: '';
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-line), transparent);
  width: min(200px, 20vw);
}
.section-divider .dot {
  width: 8px; height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  border: 1px solid var(--gold);
}

/* ===== CONTENT SECTIONS ===== */
.section {
  padding: clamp(3.5rem, 8vw, 6rem) 1.5rem;
}
.section-alt { background: var(--gray-50); }
.section-dark { background: var(--black); color: var(--white); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.7); }
.container { max-width: var(--max-width); margin: 0 auto; }
.container-narrow { max-width: 820px; margin: 0 auto; }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-eyebrow {
  font-family: var(--body-font);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.section-header h2 {
  font-family: var(--serif);
  font-weight: 600;
}
.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 1.25rem auto 0;
}
.section-dark .section-eyebrow { color: var(--gold); }
.section-header p {
  max-width: 600px;
  margin: 1.25rem auto 0;
  font-size: 1.05rem;
}

/* ===== GRID & CARDS ===== */
.grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.grid-2 { display: grid; gap: 3rem; grid-template-columns: 1fr 1fr; align-items: center; }
.grid-3 { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-line);
}
.card-img { width: 100%; height: 220px; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.card:hover .card-img img { transform: scale(1.06); }
.card-body { padding: 2rem; flex: 1; display: flex; flex-direction: column; }
.card-icon {
  width: 52px; height: 52px;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.4rem;
  font-family: var(--serif);
  transition: background var(--transition), color var(--transition);
}
.card:hover .card-icon { background: var(--gold); color: var(--black); }
.card-body h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.card-body p { margin-bottom: 1.25rem; flex: 1; }
.card-link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  align-self: flex-start;
  padding