:root {
  --black: #0d0d0d;
  --black-soft: #1a1a1a;
  --gold: #d4af37;
  --gold-dark: #b08e1f;
  --gold-light: #ecd47d;
  --cream: #f5f1e8;
  --white: #ffffff;
  --text: #1a1a1a;
  --text-soft: #555;
  --text-on-dark: #f5f1e8;
  --line: rgba(212, 175, 55, 0.25);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-strong: 0 15px 40px rgba(212, 175, 55, 0.25);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--text);
  letter-spacing: 0.5px;
}

.gold { color: var(--gold); }

.text-center { text-align: center; }

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.25rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text-on-dark);
}
.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--white);
  box-shadow: 0 2px 6px rgba(212, 175, 55, 0.35);
}
.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-on-dark);
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.8rem;
}
.nav-links a {
  color: var(--text-on-dark);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.25s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 0.4rem;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gold);
  transition: 0.3s;
}

/* Hero */
.hero {
  background:
    radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.18), transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.12), transparent 50%),
    linear-gradient(180deg, var(--black) 0%, var(--black-soft) 100%);
  color: var(--text-on-dark);
  padding: 7rem 0 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(transparent 95%, rgba(212, 175, 55, 0.06) 95%),
    linear-gradient(90deg, transparent 95%, rgba(212, 175, 55, 0.06) 95%);
  background-size: 40px 40px;
  pointer-events: none;
  opacity: 0.6;
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero-content h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-on-dark);
}
.hero-content .lead {
  font-size: 1.2rem;
  color: rgba(245, 241, 232, 0.85);
  max-width: 620px;
  margin: 0 auto 2.4rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: all 0.25s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.4);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(212, 175, 55, 0.55);
}
.btn-ghost {
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-ghost:hover {
  background: var(--gold);
  color: var(--black);
}

/* Sections */
.section {
  padding: 5rem 0;
  background: var(--white);
}
.section-alt {
  background: var(--cream);
}
.section h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  text-align: center;
  font-weight: 700;
}
.section p {
  color: var(--text-soft);
  max-width: 720px;
  margin: 0 auto;
}
.divider {
  width: 70px; height: 3px;
  background: var(--gold);
  margin: 1rem auto 2.5rem;
  border-radius: 2px;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.contact-item {
  display: block;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.8rem 1.25rem;
  text-decoration: none;
  color: var(--text);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.contact-item:hover:not(.static) {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-strong);
}
.contact-item.static { cursor: default; }
.contact-icon {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}
.contact-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
  color: var(--gold-dark);
}
.contact-item p {
  font-size: 0.95rem;
  color: var(--text-soft);
  margin: 0;
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* Footer */
.footer {
  background: var(--black);
  color: var(--text-on-dark);
  padding: 2rem 0;
  text-align: center;
  font-size: 0.9rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}
.footer .footer-sub {
  color: var(--gold);
  margin-top: 0.3rem;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

/* Mobile */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    right: 1rem;
    background: var(--black);
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: var(--shadow);
    display: none;
    min-width: 180px;
  }
  .nav-links.open { display: flex; }
  .hero { padding: 4.5rem 0 4rem; }
  .section { padding: 3.5rem 0; }
}
