:root {
  --bg: #110d0d;
  --bg-soft: #1b1414;
  --paper: #efe3cf;
  --ink: #291f1f;
  --text: #fffaf0;
  --muted: #f1e4cf;
  --accent: #c79a41;
  --accent-2: #8a2018;
  --line: #4f3b2a;
  --radius: 18px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Crimson Text", Georgia, serif;
  background: radial-gradient(circle at 20% 10%, #241515 0%, var(--bg) 42%, #0a0707 100%);
  line-height: 1.65;
}

.bg-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 12% 20%, rgba(199, 154, 65, 0.18), transparent 26%),
    radial-gradient(circle at 88% 8%, rgba(138, 32, 24, 0.2), transparent 24%),
    radial-gradient(circle at 80% 80%, rgba(199, 154, 65, 0.14), transparent 28%);
  mix-blend-mode: screen;
  opacity: 0.9;
  z-index: -1;
}

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

.wrap {
  width: min(1120px, calc(100% - 2.4rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(10, 8, 8, 0.7);
  border-bottom: 1px solid rgba(199, 154, 65, 0.2);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text);
  text-decoration: none;
}

.brand-mark {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font: 700 0.82rem/1 "DM Sans", sans-serif;
  letter-spacing: 0.08em;
  color: #14110f;
  background: linear-gradient(145deg, #e9c67a, #b57a29);
}

.brand-text {
  font-family: "Cinzel", serif;
  font-size: 0.96rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.main-nav a {
  text-decoration: none;
  color: #f7eddc;
  font: 500 0.88rem/1 "DM Sans", sans-serif;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  transition: 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: #fff;
  background: rgba(199, 154, 65, 0.16);
}

.main-nav .cta-mini {
  color: #1a1207;
  background: linear-gradient(135deg, #eac677, #c48b34);
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(199, 154, 65, 0.35);
  background: transparent;
  color: var(--muted);
  font: 600 0.88rem/1 "DM Sans", sans-serif;
  border-radius: 999px;
  padding: 0.55rem 0.88rem;
}

.hero {
  position: relative;
  min-height: clamp(520px, 78vh, 840px);
  display: grid;
  align-items: center;
  isolation: isolate;
}

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 5, 5, 0.88) 0%, rgba(7, 5, 5, 0.55) 40%, rgba(7, 5, 5, 0.8) 100%),
    linear-gradient(180deg, rgba(120, 35, 23, 0.2), rgba(7, 5, 5, 0.9));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: clamp(4.8rem, 9vw, 8.5rem) 0 4rem;
}

.eyebrow,
.kicker {
  margin: 0 0 0.8rem;
  color: #e8c47a;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font: 600 0.74rem/1.4 "DM Sans", sans-serif;
}

.hero h1 {
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: clamp(2rem, 4.8vw, 3.9rem);
  line-height: 1.08;
  text-wrap: balance;
  max-width: 16ch;
}

.lead {
  margin: 1.3rem 0;
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  color: #fff7ea;
  max-width: 60ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.6rem 0 1.15rem;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.8rem 1.2rem;
  font: 600 0.9rem/1.15 "DM Sans", sans-serif;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: #1a1308;
  background: linear-gradient(130deg, #f1d08e, #c88d31);
  box-shadow: 0 10px 25px rgba(198, 140, 55, 0.25);
}

.btn-ghost {
  color: #f3ebde;
  border: 1px solid rgba(255, 241, 207, 0.42);
  background: rgba(31, 24, 16, 0.48);
}

.btn-block {
  width: 100%;
}

.hero-badges {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-badges li {
  background: rgba(12, 9, 8, 0.5);
  border: 1px solid rgba(231, 194, 124, 0.34);
  color: #fff4e1;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  font: 500 0.78rem/1 "DM Sans", sans-serif;
}

.trust-strip {
  border-block: 1px solid rgba(199, 154, 65, 0.25);
  background: rgba(18, 13, 13, 0.62);
}

.trust-grid {
  padding: 2rem 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.trust-grid article {
  background: linear-gradient(160deg, rgba(40, 27, 20, 0.66), rgba(20, 14, 14, 0.75));
  border: 1px solid rgba(199, 154, 65, 0.25);
  border-radius: var(--radius);
  padding: 1rem;
}

.trust-grid h2 {
  margin: 0 0 0.6rem;
  font-family: "Cinzel", serif;
  font-size: clamp(1.1rem, 2vw, 1.36rem);
}

.section {
  padding: clamp(3rem, 6vw, 5.7rem) 0;
}

.section h2,
.section h3 {
  margin: 0 0 0.9rem;
  line-height: 1.2;
}

.section h2 {
  font-family: "Cinzel", serif;
  font-size: clamp(1.55rem, 3.3vw, 2.75rem);
  text-wrap: balance;
}

.section p {
  margin: 0 0 1rem;
  font-size: clamp(1rem, 1.2vw, 1.16rem);
  color: #f6efe1;
}

.two-col {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(1rem, 3vw, 2.5rem);
}

.info-card {
  align-self: start;
  position: sticky;
  top: 6rem;
  background: linear-gradient(180deg, rgba(26, 19, 19, 0.95), rgba(20, 14, 14, 0.93));
  border: 1px solid rgba(199, 154, 65, 0.26);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.info-card img {
  border-radius: calc(var(--radius) - 4px);
  margin-bottom: 0.85rem;
}

.info-card h3 {
  font-family: "Cinzel", serif;
  font-size: 1.18rem;
}

.info-card ol {
  margin: 0 0 1rem 1.15rem;
  padding: 0;
}

.info-card li {
  margin-bottom: 0.5rem;
}

.section-dark {
  background: linear-gradient(180deg, rgba(9, 6, 6, 0.9), rgba(17, 12, 12, 0.97));
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(199, 154, 65, 0.28);
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

th,
td {
  text-align: left;
  padding: 0.9rem;
  border-bottom: 1px solid rgba(199, 154, 65, 0.2);
  color: #fff4df;
}

th {
  font: 700 0.8rem/1.2 "DM Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #f1d188;
  background: rgba(17, 12, 12, 0.8);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(199, 154, 65, 0.3);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(36, 27, 27, 0.78), rgba(16, 12, 12, 0.88));
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

.service-card picture {
  overflow: hidden;
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 340ms ease;
}

.service-card:hover img {
  transform: scale(1.04);
}

.service-card h3,
.service-card p {
  padding-inline: 0.9rem;
}

.service-card h3 {
  font-size: 1.08rem;
  font-family: "Cinzel", serif;
  margin-top: 0.8rem;
}

.service-card p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.section-paper {
  color: var(--ink);
  background:
    linear-gradient(175deg, rgba(255, 245, 227, 0.96), rgba(235, 220, 197, 0.95)),
    repeating-linear-gradient(0deg, rgba(82, 60, 40, 0.06), rgba(82, 60, 40, 0.06) 1px, transparent 1px, transparent 32px);
}

.section-paper .kicker {
  color: #7f2c1f;
}

.section-paper p,
.section-paper li,
.section-paper summary {
  color: #2b2121;
}

.long-copy {
  column-gap: 2rem;
}

.long-copy p,
.long-copy li {
  color: #fffaf0;
}

.section-paper .long-copy p,
.section-paper .long-copy li {
  color: #2b2121;
}

.city-grid,
.testimonials,
.footer-grid {
  display: grid;
  gap: 1rem;
}

.city-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.city-grid article {
  border: 1px solid rgba(199, 154, 65, 0.25);
  border-radius: var(--radius);
  background: rgba(30, 21, 21, 0.75);
  padding: 1rem;
}

.city-grid h3 {
  font-family: "Cinzel", serif;
  color: #f3d590;
}

.testimonials {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonials article {
  background: linear-gradient(170deg, rgba(27, 20, 20, 0.85), rgba(15, 11, 11, 0.92));
  border: 1px solid rgba(199, 154, 65, 0.28);
  border-radius: var(--radius);
  padding: 1rem;
}

.testimonials img {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(199, 154, 65, 0.45);
  margin-bottom: 0.7rem;
}

blockquote {
  margin: 0 0 0.7rem;
  font-size: 1.03rem;
  color: #fff6e8;
}

.who {
  margin: 0;
  font: 600 0.82rem/1.4 "DM Sans", sans-serif;
  color: #e3c683;
}

.steps {
  margin: 0 0 1.1rem 1.1rem;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.faq-list {
  display: grid;
  gap: 0.7rem;
}

.faq-list details {
  border: 1px solid rgba(102, 72, 47, 0.32);
  border-radius: 12px;
  background: rgba(255, 251, 242, 0.55);
  padding: 0.8rem 0.95rem;
}

.faq-list summary {
  cursor: pointer;
  font: 700 1rem/1.35 "DM Sans", sans-serif;
  color: #291f1f;
}

.faq-list p {
  margin: 0.65rem 0 0;
}

.final-cta {
  padding-top: 4rem;
}

.final-grid {
  display: grid;
  grid-template-columns: 1fr 370px;
  gap: 1.2rem;
  align-items: start;
}

.contact-card {
  background: linear-gradient(170deg, rgba(31, 22, 22, 0.88), rgba(15, 10, 10, 0.95));
  border: 1px solid rgba(199, 154, 65, 0.35);
  border-radius: var(--radius);
  padding: 0.9rem;
}

.contact-card img {
  border-radius: 12px;
  margin-bottom: 0.85rem;
}

.contact-card .meta {
  margin: 0.7rem 0 0;
  text-align: center;
  font: 600 0.76rem/1.4 "DM Sans", sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #e2c17a;
}

.small {
  font-size: 0.95rem;
  color: #f5e6cc;
}

.site-footer {
  padding: 2.3rem 0 1.2rem;
  border-top: 1px solid rgba(199, 154, 65, 0.26);
  background: rgba(8, 6, 6, 0.86);
}

.footer-grid {
  grid-template-columns: 1.2fr 0.7fr 0.9fr;
}

.site-footer h2 {
  font-size: 1rem;
  margin: 0 0 0.55rem;
  font-family: "Cinzel", serif;
  color: #efcf8a;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.site-footer a {
  color: #f4e8d5;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #fff;
}

.copyright {
  text-align: center;
  margin: 1.6rem auto 0;
  color: #baa88f;
  font: 500 0.78rem/1 "DM Sans", sans-serif;
}

.floating-wa {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(145deg, #63dc8f, #23a548);
  box-shadow: 0 14px 28px rgba(19, 131, 50, 0.45);
  z-index: 90;
}

.floating-wa svg {
  width: 1.7rem;
  height: 1.7rem;
  fill: currentColor;
}

.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.06);
  z-index: 110;
}

.reading-progress-bar {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #f2d596, #c88d31);
  box-shadow: 0 0 18px rgba(200, 141, 49, 0.45);
}

.section-tracker {
  position: sticky;
  top: 4px;
  z-index: 105;
  backdrop-filter: blur(10px);
  background: rgba(12, 8, 8, 0.78);
  border-bottom: 1px solid rgba(199, 154, 65, 0.18);
}

.section-tracker-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 2.9rem;
  padding: 0.55rem 0;
}

.section-tracker-label {
  flex: 0 0 auto;
  color: #d9bb79;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font: 700 0.66rem/1 "DM Sans", sans-serif;
}

.section-tracker-title {
  color: #fff6e6;
  font: 600 0.9rem/1.25 "DM Sans", sans-serif;
}

.article-hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  align-items: end;
  isolation: isolate;
}

.article-hero-media,
.article-hero-media img,
.article-hero-overlay {
  position: absolute;
  inset: 0;
}

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

.article-hero-overlay {
  background:
    linear-gradient(180deg, rgba(9, 6, 6, 0.2), rgba(8, 5, 5, 0.88)),
    linear-gradient(90deg, rgba(13, 10, 10, 0.92), rgba(13, 10, 10, 0.45));
  z-index: 1;
}

.article-hero-content {
  position: relative;
  z-index: 2;
  padding: 7rem 0 4rem;
  max-width: 860px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.article-meta span {
  border: 1px solid rgba(233, 198, 122, 0.35);
  background: rgba(16, 12, 12, 0.5);
  color: #fff2dd;
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  font: 500 0.78rem/1 "DM Sans", sans-serif;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 1.4rem;
  align-items: start;
}

.article-main {
  min-width: 0;
}

.article-figure {
  margin: 28px 0;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.article-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.article-figure figcaption {
  padding: 12px 16px 16px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
}

.article-sidebar {
  display: grid;
  gap: 1rem;
  position: sticky;
  top: 5.8rem;
}

.scan-grid,
.ritual-snapshot {
  display: grid;
  gap: 0.9rem;
}

.scan-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 1rem 0 1.2rem;
}

.scan-card {
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid rgba(199, 154, 65, 0.26);
  background: linear-gradient(170deg, rgba(33, 24, 24, 0.9), rgba(12, 9, 9, 0.95));
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.scan-card h3 {
  margin: 0.35rem 0 0.45rem;
  font-family: "Cinzel", serif;
  font-size: 1.02rem;
}

.scan-card p {
  margin: 0;
  font-size: 0.98rem;
}

.scan-label {
  display: inline-flex;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  background: rgba(233, 198, 122, 0.16);
  color: #f1d188;
  font: 700 0.72rem/1 "DM Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.answer-box,
.toc-card,
.sidebar-card,
.article-cta-box,
.article-teaser {
  border: 1px solid rgba(199, 154, 65, 0.26);
  border-radius: var(--radius);
  background: linear-gradient(170deg, rgba(28, 20, 20, 0.86), rgba(12, 9, 9, 0.93));
  box-shadow: var(--shadow);
}

.answer-box,
.toc-card,
.article-cta-box,
.article-teaser {
  padding: 1.1rem;
}

.answer-box p:last-child,
.toc-card ul:last-child,
.article-cta-box p:last-child {
  margin-bottom: 0;
}

.toc-list,
.sidebar-card ul {
  margin: 0;
  padding-left: 1.1rem;
}

.toc-list li,
.sidebar-card li {
  margin-bottom: 0.5rem;
}

.toc-list a,
.sidebar-card a {
  color: #f6e1b0;
  text-decoration: none;
}

.toc-list a:hover,
.sidebar-card a:hover,
.toc-list a:focus-visible,
.sidebar-card a:focus-visible {
  color: #fff7e6;
}

.sidebar-card {
  padding: 0.95rem;
}

.sidebar-nav-card {
  background: linear-gradient(165deg, rgba(42, 28, 20, 0.9), rgba(15, 10, 10, 0.95));
}

.sidebar-card img {
  border-radius: 12px;
  margin-bottom: 0.8rem;
}

.sidebar-jump-nav {
  display: grid;
  gap: 0.5rem;
}

.sidebar-jump-nav a {
  display: block;
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  border: 1px solid rgba(199, 154, 65, 0.18);
  background: rgba(255, 255, 255, 0.03);
  font: 600 0.88rem/1.25 "DM Sans", sans-serif;
}

.ritual-snapshot {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0.8rem 0 1rem;
}

.ritual-snapshot div {
  padding: 0.85rem 0.9rem;
  border-radius: 14px;
  border: 1px solid rgba(199, 154, 65, 0.22);
  background: linear-gradient(180deg, rgba(29, 21, 21, 0.88), rgba(13, 10, 10, 0.94));
}

.ritual-snapshot span {
  display: block;
  margin-bottom: 0.3rem;
  color: #ddb96f;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font: 700 0.68rem/1.2 "DM Sans", sans-serif;
}

.ritual-snapshot strong {
  display: block;
  color: #fff7ea;
  font: 700 0.92rem/1.3 "DM Sans", sans-serif;
}

.article-faq details {
  background: rgba(255, 252, 245, 0.7);
}

.article-teaser-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
  align-items: center;
}

.article-teaser-image img {
  border-radius: 14px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.article-teaser .small {
  color: #f1dcc0;
}

@media (max-width: 1080px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .final-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    max-width: 420px;
  }

  .article-layout {
    grid-template-columns: 1fr 290px;
  }

  .scan-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .two-col,
  .city-grid,
  .testimonials,
  .footer-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .info-card {
    position: static;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-layout,
  .article-teaser-grid {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }

  .ritual-snapshot {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    display: none;
    position: absolute;
    right: 1rem;
    top: calc(100% + 0.5rem);
    width: min(320px, calc(100% - 2rem));
    border-radius: 12px;
    border: 1px solid rgba(199, 154, 65, 0.25);
    background: rgba(15, 11, 11, 0.97);
    padding: 0.7rem;
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-content {
    padding-top: 6.3rem;
  }
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 2.7rem 0;
  }

  .ritual-snapshot {
    grid-template-columns: 1fr;
  }

  .section-tracker-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.28rem;
    min-height: auto;
    padding: 0.45rem 0;
  }

  .section-tracker-title {
    font-size: 0.82rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
