/* ── Variables ── */
:root {
  --gold: #C9A84C;
  --gold-light: #E2C06B;
  --dark: #0A0A0F;
  --dark-2: #111118;
  --dark-3: #1A1A24;
  --dark-4: #22222E;
  --text: #E8E8E8;
  --text-muted: #9090A0;
  --border: rgba(201, 168, 76, 0.2);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--dark);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Container ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── HEADER ── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 0.3s, padding 0.3s, box-shadow 0.3s;
}
#header.scrolled {
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 1px 0 var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img { height: 52px; width: auto; }
nav ul {
  display: flex;
  gap: 36px;
  align-items: center;
}
nav a {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}
nav a:hover { color: var(--gold); }
.nav-cta {
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  padding: 8px 20px;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s !important;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--dark) !important; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: background 0.2s;
}
.mobile-menu {
  display: none;
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
}
.mobile-menu.open { display: block; }
.mobile-menu li { padding: 12px 0; border-bottom: 1px solid var(--border); }
.mobile-menu a { font-size: 1rem; letter-spacing: 0.05em; text-transform: uppercase; }

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(to bottom, rgba(10,10,15,0.5) 0%, rgba(10,10,15,0.85) 100%),
    url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=1800&q=80') center/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(201,168,76,0.06) 0%, transparent 70%);
}
.hero-content {
  position: relative;
  max-width: 700px;
  padding-top: 100px;
  padding-bottom: 80px;
}
.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 600;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
}
.hero-content h1 span { color: var(--gold); }
.hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-bottom: 40px;
}
.btn-gold {
  display: inline-block;
  padding: 14px 36px;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ── SECTIONS SHARED ── */
section { padding: 100px 0; }
.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: 48px;
  line-height: 1.15;
}

/* ── SERVICES ── */
#services { background: var(--dark-2); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  padding: 40px 32px;
  border-radius: 4px;
  transition: border-color 0.3s, transform 0.3s;
}
.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.service-icon {
  font-size: 2rem;
  margin-bottom: 20px;
  filter: grayscale(0.2);
}
.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.3;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ── ABOUT ── */
#about { background: var(--dark); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 80px;
  align-items: center;
}
.about-text h2 { margin-bottom: 28px; }
.about-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 18px;
  line-height: 1.9;
}
.about-text p:last-child { margin-bottom: 0; }
.about-logo img {
  max-width: 280px;
  margin: 0 auto;
  opacity: 0.9;
  filter: drop-shadow(0 0 40px rgba(201,168,76,0.15));
}

/* ── CONTACT ── */
#contact {
  background: var(--dark-3);
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.contact-inner { max-width: 600px; margin: 0 auto; }
.contact-sub {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 0.95rem;
}
.contact-email {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  color: var(--gold);
  border-bottom: 1px solid var(--border);
  padding-bottom: 4px;
  transition: color 0.2s, border-color 0.2s;
}
.contact-email:hover { color: var(--gold-light); border-color: var(--gold-light); }
.contact-response {
  margin-top: 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ── FOOTER ── */
footer {
  background: var(--dark-2);
  padding: 48px 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.footer-logo { height: 44px; width: auto; opacity: 0.7; }
footer p { font-size: 0.8rem; color: var(--text-muted); }
.footer-domain { color: var(--gold); opacity: 0.6; font-size: 0.75rem; letter-spacing: 0.1em; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; gap: 20px; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-logo { order: -1; }
  .about-logo img { max-width: 180px; }
}
@media (max-width: 640px) {
  nav { display: none; }
  .burger { display: flex; }
  section { padding: 72px 0; }
  h2 { margin-bottom: 32px; }
  .service-card { padding: 28px 24px; }
}
