:root {
  --bg: #0f1217;
  --panel: #151a20;
  --text: #f3f2ee;
  --muted: #c6c1b7;
  --gold: #d2a85d;
  --gold-dark: #b88d45;
  --line: rgba(255,255,255,0.09);
  --max: 1180px;
  --shadow: 0 20px 50px rgba(0,0,0,0.28);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.narrow {
  width: min(calc(100% - 2rem), 820px);
  margin: 0 auto;
}

.section {
  padding: 5.5rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(15,18,23,0.85);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
}

.brand-top {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
}

.brand-bottom {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.site-nav a {
  color: var(--muted);
}

.site-nav a:hover {
  color: var(--text);
}

.nav-toggle {
  display: none;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 1.35rem;
  padding: 0.35rem 0.7rem;
}

.hero,
.page-hero {
  padding: 6rem 0 5rem;
  background: none;
}

.small-hero {
  padding-bottom: 3rem;
}

.hero-grid,
.two-col {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
}

.align-center { align-items: center; }
.align-start { align-items: start; }

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  font-size: 0.78rem;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 1rem;
  line-height: 1.08;
  font-family: 'Cormorant Garamond', serif;
}

h1 { font-size: clamp(3rem, 6vw, 5.1rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; }

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.lead {
  font-size: 1.18rem;
  max-width: 42rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.95rem 1.3rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold), var(--gold-dark));
  color: #15120c;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(210,168,93,0.55);
  box-shadow: none;
}

.btn-sm {
  padding: 0.7rem 1rem;
}

.credibility-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.credibility-strip span {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-card {
  display: flex;
  justify-content: center;
  align-items: center;
}

.dark-panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-list,
.cards-grid {
  display: grid;
  gap: 1rem;
}

.feature-card,
.service-card,
.quote-card,
.notice-box {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.4rem;
}

.cards-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card h2 {
  font-size: 1.6rem;
}

.accent-bg {
  background: none !important;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.check-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text);
}

.check-list li {
  margin-bottom: 0.8rem;
}

.compact li {
  margin-bottom: 0.45rem;
}

.image-frame {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.text-link {
  color: var(--gold);
  font-weight: 700;
}

.cta-band {
  padding: 4rem 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: linear-gradient(135deg, rgba(210,168,93,0.12), rgba(255,255,255,0.03));
  border: 1px solid rgba(210,168,93,0.18);
  border-radius: 22px;
  padding: 2rem;
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.timeline-item span {
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--text);
  font-weight: 600;
}

input,
textarea,
select {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: #0d1116;
  color: var(--text);
  padding: 0.9rem 1rem;
  font: inherit;
}

.mt {
  margin-top: 1rem;
}

.site-footer {
  padding: 3rem 0;
  border-top: 1px solid var(--line);
  background: #0d1116;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr;
  gap: 2rem;
}

.footer-grid a {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--muted);
}

.small {
  font-size: 0.92rem;
}

/* ===== BOOK PAGE ===== */

.book-hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 70px;
  background: none !important;
}

.book-hero .container {
  position: relative;
  z-index: 2;
  max-width: 1380px;
}

.book-layout {
  display: grid;
  grid-template-columns: 540px 1fr;
  gap: 60px;
  align-items: center;
}

.book-cover-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120%;
  padding-left: 20px;
}

.book-cover-image {
  display: block;
  width: 120%;
  max-width: 470px;
  height: auto;
  margin: 0 auto;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.book-layout h2 {
  font-size: 54px;
  line-height: 1.08;
  margin: 0 0 24px;
  max-width: 720px;
}

.book-lead {
  font-size: 20px;
  line-height: 1.8;
  color: rgba(255,255,255,0.86);
  max-width: 760px;
  margin-bottom: 30px;
}

.book-overview {
  padding: 10px 0 80px;
}

.book-overview .content-narrow {
  max-width: 900px;
  margin: 0 auto;
}

.book-overview h3 {
  font-size: 38px;
  margin-bottom: 18px;
}

.book-overview p {
  font-size: 18px;
  line-height: 1.85;
  color: rgba(255,255,255,0.84);
  margin-bottom: 18px;
}

.book-cta-box {
  margin-top: 40px;
  padding: 30px;
  border-radius: 18px;
  border: 1px solid rgba(212,168,84,0.16);
  background: rgba(255,255,255,0.03);
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}

.book-cta-box h4 {
  font-size: 24px;
  margin: 0 0 12px;
}

.book-cta-box p {
  margin-bottom: 18px;
}

@media (max-width: 1200px) {
  .book-layout {
    grid-template-columns: 440px 1fr;
    gap: 60px;
  }

  .book-cover-image {
    max-width: 390px;
  }

  .book-layout h2 {
    font-size: 50px;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .two-col,
  .cards-grid,
  .footer-grid,
  .book-layout {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .book-layout {
    gap: 30px;
    text-align: center;
  }

  .book-cover-image {
    max-width: 320px;
  }

  .book-layout h2,
  .book-lead {
    max-width: none;
  }

  .book-layout h2 {
    font-size: 38px;
  }

  .hero-actions {
    justify-content: center;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 82px;
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: #12171d;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 1rem;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav .btn {
    width: 100%;
  }

  .section {
    padding: 4.25rem 0;
  }
}
body {
  background: #0f1217 !important;
}
.book-hero::before,
.book-hero::after {
  display: none !important;
}
.book-hero,
.book-hero::before,
.book-hero::after {
  background: none !important;
  background-image: none !important;
  box-shadow: none !important;
  filter: none !important;
}

.book-cover-wrap,
.book-cover-wrap::before,
.book-cover-wrap::after,
.book-cover-image {
  background: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  filter: none !important;
}/* REMOVE ALL GOLD GLOW FROM PAGE */

* {
  box-shadow: none !important;
}

.btn {
  background: #d2a85d !important; /* flat gold, no glow */
}

.cta-inner,
.accent-bg {
  background: none !important;
}

.hero,
.page-hero,
.book-hero {
  background: #0f1217 !important;
}
