:root {
  --bg: #07090a;
  --ink: #f8f5ee;
  --muted: #b9b2a7;
  --soft: #7f796f;
  --line: rgba(255, 255, 255, .13);
  --line-strong: rgba(255, 255, 255, .24);
  --glass: rgba(20, 24, 25, .68);
  --glass-strong: rgba(29, 34, 36, .86);
  --gold: #d7b46a;
  --green: #77a882;
  --sage: #bcd0c0;
  --blue: #94c7d7;
  --rose: #e1b7bb;
  --red: #a51f1f;
  --shadow: 0 24px 90px rgba(0, 0, 0, .52);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% -10%, rgba(119, 168, 130, .24), transparent 30rem),
    radial-gradient(circle at 85% 8%, rgba(215, 180, 106, .15), transparent 28rem),
    linear-gradient(135deg, #050606, #111516 44%, #08090a);
}
body.blessed {
  --bg: #fbf7f1;
  --ink: #352d29;
  --muted: #756962;
  --soft: #9a8d85;
  --line: rgba(86, 62, 50, .14);
  --line-strong: rgba(86, 62, 50, .25);
  --glass: rgba(255, 252, 247, .74);
  --glass-strong: rgba(255, 249, 242, .9);
  --gold: #b9915d;
  --rose: #c98f96;
  --blue: #9ebac0;
  --shadow: 0 24px 80px rgba(91, 66, 54, .16);
  color: var(--ink);
  background:
    radial-gradient(circle at 18% -10%, rgba(201, 143, 150, .24), transparent 30rem),
    radial-gradient(circle at 86% 8%, rgba(185, 145, 93, .18), transparent 28rem),
    linear-gradient(135deg, #fffaf3, #f4ebe3 46%, #fbf7f1);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 9, 10, .72);
  backdrop-filter: blur(18px);
}
.nav {
  width: min(1200px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: linear-gradient(145deg, rgba(215, 180, 106, .2), rgba(255, 255, 255, .04));
  color: var(--gold);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .08em;
}
.brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}
.brand small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 13px;
}
.nav-links a {
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}
.nav-links a:hover { color: var(--ink); border-color: var(--gold); }

.page {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}
.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, .97fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
  padding: clamp(52px, 8vw, 96px) 0;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .24em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: .98;
}
h1 { font-size: clamp(48px, 8vw, 112px); }
h2 { font-size: clamp(34px, 5vw, 68px); }
h3 { font-size: clamp(23px, 3vw, 36px); }
p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}
.lead {
  max-width: 740px;
  color: #e4ded3;
  font-size: clamp(18px, 2.2vw, 24px);
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(215, 180, 106, .56);
  background: linear-gradient(135deg, rgba(119, 168, 130, .95), rgba(42, 79, 54, .95));
  color: #fff;
  font-weight: 850;
  box-shadow: 0 16px 48px rgba(0, 0, 0, .32);
}
.blessed .button {
  background: linear-gradient(135deg, #c98f96, #a77d65);
  color: #fffaf7;
}
.button.secondary {
  background: rgba(255, 255, 255, .055);
  border-color: var(--line-strong);
  box-shadow: none;
}
.blessed .button.secondary {
  background: rgba(255, 255, 255, .58);
  color: var(--ink);
  border-color: rgba(86, 62, 50, .2);
}
.hero-media,
.glass,
.card,
.quote-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.095), rgba(255,255,255,.035));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.hero-media {
  min-height: 560px;
  padding: clamp(24px, 4vw, 42px);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0 38%, rgba(0,0,0,.78)), var(--image);
  background-size: cover;
  background-position: center;
  opacity: .82;
}
.hero-media > * { position: relative; z-index: 1; }
.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 26px;
}
.trust {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.045);
}
.trust strong {
  display: block;
  color: var(--gold);
  font-size: 21px;
}
.trust span { color: var(--muted); font-size: 13px; }
.section {
  padding: clamp(54px, 8vw, 112px) 0;
  border-top: 1px solid var(--line);
}
.section-head {
  max-width: 850px;
  margin-bottom: 30px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.grid.two { grid-template-columns: repeat(2, 1fr); }
.card {
  padding: clamp(24px, 3vw, 34px);
}
.card p:last-child { margin-bottom: 0; }
.split {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 28px;
  align-items: start;
}
.list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.list li {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.05);
  color: var(--muted);
  line-height: 1.6;
}
.list strong { color: var(--ink); }
.image-panel {
  min-height: 460px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--image);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}
.quote-panel {
  padding: clamp(28px, 5vw, 52px);
}
.quote-panel form {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}
.field {
  width: 100%;
  min-height: 50px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.075);
  color: var(--ink);
  font: inherit;
}
textarea.field { min-height: 130px; resize: vertical; }
.checks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}
.checks label {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.045);
}
.contact-strip {
  margin-bottom: clamp(40px, 7vw, 90px);
}
.contact-strip .glass {
  padding: clamp(28px, 5vw, 52px);
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
}
.footer {
  border-top: 1px solid var(--line);
  padding: 38px clamp(18px, 4vw, 56px);
  background: rgba(0,0,0,.26);
}
.footer-inner {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
}
.footer a:hover { color: var(--gold); }

.blessed .topbar {
  background: rgba(255, 250, 244, .76);
  border-bottom-color: rgba(86, 62, 50, .12);
}
.blessed .brand-mark {
  background: linear-gradient(145deg, rgba(201, 143, 150, .22), rgba(185, 145, 93, .16));
  color: #8d6251;
}
.blessed .brand small,
.blessed .nav-links,
.blessed p,
.blessed .trust span,
.blessed .list li {
  color: var(--muted);
}
.blessed .lead {
  color: #574b45;
}
.blessed .card,
.blessed .glass,
.blessed .quote-panel {
  background: linear-gradient(145deg, rgba(255,255,255,.82), rgba(255,250,245,.58));
  border-color: rgba(86, 62, 50, .14);
  box-shadow: var(--shadow);
}
.blessed .hero-media {
  background: linear-gradient(145deg, rgba(255,255,255,.8), rgba(255,250,245,.56));
}
.blessed .hero-media::before {
  background:
    linear-gradient(180deg, rgba(74,52,46,.12) 0%, rgba(74,52,46,.3) 38%, rgba(68,48,42,.72)),
    var(--image);
  opacity: .9;
}
.blessed .hero-media h2,
.blessed .hero-media p {
  color: #fffaf7;
  text-shadow: 0 2px 18px rgba(37, 27, 23, .38);
}
.blessed .trust,
.blessed .list li,
.blessed .field,
.blessed .checks label {
  background: rgba(255,255,255,.62);
  border-color: rgba(86, 62, 50, .13);
}
.blessed .field {
  color: var(--ink);
}
.blessed .footer {
  background: rgba(255, 250, 244, .58);
}

@media (max-width: 940px) {
  .nav { align-items: flex-start; flex-direction: column; padding: 16px 0; }
  .nav-links { flex-wrap: wrap; gap: 12px; }
  .hero,
  .split,
  .contact-strip .glass { grid-template-columns: 1fr; display: grid; }
  .hero { min-height: auto; }
  .hero-media { min-height: 390px; }
  .grid,
  .grid.two,
  .trust-row,
  .checks { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
}
