:root {
  --white: #ffffff;
  --off-white: #fbf9f4;
  --gold: #c9a227;
  --gold-dark: #a8861a;
  --gold-light: #e8d27a;
  --text: #2b2b2b;
  --text-soft: #555;
  --line: rgba(201, 162, 39, 0.25);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  --shadow-strong: 0 15px 40px rgba(201, 162, 39, 0.18);
}

* { 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(255, 255, 255, 0.92);
  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);
}
.brand-mark {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.3rem;
}
.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(201, 162, 39, 0.25);
}
.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.8rem;
}
.nav-links a {
  color: var(--text);
  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(--text);
  transition: 0.3s;
}

/* Hero */
.hero {
  background:
    radial-gradient(circle at 20% 30%, rgba(201, 162, 39, 0.10), transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(201, 162, 39, 0.08), transparent 55%),
    linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
  padding: 6rem 0 5rem;
  text-align: center;
}
.hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.hero-content .lead {
  font-size: 1.15rem;
  color: var(--text-soft);
  max-width: 600px;
  margin: 0 auto 2.2rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  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(--white);
  box-shadow: 0 6px 16px rgba(201, 162, 39, 0.35);
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(201, 162, 39, 0.45);
}
.btn-ghost {
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-ghost:hover {
  background: var(--gold);
  color: var(--white);
}

/* Sections */
.section {
  padding: 5rem 0;
}
.section-alt {
  background: var(--off-white);
}
.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;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.card {
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: 14px;
  text-align: center;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}
.card-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}
.card p {
  font-size: 0.95rem;
}

/* 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);
}
.contact-item p {
  font-size: 0.95rem;
  color: var(--text-soft);
  margin: 0;
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: #ddd;
  padding: 1.8rem 0;
  text-align: center;
  font-size: 0.9rem;
}
.footer .footer-sub {
  color: var(--gold-light);
  margin-top: 0.25rem;
  font-size: 0.85rem;
}

/* Mobile */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    right: 1rem;
    background: var(--white);
    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: 4rem 0 3.5rem; }
  .section { padding: 3.5rem 0; }
}
