:root {
  --ink: #14181f;
  --ink-soft: #232a36;
  --gold: #c4a35a;
  --gold-deep: #9a7b35;
  --gold-soft: #e8d7a8;
  --cream: #f3eee4;
  --paper: #faf7f1;
  --white: #ffffff;
  --muted: #6b655c;
  --line: rgba(20, 24, 31, 0.1);
  --shadow: 0 24px 60px rgba(20, 24, 31, 0.12);
  --radius: 18px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Outfit", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, .display, .serif {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gold-deep);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.btn-gold {
  background: var(--gold);
  color: var(--ink);
  border: none;
  border-radius: 999px;
  padding: 14px 28px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: 0.25s ease;
}

.btn-gold:hover {
  background: var(--gold-deep);
  color: #fff;
  transform: translateY(-1px);
}

.btn-ink {
  background: var(--ink);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 14px 28px;
  font-weight: 500;
  transition: 0.25s ease;
}

.btn-ink:hover { background: var(--ink-soft); color: #fff; }

.btn-ghost {
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
  border-radius: 999px;
  padding: 14px 28px;
  background: transparent;
  transition: 0.25s ease;
}

.btn-ghost:hover { background: #fff; color: var(--ink); }

.btn-line {
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  border-radius: 999px;
  padding: 13px 26px;
  transition: 0.25s ease;
}

.btn-line:hover { background: var(--ink); color: #fff; }

/* NAV */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1040;
  background: rgba(250, 247, 241, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.site-nav .navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink) !important;
}

.brand-mark {
  width: 38px;
  height: 38px;
}

.nav-link {
  font-size: 0.92rem;
  color: var(--ink) !important;
  padding: 8px 14px !important;
  position: relative;
}

.nav-link.active,
.dropdown-item.active {
  color: var(--gold-deep) !important;
}

.navbar-nav .nav-link:hover { color: var(--gold-deep) !important; }

.navbar-toggler {
  border: 1px solid rgba(20, 24, 31, 0.18);
  border-radius: 10px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(20, 24, 31, 0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.dropdown-menu {
  border: none;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 12px;
  min-width: 280px;
}

.dropdown-item {
  border-radius: 10px;
  padding: 9px 12px;
  font-size: 0.92rem;
}

.dropdown-item:hover { background: var(--cream); }

/* HERO */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: end;
  color: #fff;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,24,31,.15) 0%, rgba(20,24,31,.72) 100%);
}

.hero-copy { position: relative; z-index: 2; padding: 80px 0 72px; }

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  max-width: 14ch;
  color: #fff;
}

.hero p.lead {
  max-width: 42ch;
  color: rgba(255,255,255,.86);
  font-size: 1.12rem;
}

.page-hero {
  position: relative;
  min-height: 46vh;
  display: flex;
  align-items: end;
  color: #fff;
}

.page-hero .hero-media::after {
  background: linear-gradient(180deg, rgba(20,24,31,.2), rgba(20,24,31,.7));
}

/* SECTIONS */
.section { padding: 96px 0; }

.section-tight { padding: 72px 0; }

.bg-ink { background: var(--ink); color: #fff; }
.bg-cream { background: var(--cream); }

.split-img {
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  border-radius: var(--radius);
}

.gold-rule {
  width: 56px;
  height: 2px;
  background: var(--gold);
  border: 0;
  opacity: 1;
  margin: 20px 0;
}

/* CARDS */
.service-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  box-shadow: 0 10px 30px rgba(20,24,31,.06);
  transition: transform .3s ease, box-shadow .3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-card img {
  height: 210px;
  width: 100%;
  object-fit: cover;
}

.service-card .body { padding: 24px 24px 28px; }

.service-card h3 { font-size: 1.7rem; margin-bottom: 8px; }

.icon-pill {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--cream);
  display: grid;
  place-items: center;
  color: var(--gold-deep);
  margin-bottom: 14px;
}

.stat {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 18px;
}

.stat b {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.6rem;
  color: var(--gold);
  font-weight: 500;
}

.process-step {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  height: 100%;
  border: 1px solid var(--line);
}

.process-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--gold);
}

.blog-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  box-shadow: 0 10px 28px rgba(20,24,31,.06);
}

.blog-card img { height: 230px; width: 100%; object-fit: cover; }

.blog-card .body { padding: 24px; }

.meta {
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}

.testimonial {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  height: 100%;
}

.stars { color: var(--gold); letter-spacing: 2px; }

/* FORMS */
.form-shell {
  background: #fff;
  border-radius: 24px;
  padding: 36px;
  box-shadow: var(--shadow);
}

.form-control, .form-select {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  background: #fcfbf8;
}

.form-control:focus, .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,163,90,.2);
}

.form-note { font-size: .9rem; color: var(--muted); }

.alert-soft {
  border: none;
  border-radius: 14px;
  padding: 14px 16px;
}

/* FOOTER */
.site-footer {
  background: #0f1218;
  color: rgba(255,255,255,.78);
  padding: 72px 0 24px;
}

.site-footer h5 {
  color: #fff;
  font-size: 1.35rem;
  margin-bottom: 16px;
}

.site-footer a { color: rgba(255,255,255,.78); }
.site-footer a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 40px;
  padding-top: 20px;
  font-size: .88rem;
}

/* BLOG ARTICLE */
.article-wrap { max-width: 760px; }

.article-wrap h2 { font-size: 2.1rem; margin-top: 2rem; }

.article-hero-img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: var(--radius);
}

/* MISC */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: slide 28s linear infinite;
  padding: 14px 0;
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}

@keyframes slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.reveal { opacity: 0; transform: translateY(18px); animation: fadeup .8s ease forwards; }
@keyframes fadeup { to { opacity: 1; transform: none; } }

.map-frame {
  width: 100%;
  min-height: 340px;
  border: 0;
  border-radius: var(--radius);
  filter: grayscale(.2) contrast(1.05);
}

.legal p, .legal li { color: #3b3833; }

@media (max-width: 991px) {
  .hero { min-height: 78vh; }
  .section { padding: 72px 0; }
  .navbar-collapse {
    background: var(--paper);
    padding: 16px;
    border-radius: 16px;
    margin-top: 10px;
    box-shadow: var(--shadow);
  }
}
