:root {
  --ink: #f7eddf;
  --muted: #b8a5c5;
  --paper: #080611;
  --surface: #130b20;
  --line: #342044;
  --night: #07050f;
  --teal: #8d3ab1;
  --gold: #c99442;
  --wine: #6f2c91;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.74), rgba(251, 248, 241, 1) 320px),
    var(--paper);
  font-family: "Space Grotesk", Arial, sans-serif;
  line-height: 1.6;
}

body,
button,
input,
textarea,
select {
  overflow-wrap: anywhere;
}

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

img,
video {
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

input,
textarea,
select,
button {
  max-width: 100%;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 16px;
  color: var(--paper);
  background:
    radial-gradient(circle at 50% 42%, rgba(196, 154, 69, 0.18), transparent 26%),
    linear-gradient(145deg, rgba(24, 32, 31, 0.98), rgba(36, 24, 40, 0.96));
  transition: opacity 420ms ease, visibility 420ms ease;
}

.site-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-orb {
  position: relative;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  color: #fff7ea;
  background:
    radial-gradient(circle at 36% 24%, rgba(255, 247, 234, 0.22), transparent 28%),
    linear-gradient(145deg, #8f3dbc, #32114a 54%, #09050d);
  border: 1px solid rgba(242, 200, 121, 0.72);
  border-radius: 50%;
  box-shadow:
    0 0 0 10px rgba(242, 200, 121, 0.12),
    0 18px 44px rgba(143, 61, 188, 0.38),
    0 0 34px rgba(242, 200, 121, 0.2);
  font-family: "Cinzel Decorative", "Space Grotesk", Arial, sans-serif;
  font-weight: 700;
  font-size: 2.28rem;
  line-height: 1;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.82), 0 0 16px rgba(242, 200, 121, 0.36);
}

.loader-orb span {
  transform: translateY(1px);
}

.loader-orb::before,
.loader-orb::after {
  content: "";
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(196, 154, 69, 0.36);
  border-radius: 50%;
  animation: loader-ring 1200ms ease-in-out infinite;
}

.loader-orb::after {
  inset: -22px;
  border-color: rgba(143, 61, 188, 0.42);
  animation-delay: 180ms;
}

.site-loader p {
  margin: 0;
  color: #f5ead7;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-nav-backdrop {
  display: none;
}

@keyframes loader-ring {
  0% {
    opacity: 0.9;
    transform: scale(0.86);
  }

  100% {
    opacity: 0;
    transform: scale(1.18);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(251, 248, 241, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.14rem;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--paper);
  background: var(--night);
  border: 1px solid rgba(196, 154, 69, 0.45);
  font-family: "Cinzel Decorative", "Space Grotesk", Arial, sans-serif;
  font-size: 1.38rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
  isolation: isolate;
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 4px;
  z-index: -1;
  border: 1px solid rgba(255, 247, 234, 0.18);
  border-radius: inherit;
  pointer-events: none;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.main-nav a {
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.main-nav a i,
.mobile-nav-cta {
  display: none;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--ink);
  background: #efe6d7;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-align: center;
  cursor: pointer;
  gap: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta,
.btn.primary {
  color: var(--paper);
  background: linear-gradient(135deg, var(--teal), #0a5f59);
  box-shadow: 0 14px 34px rgba(15, 118, 110, 0.22);
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.btn.ghost {
  color: var(--night);
  background: transparent;
  border-color: var(--line);
}

.btn.ghost.light {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(12px);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--night);
  border-radius: 999px;
  transition: transform 220ms ease, opacity 220ms ease;
}

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 78px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(290px, 0.85fr);
  gap: 42px;
  min-height: 680px;
  align-items: center;
}

.hero-content h1,
.page-hero h1,
.section-heading h2,
.intro-band h2,
.split-section h2,
.quote-band h2 {
  margin: 0;
  max-width: 780px;
  font-family: "Space Grotesk", Arial, sans-serif;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.hero-content h1 {
  font-size: clamp(2rem, 4vw, 3.45rem);
}

.hero-text,
.page-hero p,
.split-section p,
.quote-band p {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.08rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 14px;
  color: var(--wine);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.price-highlight {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  width: fit-content;
  gap: 2px 14px;
  margin: 18px 0 16px;
  padding: 14px 18px;
  color: #fff7ea;
  background:
    radial-gradient(circle at 82% 28%, rgba(242, 200, 121, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(20, 10, 34, 0.94), rgba(47, 18, 69, 0.92));
  border: 1px solid rgba(242, 200, 121, 0.42);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28), 0 0 34px rgba(242, 200, 121, 0.08);
}

.price-highlight span,
.price-highlight small {
  font-weight: 900;
}

.price-highlight span {
  color: #f2c879;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.price-highlight strong {
  grid-row: span 2;
  color: #f2c879;
  font-size: clamp(2.6rem, 6vw, 4.1rem);
  line-height: 0.88;
}

.price-highlight small {
  color: #e4d6ec;
  font-size: 0.9rem;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  padding: 34px;
  color: var(--paper);
  background:
    linear-gradient(145deg, rgba(24, 32, 31, 0.92), rgba(116, 53, 69, 0.85)),
    url("/images/p (2).jpg");
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-video-panel {
  background: var(--night);
}

.hero-mobile-video-panel {
  display: none;
}

.hero-panel-video,
.hero-panel-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-panel-video {
  object-fit: cover;
}

.hero-panel-overlay {
  background:
    linear-gradient(180deg, rgba(12, 10, 16, 0.18), rgba(12, 10, 16, 0.78)),
    linear-gradient(135deg, rgba(24, 32, 31, 0.3), rgba(116, 53, 69, 0.42));
}

.hero-panel-content {
  position: relative;
  z-index: 1;
}

.hero-panel p {
  margin-top: 100px;
  color: #f5ead7;
}

.hero-panel strong {
  display: block;
  max-width: 320px;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 2rem;
  line-height: 1.12;
}

.hero-panel small {
  display: block;
  margin-top: 18px;
  color: #e9dcc8;
}

.hero-premium {
  position: relative;
  overflow: hidden;
  width: min(1180px, calc(100% - 36px));
  min-height: 560px;
  margin-top: 26px;
  padding: clamp(38px, 6vw, 78px);
  color: var(--night);
  background:
    radial-gradient(circle at 16% 16%, rgba(232, 198, 170, 0.32), transparent 28%),
    radial-gradient(circle at 82% 16%, rgba(196, 154, 69, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(211, 178, 152, 0.58) 0%, rgba(199, 170, 193, 0.56) 48%, rgba(186, 210, 204, 0.58) 100%),
    url("/images/p (1).jpg");
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(196, 154, 69, 0.24);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform: perspective(1200px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 220ms ease;
}

.hero-premium::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(196, 154, 69, 0.18);
  border-radius: 8px;
  pointer-events: none;
}

.hero-premium::after {
  content: "";
  position: absolute;
  right: 28%;
  bottom: -90px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(196, 154, 69, 0.18), transparent 68%);
  pointer-events: none;
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero-orbit {
  position: absolute;
  inset: auto 42px 42px auto;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(196, 154, 69, 0.28);
  border-radius: 50%;
  opacity: 0.7;
}

.monelle-identity-card {
  position: absolute;
  top: 26px;
  right: 28px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  max-width: calc(100% - 56px);
  padding: 10px 13px 10px 10px;
  color: var(--night);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(196, 154, 69, 0.26);
  border-radius: 999px;
  box-shadow: 0 18px 45px rgba(24, 32, 31, 0.12);
  backdrop-filter: blur(16px);
}

.monelle-identity-card img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border: 2px solid #fff;
  border-radius: 50%;
}

.monelle-identity-card div {
  display: grid;
  gap: 1px;
}

.monelle-name-line {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.monelle-identity-card strong {
  line-height: 1;
}

.monelle-identity-card div > span:not(.monelle-name-line) {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}

.monelle-consult-link {
  width: max-content;
  margin-top: 3px;
  padding: 5px 11px;
  color: #fff;
  background: var(--gold);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.monelle-identity-card i {
  color: #1d9bf0;
  font-size: 1.25rem;
}

.hero-orbit span {
  position: absolute;
  display: block;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.hero-orbit span:nth-child(1) {
  top: 16px;
  left: 54px;
}

.hero-orbit span:nth-child(2) {
  right: 18px;
  top: 82px;
}

.hero-orbit span:nth-child(3) {
  left: 48px;
  bottom: 10px;
}

.hero-premium .hero-content h1 {
  max-width: 720px;
  font-size: clamp(2rem, 3.8vw, 3.35rem);
}

.hero-premium .hero-text {
  color: var(--night);
  font-weight: 600;
}

.hero-premium .eyebrow {
  color: var(--night);
  font-weight: 800;
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  margin: 22px 0 0;
  padding: 8px;
  color: var(--night);
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(196, 154, 69, 0.22);
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  backdrop-filter: blur(16px);
}

.hero-note span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.58);
  border-radius: 999px;
}

.hero-micro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 650px;
  margin-top: 28px;
}

.hero-micro-grid span {
  padding: 14px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(196, 154, 69, 0.2);
  border-radius: 8px;
  backdrop-filter: blur(12px);
  font-size: 0.92rem;
}

.hero-micro-grid strong {
  display: block;
  color: var(--wine);
  font-size: 1.42rem;
  line-height: 1;
}

.premium-card {
  min-height: 390px;
  background:
    linear-gradient(145deg, rgba(24, 32, 31, 0.72), rgba(116, 53, 69, 0.52)),
    url("/images/voy (2).png");
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.mini-consult-card {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 12px 14px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  backdrop-filter: blur(12px);
  font-weight: 800;
}

.mini-consult-card i {
  color: var(--gold);
  font-size: 1.35rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  width: min(1120px, calc(100% - 36px));
  margin: -22px auto 0;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(24, 32, 31, 0.08);
}

.trust-strip div {
  position: relative;
  padding: 24px;
  background: var(--surface);
}

.trust-strip i {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  color: var(--teal);
  background: rgba(15, 118, 110, 0.1);
  border-radius: 50%;
  font-size: 1.22rem;
}

.trust-strip strong {
  display: block;
  color: var(--wine);
  font-size: 1.55rem;
  line-height: 1;
}

.trust-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.mood-board {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 30px;
  align-items: center;
  padding-top: 96px;
}

.mood-copy {
  padding: 34px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 45px rgba(24, 32, 31, 0.06);
}

.mood-copy h2,
.testimonial-top h2,
.faq-section h2 {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.mood-copy p {
  color: var(--muted);
}

.mood-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 22px;
}

.mood-points span {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  color: var(--ink);
  background: rgba(15, 118, 110, 0.06);
  border: 1px solid rgba(15, 118, 110, 0.14);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
}

.mood-points i {
  color: var(--gold);
}

.mood-gallery {
  display: grid;
  grid-template-columns: 1.05fr 0.8fr;
  grid-template-rows: 190px 190px;
  gap: 12px;
}

.mood-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(24, 32, 31, 0.12);
}

.mood-gallery img:first-child {
  grid-row: span 2;
}

.status-dot,
.card-icon {
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
}

.status-dot {
  width: 28px;
  height: 28px;
  color: var(--night);
  font-size: 1rem;
}

.card-icon {
  width: 44px;
  height: 44px;
  color: var(--teal);
  background: rgba(15, 118, 110, 0.1);
  font-size: 1.35rem;
}

.intro-band,
.quote-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  padding: 48px;
  background: var(--night);
  color: var(--paper);
  border-radius: 8px;
}

.intro-band h2,
.quote-band h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.stats-row span,
.values-list span {
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.stats-row strong {
  display: block;
  color: var(--gold);
  font-size: 1.6rem;
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading.narrow {
  max-width: 780px;
}

.section-heading h2,
.page-hero h1 {
  font-size: clamp(1.9rem, 4vw, 3.35rem);
}

.card-grid,
.pricing-grid,
.blog-grid,
.consultation-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card-grid {
  perspective: 900px;
}

.service-card,
.pricing-card,
.post-card,
.consultation-list article,
.contact-card {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 45px rgba(24, 32, 31, 0.06);
}

.service-card,
.feature-grid article,
.pricing-card,
.post-card,
.consultation-list article {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.feature-grid article:hover,
.pricing-card:hover,
.post-card:hover,
.consultation-list article:hover {
  transform: translateY(-5px);
  border-color: rgba(196, 154, 69, 0.45);
  box-shadow: 0 24px 60px rgba(24, 32, 31, 0.11);
}

.service-card h2,
.service-card h3,
.pricing-card h2,
.post-card h2,
.consultation-list h2,
.contact-card h2 {
  margin: 16px 0 10px;
  line-height: 1.15;
}

.service-card p,
.pricing-card span,
.post-card p,
.consultation-list p,
.contact-card p {
  color: var(--muted);
}

.service-card.tall {
  min-height: 330px;
}

.service-card.refined {
  position: relative;
  overflow: hidden;
  min-height: 250px;
}

.service-card.refined::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(196, 154, 69, 0.13), transparent 68%);
  pointer-events: none;
}

.service-card.refined > * {
  position: relative;
  z-index: 1;
}

.service-card a,
.post-card a,
.contact-card a {
  display: block;
  margin-top: 18px;
  color: var(--teal);
  font-weight: 800;
}

.service-card .service-link {
  display: inline-flex;
}

.contact-social-links {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.contact-card .contact-social-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 0;
  padding: 10px 12px;
  color: var(--ink);
  background: rgba(15, 118, 110, 0.06);
  border: 1px solid rgba(15, 118, 110, 0.14);
  border-radius: 8px;
}

.contact-social-links i {
  color: var(--teal);
  font-size: 1.25rem;
}

.mobile-label {
  display: none;
}

.consultation-format-card .card-icon {
  margin-bottom: 6px;
}

.consultation-format-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--teal);
  font-weight: 800;
}

.consultation-helper,
.consultation-prepare {
  padding-top: 36px;
}

.consultation-choice-grid,
.consultation-checklist {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.consultation-choice-grid article,
.consultation-checklist span {
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 45px rgba(24, 32, 31, 0.06);
}

.consultation-choice-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 1.08rem;
}

.consultation-choice-grid p {
  margin: 0;
  color: var(--muted);
}

.consultation-process {
  align-items: center;
}

.consultation-plans {
  padding-top: 42px;
}

.consultation-checklist {
  grid-template-columns: repeat(4, 1fr);
}

.consultation-checklist span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
}

.consultation-checklist i {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 26px;
  height: 26px;
  color: var(--paper);
  background: var(--teal);
  border-radius: 50%;
}

.read-more-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-top: 18px;
  padding: 0 16px;
  color: var(--teal);
  background: transparent;
  border: 1px solid rgba(15, 118, 110, 0.28);
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}

.service-inline-video {
  display: block;
  width: 100%;
  margin-top: 18px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--night);
  border-radius: 8px;
}

.service-details {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.service-details[hidden] {
  display: none;
}

.service-details p {
  margin: 0;
}

.service-details strong {
  margin-top: 4px;
  color: var(--ink);
}

.service-details ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-details li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

.service-details li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.service-details .service-cta {
  display: inline-flex;
  justify-self: start;
  color: var(--paper);
}

.blog-category-list {
  display: grid;
  gap: 22px;
}

.blog-services-section {
  padding-bottom: 34px;
}

.blog-guidance-banner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: clamp(28px, 5vw, 46px);
  color: var(--paper);
  background:
    radial-gradient(circle at 82% 24%, rgba(196, 154, 69, 0.2), transparent 30%),
    linear-gradient(135deg, rgba(11, 6, 20, 0.96), rgba(24, 13, 37, 0.94)),
    url("/images/p (5).jpg");
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(196, 154, 69, 0.2);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.blog-guidance-banner .status-dot {
  width: 42px;
  height: 42px;
  margin-top: 2px;
  color: #fff7ea;
  background: linear-gradient(135deg, #8f3dbc, #5a247b);
  border: 1px solid rgba(242, 200, 121, 0.46);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
  font-size: 1.2rem;
}

.blog-guidance-banner p {
  margin: 0 0 8px;
  color: #f2c879;
  font-weight: 900;
}

.blog-guidance-banner h2 {
  max-width: 760px;
  margin: 0;
  color: #fff7ea;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.08;
}

.blog-guidance-banner span:not(.status-dot) {
  display: block;
  max-width: 660px;
  margin-top: 14px;
  color: #e4d6ec;
}

.blog-category-card {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 45px rgba(24, 32, 31, 0.06);
}

.blog-category-card header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.blog-category-card .eyebrow {
  margin-bottom: 4px;
}

.blog-category-card h2 {
  margin: 0;
  line-height: 1.15;
}

.article-title-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-preview {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 16px 18px;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.article-preview::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 26px;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.article-preview h3 {
  margin: 0;
  padding-left: 16px;
  font-size: 1rem;
  line-height: 1.25;
}

.article-preview h3 a {
  color: inherit;
  font-weight: 800;
}

.article-preview h3 a:hover {
  color: var(--teal);
}

.blog-index-page {
  display: grid;
  gap: 26px;
}

.blog-index-page .section-heading h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.02;
}

.blog-index-page .section-heading p:not(.eyebrow) {
  max-width: 680px;
  margin: 12px auto 0;
  color: var(--muted);
}

.blog-index-list {
  display: grid;
  gap: 24px;
}

.article-read-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  gap: 7px;
  min-height: 36px;
  padding: 0 13px;
  color: #09050d;
  background: linear-gradient(135deg, #f0c46d, #c99442);
  border: 1px solid rgba(242, 200, 121, 0.54);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 900;
}

.article-read-link:hover {
  transform: translateY(-1px);
}

.article-consultation-cta {
  display: grid;
  gap: 8px;
  padding: 14px;
  background: rgba(15, 118, 110, 0.06);
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: 8px;
}

.article-consultation-cta strong {
  color: var(--ink);
}

.article-consultation-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.article-consultation-cta .btn {
  justify-self: start;
  margin-top: 4px;
}

.category-consultation-cta {
  margin-top: 18px;
}

.article-page,
.similar-page {
  display: grid;
  gap: 28px;
  max-width: 980px;
}

.article-hero {
  display: grid;
  gap: 14px;
  padding: clamp(28px, 5vw, 48px);
  color: var(--paper);
  background:
    radial-gradient(circle at 84% 18%, rgba(196, 154, 69, 0.2), transparent 28%),
    linear-gradient(135deg, rgba(11, 6, 20, 0.96), rgba(38, 16, 55, 0.92)),
    url("/images/iv (5).jpeg");
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(196, 154, 69, 0.24);
  border-radius: 8px;
}

.article-hero .eyebrow {
  color: var(--gold);
}

.article-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.02;
}

.article-hero h1 span {
  color: var(--gold);
}

.article-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: #e7d9ef;
  font-weight: 700;
}

.article-body {
  display: grid;
  gap: 18px;
}

.article-body section {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.article-body h2 {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.article-body p {
  margin: 0 0 12px;
  color: var(--muted);
}

.article-body p:last-child {
  margin-bottom: 0;
}

.article-bottom-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.article-bottom-actions .btn {
  width: 100%;
  min-height: 52px;
  border-radius: 8px;
}

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

.article-extra-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.article-extra-links a {
  padding: 7px 10px;
  color: var(--teal);
  background: rgba(15, 118, 110, 0.08);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
}

.legal-page {
  display: grid;
  gap: 18px;
  max-width: 920px;
}

.legal-page article {
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 45px rgba(24, 32, 31, 0.06);
}

.legal-page h2 {
  margin: 0 0 10px;
  font-size: 1.22rem;
}

.legal-page p {
  margin: 0;
  color: var(--muted);
}

.legal-page ul {
  display: grid;
  gap: 8px;
  margin: 12px 0;
  padding-left: 20px;
  color: var(--muted);
}

.about-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 320px;
  margin-top: 26px;
  padding: 42px;
  overflow: hidden;
  color: var(--paper);
  background:
    linear-gradient(115deg, rgba(10, 9, 14, 0.9), rgba(69, 31, 76, 0.68) 45%, rgba(196, 154, 69, 0.25)),
    linear-gradient(180deg, rgba(10, 9, 14, 0.1), rgba(10, 9, 14, 0.82)),
    url("/images/p (3).jpg");
  background-size: cover;
  background-position: center;
  border-radius: 8px;
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 74% 28%, rgba(196, 154, 69, 0.28), transparent 26%);
  pointer-events: none;
}

.about-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.about-hero .eyebrow {
  color: var(--gold);
}

.about-hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(1.9rem, 4vw, 3.35rem);
  line-height: 1.02;
}

.about-hero p:not(.eyebrow) {
  max-width: 650px;
  color: #eadfce;
  font-size: 1.08rem;
}

.about-banner {
  background:
    linear-gradient(115deg, rgba(10, 9, 14, 0.9), rgba(69, 31, 76, 0.68) 45%, rgba(196, 154, 69, 0.25)),
    linear-gradient(180deg, rgba(10, 9, 14, 0.1), rgba(10, 9, 14, 0.82)),
    url("/images/iv (8).jpeg");
  background-size: cover;
  background-position: center;
}

.about-story-copy {
  display: grid;
  gap: 18px;
  max-width: 920px;
  padding: 34px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 45px rgba(24, 32, 31, 0.06);
}

.about-story-copy p {
  margin: 0;
  color: var(--muted);
}

.about-premium-grid,
.about-sector-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.about-premium-grid article,
.about-sector-grid article {
  position: relative;
  overflow: hidden;
  padding: 24px;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.about-premium-grid article::after,
.about-sector-grid article::after {
  content: "";
  position: absolute;
  right: -44px;
  top: -44px;
  width: 110px;
  height: 110px;
  background: radial-gradient(circle, rgba(196, 154, 69, 0.18), transparent 68%);
  pointer-events: none;
}

.about-premium-grid article:hover,
.about-sector-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(196, 154, 69, 0.5);
  box-shadow: 0 24px 60px rgba(24, 32, 31, 0.11);
}

.about-premium-grid i {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  color: var(--gold);
  background: rgba(116, 53, 69, 0.1);
  border-radius: 50%;
  font-size: 1.35rem;
}

.about-premium-grid h3,
.about-sector-grid h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  line-height: 1.2;
}

.about-guidance-band,
.about-reviews {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 38px;
  align-items: center;
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(24, 32, 31, 0.95), rgba(116, 53, 69, 0.88)),
    var(--night);
  border-radius: 8px;
}

.about-guidance-band h2,
.about-reviews h2 {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  line-height: 1.06;
}

.about-guidance-band p:not(.eyebrow),
.about-reviews p {
  color: #e5dac8;
}

.about-review-list {
  display: grid;
  gap: 14px;
}

.about-review-list article {
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.about-review-list span {
  color: var(--gold);
  letter-spacing: 2px;
}

.about-review-list p {
  margin: 8px 0 0;
}

.about-review-list .btn.ghost {
  justify-self: start;
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.2);
}

.about-final-cta {
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.1), rgba(196, 154, 69, 0.12)),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: start;
}

.presentation-section {
  padding-top: 92px;
}

.presentation-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 34px;
  align-items: stretch;
}

.portrait-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  min-height: 520px;
  padding: 30px;
  color: var(--paper);
  background:
    linear-gradient(180deg, rgba(24, 32, 31, 0.05), rgba(24, 32, 31, 0.82)),
    url("/images/o (2).png");
  background-size: cover;
  background-position: center;
  border-radius: 8px;
}

.portrait-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 6, 17, 0.18), rgba(8, 6, 17, 0.88)),
    radial-gradient(circle at 20% 80%, rgba(201, 148, 66, 0.18), transparent 34%);
  pointer-events: none;
}

.portrait-panel div {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 6px;
  max-width: 100%;
  padding: 14px 16px;
  background: rgba(8, 6, 17, 0.72);
  border: 1px solid rgba(242, 200, 121, 0.34);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(10px);
}

.portrait-panel span {
  color: #f2c879;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.75);
}

.portrait-panel strong {
  color: #fff7ea;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 2.2rem;
  line-height: 1;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.82);
}

.presentation-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 38px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 45px rgba(24, 32, 31, 0.06);
}

.presentation-copy p {
  margin: 0;
  color: var(--muted);
}

.consultation-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 6px;
  padding: 16px;
  color: var(--ink);
  background: rgba(196, 154, 69, 0.08);
  border: 1px solid rgba(196, 154, 69, 0.2);
  border-radius: 8px;
  font-weight: 800;
}

.consultation-note i {
  flex: 0 0 auto;
  color: var(--gold);
  font-size: 1.35rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.feature-grid article {
  padding: 24px;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature-grid h3 {
  margin: 14px 0 8px;
  font-size: 1.02rem;
  line-height: 1.2;
}

.feature-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--night);
  background: rgba(196, 154, 69, 0.2);
  font-size: 1.15rem;
}

.domain-section {
  width: min(1180px, calc(100% - 24px));
  padding: 30px 0 70px;
}

.domain-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
}

.domain-rail::before,
.domain-rail::after {
  content: "";
  position: absolute;
  inset: -16px;
  z-index: -1;
  background:
    radial-gradient(circle at 8% 50%, rgba(242, 200, 121, 0.2), transparent 18%),
    radial-gradient(circle at 92% 50%, rgba(143, 61, 188, 0.22), transparent 20%);
  border-radius: 12px;
  pointer-events: none;
}

.domain-rail::after {
  inset: -1px;
  background: linear-gradient(90deg, rgba(242, 200, 121, 0.32), rgba(143, 61, 188, 0.14), rgba(242, 200, 121, 0.32));
  opacity: 0.55;
}

.domain-card {
  position: relative;
  display: flex;
  min-height: 282px;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  padding: 18px 14px 14px;
  color: #fff8e6;
  background:
    radial-gradient(circle at 50% 0%, rgba(242, 200, 121, 0.14), transparent 34%),
    radial-gradient(circle at 18% 16%, rgba(143, 61, 188, 0.2), transparent 34%),
    linear-gradient(180deg, #1a0c2d 0%, #10091d 100%);
  border: 1px solid rgba(242, 200, 121, 0.28);
  border-radius: 7px;
  box-shadow: inset 0 1px 0 rgba(255, 247, 234, 0.08), 0 18px 34px rgba(9, 5, 13, 0.32);
  text-align: center;
}

.domain-icon {
  display: grid;
  align-self: center;
  place-items: center;
  width: 46px;
  height: 46px;
  color: #f2c879;
  background: rgba(242, 200, 121, 0.08);
  border: 2px solid rgba(242, 200, 121, 0.46);
  border-radius: 50%;
  font-size: 1.55rem;
  box-shadow: 0 0 18px rgba(242, 200, 121, 0.16);
}

.domain-card h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin: 0;
  color: #fff8e6;
  font-size: 0.94rem;
  font-weight: 900;
  line-height: 1.14;
}

.domain-card > p,
.domain-details p {
  margin: 0;
  color: #e4d6ec;
  font-size: 0.73rem;
  font-weight: 800;
  line-height: 1.42;
}

.domain-card > p {
  display: -webkit-box;
  min-height: 72px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.domain-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  margin-top: auto;
  padding: 9px 10px;
  color: #fff7ea;
  background: rgba(255, 248, 230, 0.07);
  border: 1px solid rgba(242, 200, 121, 0.24);
  border-radius: 7px;
  font-size: 0.7rem;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255, 247, 234, 0.07);
}

.domain-price span {
  color: #d9cae6;
  font-size: 0.66rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.domain-price strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  min-height: 32px;
  padding: 0 10px;
  color: #f2c879;
  background: linear-gradient(180deg, rgba(242, 200, 121, 0.18), rgba(242, 200, 121, 0.08));
  border: 1px solid rgba(242, 200, 121, 0.34);
  border-radius: 7px;
  font-size: 1.08rem;
  line-height: 1;
}

.domain-details {
  width: 100%;
}

.domain-details[hidden] {
  display: none;
}

.domain-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 2px;
  align-self: center;
}

.domain-card .domain-link,
.domain-card .domain-consult {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  box-sizing: border-box;
  padding: 0 10px;
  border-radius: 7px;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  font-family: inherit;
  text-align: center;
  vertical-align: middle;
}

.domain-card .domain-link {
  flex: 1 1 0;
  min-width: 0;
  appearance: none;
  margin: 0;
  cursor: pointer;
  color: #fff8e6;
  background: rgba(143, 61, 188, 0.28);
  border: 1px solid rgba(242, 200, 121, 0.34);
  box-shadow: none;
}

.domain-card .domain-consult {
  flex: 1 1 0;
  min-width: 0;
  color: #fff8e6;
  background: linear-gradient(180deg, #ffd46b 0%, #f6a719 55%, #e58a08 100%);
  border: 1px solid rgba(255, 238, 176, 0.6);
  box-shadow: 0 8px 16px rgba(246, 167, 25, 0.28);
}

.premium-process {
  padding: 56px;
  color: var(--paper);
  background: var(--night);
  border-radius: 8px;
}

.premium-process .eyebrow {
  color: var(--gold);
}

.premium-process p {
  color: #d8cdbb;
}

.premium-process .steps div {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.premium-process .steps span {
  width: 52px;
  padding: 8px 0;
  color: var(--gold);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.formats-section {
  padding-top: 30px;
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.format-card {
  position: relative;
  min-height: 260px;
  padding: 28px;
  color: var(--paper);
  background:
    linear-gradient(145deg, rgba(24, 32, 31, 0.94), rgba(24, 32, 31, 0.78)),
    url("/images/iv (4).jpeg");
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  overflow: hidden;
}

.format-card:nth-child(2) {
  background-image:
    linear-gradient(145deg, rgba(24, 32, 31, 0.94), rgba(116, 53, 69, 0.72)),
    url("/images/iv (7).jpeg");
}

.format-card:nth-child(3) {
  background-image:
    linear-gradient(145deg, rgba(24, 32, 31, 0.94), rgba(15, 118, 110, 0.58)),
    url("/images/iv (9).jpeg");
}

.format-card > i {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--night);
  background: var(--gold);
  border-radius: 50%;
  font-size: 1.45rem;
}

.format-card h3 {
  margin: 72px 0 10px;
  font-size: 1.35rem;
}

.format-card p {
  margin: 0;
  color: #e8ddcb;
}

.format-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 18px;
  color: var(--gold);
  font-weight: 900;
}

.format-link::after {
  content: "\2192";
  margin-left: 8px;
  transition: transform 180ms ease;
}

.format-link:hover::after {
  transform: translateX(4px);
}

.testimonials-section {
  padding-top: 42px;
}

.testimonial-top {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-end;
  margin-bottom: 20px;
}

.carousel-controls {
  display: flex;
  gap: 10px;
}

.carousel-btn {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--night);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.35rem;
}

.testimonial-carousel {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  border-radius: 8px;
}

.testimonial-card {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: space-between;
  padding: clamp(28px, 5vw, 54px);
  color: var(--paper);
  background:
    radial-gradient(circle at 80% 20%, rgba(196, 154, 69, 0.18), transparent 28%),
    linear-gradient(135deg, var(--night), #241828);
  border: 1px solid rgba(255, 255, 255, 0.12);
  opacity: 0;
  transform: translateX(28px) scale(0.98);
  transition: opacity 420ms ease, transform 420ms ease;
  pointer-events: none;
}

.testimonial-card.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

.testimonial-card > i {
  color: var(--gold);
  font-size: 2rem;
}

.testimonial-card p {
  max-width: 780px;
  margin: 20px 0;
  font-size: clamp(1.18rem, 2.4vw, 1.85rem);
  line-height: 1.35;
}

.testimonial-card footer {
  display: grid;
  gap: 4px;
}

.testimonial-card span {
  color: #d8cdbb;
}

.faq-section {
  padding-top: 42px;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 860px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  padding: 20px 22px;
  color: var(--ink);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 800;
  text-align: left;
}

.faq-question i {
  transition: transform 220ms ease;
}

.faq-item p {
  display: none;
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.faq-item.open p {
  display: block;
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 42px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.final-cta h2 {
  max-width: 720px;
  margin: 0;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  line-height: 1.08;
}

.final-cta-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.final-cta-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(196, 154, 69, 0.18);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
}

.final-cta-meta i {
  color: var(--gold);
}

.floating-assistance {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 18px 0 10px;
  color: var(--paper);
  background: var(--night);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  box-shadow: 0 18px 50px rgba(24, 32, 31, 0.28);
  font-weight: 900;
}

.floating-assistance-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--night);
  background: var(--gold);
  border-radius: 50%;
  font-size: 1.25rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .loader-orb::before,
  .loader-orb::after {
    animation: none;
  }
}

.steps {
  display: grid;
  gap: 12px;
}

.steps div {
  display: grid;
  grid-template-columns: 52px 42px 1fr;
  align-items: center;
  gap: 18px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.steps div > i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--gold);
  background: rgba(196, 154, 69, 0.12);
  border-radius: 50%;
  font-size: 1.24rem;
}

.steps span {
  color: var(--gold);
  font-weight: 900;
}

.page-hero.compact {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: center;
  min-height: 270px;
  margin-top: 26px;
  padding: 42px;
  color: var(--paper);
  background:
    linear-gradient(115deg, rgba(10, 9, 14, 0.9), rgba(69, 31, 76, 0.66) 48%, rgba(15, 118, 110, 0.34)),
    linear-gradient(180deg, rgba(10, 9, 14, 0.08), rgba(10, 9, 14, 0.72)),
    url("/images/p (2).jpg");
  background-size: cover;
  background-position: center;
  border-radius: 8px;
}

.page-hero.compact::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 82% 22%, rgba(196, 154, 69, 0.28), transparent 28%);
  pointer-events: none;
}

.page-hero.compact > * {
  position: relative;
  z-index: 1;
}

.page-hero.compact .eyebrow {
  color: var(--gold);
}

.page-hero.compact h1 {
  color: var(--paper);
}

.page-hero.compact p {
  color: #f5ead7;
}

.services-banner {
  background-image:
    linear-gradient(115deg, rgba(10, 9, 14, 0.88), rgba(69, 31, 76, 0.62) 48%, rgba(15, 118, 110, 0.28)),
    linear-gradient(180deg, rgba(10, 9, 14, 0.08), rgba(10, 9, 14, 0.72)),
    url("/images/iv (1).jpeg");
}

.consultations-banner {
  background-image:
    linear-gradient(115deg, rgba(10, 9, 14, 0.9), rgba(15, 118, 110, 0.45) 48%, rgba(196, 154, 69, 0.2)),
    linear-gradient(180deg, rgba(10, 9, 14, 0.08), rgba(10, 9, 14, 0.72)),
    url("/images/iv (3).jpeg");
}

.booking-banner {
  background-image:
    linear-gradient(115deg, rgba(10, 9, 14, 0.78), rgba(116, 53, 69, 0.42) 48%, rgba(196, 154, 69, 0.16)),
    linear-gradient(180deg, rgba(10, 9, 14, 0.08), rgba(10, 9, 14, 0.72)),
    url("/images/iv (6).jpeg");
}

.contact-banner {
  background-image:
    linear-gradient(115deg, rgba(10, 9, 14, 0.82), rgba(69, 31, 76, 0.5) 48%, rgba(15, 118, 110, 0.22)),
    linear-gradient(180deg, rgba(10, 9, 14, 0.08), rgba(10, 9, 14, 0.72)),
    url("/images/iv (2).jpeg");
}

.blog-banner {
  background-image:
    linear-gradient(115deg, rgba(10, 9, 14, 0.82), rgba(29, 48, 86, 0.48) 48%, rgba(196, 154, 69, 0.16)),
    linear-gradient(180deg, rgba(10, 9, 14, 0.08), rgba(10, 9, 14, 0.72)),
    url("/images/iv (5).jpeg");
}

.privacy-banner {
  background-image:
    linear-gradient(115deg, rgba(10, 9, 14, 0.76), rgba(15, 118, 110, 0.34) 48%, rgba(69, 31, 76, 0.14)),
    linear-gradient(180deg, rgba(10, 9, 14, 0.08), rgba(10, 9, 14, 0.72)),
    url("/images/iv (11).jpeg");
}

.not-found-banner {
  background-image:
    linear-gradient(115deg, rgba(10, 9, 14, 0.82), rgba(29, 48, 86, 0.54) 48%, rgba(69, 31, 76, 0.2)),
    linear-gradient(180deg, rgba(10, 9, 14, 0.08), rgba(10, 9, 14, 0.72)),
    url("/images/iv (10).jpeg");
}

.page-hero.compact .btn.ghost {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.36);
}

.page-faq {
  --faq-bg: #040614;
  --faq-panel: #101833;
  --faq-panel-2: #0b1025;
  --faq-ink: #fff7df;
  --faq-muted: #ddd0bd;
  --faq-gold: #ffb31a;
  --faq-orange: #f59b12;
  color: var(--faq-ink);
  background:
    radial-gradient(circle at 78% 14%, rgba(119, 42, 176, 0.26), transparent 24%),
    radial-gradient(circle at 58% 35%, rgba(255, 179, 26, 0.1), transparent 20%),
    linear-gradient(180deg, #030414 0%, #050716 48%, #030411 100%);
}

.page-faq .site-header {
  position: sticky;
  top: 0;
  padding: 18px clamp(18px, 4vw, 42px);
  background: rgba(4, 6, 20, 0.96);
  border-bottom: 1px solid rgba(255, 179, 26, 0.12);
  backdrop-filter: blur(12px);
}

.page-faq .brand {
  color: var(--faq-ink);
  line-height: 1;
}

.page-faq .brand-mark {
  width: 38px;
  height: 38px;
  color: #2a1700;
  background: radial-gradient(circle at 35% 30%, #ffe9a3, var(--faq-gold) 50%, #c46b05 100%);
  border-color: rgba(255, 179, 26, 0.8);
  box-shadow: 0 0 22px rgba(245, 155, 18, 0.22);
}

.page-faq .main-nav {
  gap: 10px;
}

.page-faq .main-nav a {
  padding: 8px 9px;
  color: #fff2d3;
  font-size: 0.82rem;
  font-weight: 900;
}

.page-faq .main-nav a:hover,
.page-faq .main-nav a.active {
  color: var(--faq-gold);
  background: transparent;
}

.page-faq .main-nav a.active {
  border-bottom: 2px solid var(--faq-gold);
  border-radius: 0;
}

.page-faq .header-cta,
.page-faq .btn.primary {
  min-height: 44px;
  color: #fff8e8;
  background: linear-gradient(135deg, #ffb21c, #f08a00);
  border-color: rgba(255, 213, 109, 0.32);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(245, 155, 18, 0.24);
}

.page-faq main {
  padding: 52px 0 0;
}

.faq-reference {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
  padding-bottom: 18px;
}

.faq-reference-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  align-items: end;
  gap: 34px;
  min-height: 240px;
}

.faq-reference-copy {
  padding: 28px 0 24px;
}

.faq-reference-copy .eyebrow {
  margin-bottom: 10px;
  color: var(--faq-gold);
  font-size: 0.82rem;
}

.faq-reference-copy h1 {
  margin: 0;
  color: var(--faq-ink);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.faq-reference-copy h1 span {
  color: var(--faq-gold);
}

.faq-reference-copy p:not(.eyebrow) {
  max-width: 520px;
  margin: 18px 0 0;
  color: #f0e4d1;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.45;
}

.faq-reference-visual {
  min-height: 220px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 53% 42%, rgba(255, 185, 47, 0.8), transparent 10%),
    radial-gradient(circle at 56% 34%, rgba(164, 64, 226, 0.8), transparent 22%),
    linear-gradient(90deg, rgba(4, 6, 20, 0.08), rgba(4, 6, 20, 0.12)),
    url("/images/p (2).jpg");
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 -70px 90px rgba(4, 6, 20, 0.9), 0 24px 80px rgba(0, 0, 0, 0.35);
  opacity: 0.95;
}

.faq-reference-list {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.page-faq .faq-item {
  overflow: hidden;
  background: linear-gradient(180deg, #121b39, #0f1731);
  border: 1px solid rgba(58, 74, 129, 0.65);
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.page-faq .faq-question {
  min-height: 58px;
  padding: 12px 18px;
  gap: 14px;
  color: #fff8df;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
}

.faq-question-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #fff8e5;
  background: linear-gradient(135deg, #ffd447, #f39a09);
  border: 2px solid rgba(255, 235, 178, 0.58);
  border-radius: 50%;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  box-shadow: 0 0 18px rgba(255, 179, 26, 0.24);
}

.faq-question-text {
  flex: 1;
}

.page-faq .faq-question > i {
  flex: 0 0 auto;
  color: var(--faq-gold);
  font-size: 1.3rem;
}

.page-faq .faq-item p {
  padding: 0 22px 20px 66px;
  color: #d9c9ba;
  font-size: 0.98rem;
  line-height: 1.55;
}

.faq-reference-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 22px;
  padding: 20px 28px;
  background: linear-gradient(180deg, #121b39, #0d142c);
  border: 1px solid rgba(58, 74, 129, 0.6);
  border-radius: 8px;
}

.faq-reference-contact div {
  position: relative;
  display: grid;
  gap: 2px;
  padding-left: 34px;
}

.faq-reference-contact div::before {
  content: "?";
  position: absolute;
  left: 0;
  top: 2px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: var(--faq-gold);
  border: 1px solid rgba(255, 179, 26, 0.58);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
}

.faq-reference-contact strong {
  color: #fff8df;
  font-size: 0.98rem;
}

.faq-reference-contact span {
  color: #d9c9ba;
  font-size: 0.9rem;
  font-weight: 700;
}

.faq-reference-contact .btn {
  min-width: 168px;
  min-height: 48px;
}

.faq-reference-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.faq-reference-trust div {
  display: grid;
  grid-template-columns: 32px 1fr;
  column-gap: 12px;
  align-items: start;
}

.faq-reference-trust i {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--faq-gold);
  border: 1px solid rgba(255, 179, 26, 0.45);
  border-radius: 8px;
  font-size: 1.1rem;
}

.faq-reference-trust strong {
  color: #fff2d3;
  font-size: 0.88rem;
  line-height: 1.2;
}

.faq-reference-trust span {
  color: #cbbcae;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.35;
}

.faq-reference-footer {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 30px;
  color: #bcae9c;
  font-size: 0.78rem;
}

.page-faq .site-footer,
.page-faq .floating-assistance {
  display: none;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-card strong {
  font-size: 2.4rem;
}

.pricing-card.featured {
  color: var(--paper);
  background: var(--night);
  border-color: var(--night);
}

.pricing-card.featured span,
.pricing-card.featured p {
  color: #e9dcc8;
}

.badge {
  align-self: flex-start;
  padding: 6px 10px;
  color: var(--night);
  background: var(--gold);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.values-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.values-list span {
  color: var(--night);
  background: var(--surface);
  border-color: var(--line);
  font-weight: 800;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 15px;
  color: var(--ink);
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--teal);
}

.site-footer {
  margin-top: 60px;
  padding: 54px clamp(18px, 5vw, 64px) 24px;
  color: var(--paper);
  background: var(--night);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 36px;
}

.site-footer h2 {
  margin: 0 0 12px;
  font-size: 1rem;
}

.site-footer p,
.footer-bottom {
  color: #d8cdbb;
}

.site-footer a {
  display: block;
  margin: 7px 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.86rem;
}

@media (max-width: 1080px) {
  body {
    padding-top: 75px;
  }

  body.nav-open {
    overflow: hidden;
  }

  .site-header {
    position: fixed;
    left: 0;
    right: 0;
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .mobile-nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 9;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    background: rgba(10, 9, 14, 0.44);
    border: 0;
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: opacity 220ms ease, visibility 220ms ease;
  }

  .mobile-nav-backdrop.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-toggle {
    display: block;
  }

  .nav-toggle:hover,
  .nav-toggle.open {
    background: var(--night);
    border-color: rgba(196, 154, 69, 0.42);
    box-shadow: 0 14px 34px rgba(24, 32, 31, 0.16);
    transform: translateY(-1px);
  }

  .nav-toggle:hover span,
  .nav-toggle.open span {
    background: var(--gold);
  }

  .nav-toggle.open span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .nav-toggle.open span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .main-nav.open {
    position: absolute;
    z-index: 11;
    top: 75px;
    left: 18px;
    right: 18px;
    display: grid;
    gap: 10px;
    justify-items: center;
    padding: 14px 0;
    background:
      linear-gradient(145deg, rgba(255, 253, 248, 0.96), rgba(246, 238, 224, 0.96)),
      var(--surface);
    border: 1px solid rgba(196, 154, 69, 0.24);
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow: hidden;
  }

  .main-nav.open::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 12% 10%, rgba(196, 154, 69, 0.16), transparent 26%),
      radial-gradient(circle at 94% 18%, rgba(15, 118, 110, 0.12), transparent 30%);
    pointer-events: none;
  }

  .main-nav.open a {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-start;
    width: 85vw;
    max-width: calc(100vw - 36px);
    min-height: 50px;
    padding: 10px 12px;
    color: var(--night);
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(229, 220, 205, 0.84);
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(24, 32, 31, 0.05);
  }

  .main-nav.open a i {
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    width: 34px;
    height: 34px;
    color: var(--teal);
    background: rgba(15, 118, 110, 0.1);
    border-radius: 50%;
    font-size: 1.18rem;
  }

  .main-nav.open a span {
    flex: 1;
  }

  .main-nav.open a:hover,
  .main-nav.open a.active {
    color: var(--ink);
    background: #fffdf8;
    border-color: rgba(196, 154, 69, 0.42);
    transform: translateX(2px);
  }

  .main-nav.open a.active i {
    color: var(--night);
    background: var(--gold);
  }

  .main-nav.open .mobile-nav-cta {
    display: inline-flex;
    justify-content: center;
    color: var(--paper);
    background: linear-gradient(135deg, var(--teal), #0a5f59);
    border-color: transparent;
    box-shadow: 0 14px 34px rgba(15, 118, 110, 0.18);
    font-weight: 900;
  }

  .main-nav.open .mobile-nav-cta i {
    color: var(--night);
    background: var(--gold);
  }
}

@media (max-width: 920px) {

  .hero,
  .intro-band,
  .quote-band,
  .split-section,
  .contact-layout,
  .footer-grid,
  .presentation-layout,
  .premium-process,
  .mood-board,
  .about-guidance-band,
  .about-reviews {
    grid-template-columns: 1fr;
  }

  .services-quote-band {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .about-guidance-band {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  .hero-premium {
    gap: 30px;
    padding-top: 104px;
  }

  .hero-desktop-video-panel {
    display: none;
  }

  .hero-mobile-video-panel {
    display: block;
    margin-top: 18px;
  }

  .monelle-identity-card {
    top: 24px;
    left: 24px;
    right: auto;
  }

  .hero-actions .btn,
  .final-cta .btn {
    width: fit-content;
  }

  .hero-orbit {
    opacity: 0.28;
    right: -60px;
    bottom: 40px;
  }

  .card-grid,
  .pricing-grid,
  .blog-grid,
  .consultation-list,
  .consultation-choice-grid,
  .stats-row,
  .trust-strip,
  .feature-grid,
  .format-grid,
  .about-premium-grid,
  .about-sector-grid,
  .hero-micro-grid,
  .consultation-checklist {
    grid-template-columns: 1fr;
  }

  .article-title-list {
    grid-template-columns: 1fr;
  }

  .about-premium-grid,
  .about-sector-grid,
  .feature-grid,
  .format-grid,
  .consultation-choice-grid,
  .consultation-checklist {
    gap: 14px;
  }

  .mood-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 220px);
  }

  .mood-gallery img:first-child {
    grid-row: auto;
  }

  .testimonial-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .trust-strip {
    margin-top: 18px;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-card,
  .contact-form,
  .blog-category-card,
  .legal-page article,
  .about-story-copy {
    padding: 24px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (min-width: 681px) and (max-width: 1100px) {
  .card-grid,
  .pricing-grid,
  .consultation-list,
  .format-grid,
  .about-premium-grid,
  .about-sector-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 560px) {
  .section {
    width: min(100% - 28px, 1120px);
    padding: 52px 0;
  }

  body {
    line-height: 1.6;
  }

  h1,
  h2,
  h3,
  .hero-content h1,
  .page-hero h1,
  .section-heading h2,
  .final-cta h2 {
    letter-spacing: 0;
    text-wrap: balance;
  }

  p,
  li,
  .faq-question span,
  .btn {
    overflow-wrap: break-word;
  }

  .hero-content h1 {
    font-size: 1.9rem;
    line-height: 1.12;
  }

  .page-hero h1,
  .section-heading h2,
  .final-cta h2,
  .about-hero h1,
  .about-guidance-band h2,
  .about-reviews h2 {
    font-size: 1.62rem;
    line-height: 1.16;
  }

  .hero-text,
  .page-hero p,
  .split-section p,
  .quote-band p {
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .page-hero.compact {
    min-height: 240px;
    padding: 30px 22px;
    align-content: end;
    text-align: center;
  }

  .page-hero.compact h1,
  .page-hero.compact p {
    margin-left: auto;
    margin-right: auto;
  }

  .page-hero.compact .eyebrow,
  .page-hero.compact .hero-actions {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .eyebrow {
    font-size: 0.72rem;
    line-height: 1.35;
  }

  .btn {
    min-height: 44px;
    padding: 0 16px;
    gap: 6px;
    font-size: 0.92rem;
    line-height: 1.18;
  }

  .intro-band,
  .quote-band,
  .premium-process,
  .final-cta,
  .about-guidance-band,
  .about-reviews {
    padding: 24px;
  }

  .blog-guidance-banner {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 24px;
  }

  .blog-guidance-banner .status-dot {
    width: 38px;
    height: 38px;
    margin-top: 0;
  }

  .hero-premium {
    width: min(100% - 28px, 1120px);
    padding: 158px 20px 28px;
    margin-top: 16px;
  }

  .about-hero {
    min-height: 280px;
    padding: 32px 24px;
  }

  .about-hero p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero-premium .hero-content h1 {
    font-size: 1.68rem;
  }

  .hero-title span {
    display: block;
    white-space: nowrap;
  }

  .hero-title {
    max-width: 100%;
    overflow-wrap: normal;
  }

  .monelle-identity-card {
    top: 18px;
    left: 12px;
    max-width: calc(100% - 24px);
    flex-wrap: nowrap;
    align-items: center;
    padding: 12px 16px 12px 12px;
    gap: 14px;
    border-radius: 999px;
  }

  .monelle-identity-card img {
    width: 108px;
    height: 108px;
  }

  .monelle-identity-card div {
    width: auto;
    padding-left: 0;
  }

  .monelle-identity-card strong {
    font-size: 1.22rem;
  }

  .monelle-identity-card div > span:not(.monelle-name-line) {
    font-size: 1rem;
  }

  .monelle-consult-link {
    padding: 6px 13px;
    font-size: 0.82rem;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn,
  .final-cta .btn,
  .article-consultation-cta .btn,
  .service-details .service-cta {
    width: 100%;
  }

  .service-card,
  .consultation-format-card {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    column-gap: 14px;
    align-items: start;
  }

  .service-card .card-icon,
  .consultation-format-card .card-icon {
    grid-column: 1;
    grid-row: 1 / span 3;
    width: 46px;
    height: 46px;
    margin: 0;
    font-size: 1.3rem;
  }

  .service-card h2,
  .service-card h3,
  .service-card > p,
  .service-card > a,
  .service-card > button,
  .consultation-format-card h2,
  .consultation-format-card > p,
  .consultation-format-card > a {
    grid-column: 2;
  }

  .service-card h2,
  .service-card h3,
  .consultation-format-card h2 {
    margin-top: 0;
  }

  .services-card-grid .service-card {
    row-gap: 6px;
    min-height: auto;
    padding: 16px;
  }

  .services-card-grid .service-card.tall {
    min-height: auto;
  }

  .services-card-grid .service-card h2,
  .services-card-grid .service-card h3,
  .services-card-grid .service-card p {
    margin-bottom: 0;
  }

  .services-card-grid .service-card p,
  .services-quote-band p {
    font-size: 0.92rem;
    text-align: justify;
    text-align-last: left;
    hyphens: auto;
  }

  .hero-mobile-hidden {
    display: none;
  }

  .services-card-grid .service-card .service-link,
  .services-card-grid .service-card .read-more-toggle {
    margin-top: 8px;
  }

  .service-inline-video,
  .service-details {
    grid-column: 1 / -1;
  }

  .read-more-toggle,
  .consultation-format-card a,
  .service-card .service-link {
    justify-self: start;
  }

  .service-card .read-more-toggle,
  .service-card .service-link,
  .service-card .service-cta {
    grid-column: 1 / -1;
  }

  .service-card .service-link,
  .service-card .service-cta {
    width: 100%;
  }

  .hero-note {
    border-radius: 8px;
  }

  .hero-note span {
    width: 100%;
  }

  .article-consultation-cta .desktop-label {
    display: none;
  }

  .article-consultation-cta .mobile-label {
    display: inline;
  }

  .service-card h2,
  .service-card h3,
  .pricing-card h2,
  .consultation-list h2,
  .contact-card h2,
  .article-preview h3,
  .format-card h3 {
    font-size: 1.12rem;
    line-height: 1.22;
    text-wrap: balance;
  }

  .service-card p,
  .pricing-card span,
  .consultation-list p,
  .contact-card p,
  .article-consultation-cta p,
  .consultation-choice-grid p {
    font-size: 0.95rem;
    line-height: 1.58;
  }

  .pricing-card {
    gap: 12px;
  }

  .pricing-card .btn {
    margin-top: 4px;
  }

  .contact-layout {
    gap: 16px;
  }

  .contact-card {
    display: grid;
    gap: 12px;
  }

  .contact-card > a {
    margin-top: 0;
  }

  .contact-social-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .contact-card .contact-social-links a {
    justify-content: center;
    padding: 11px 8px;
    font-size: 0.9rem;
  }

  .faq-list {
    gap: 10px;
  }

  .faq-question {
    align-items: flex-start;
    padding: 18px;
    line-height: 1.35;
  }

  .faq-item p {
    padding: 0 18px 18px;
    line-height: 1.6;
  }

  .steps div {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .steps div > i {
    width: 38px;
    height: 38px;
  }

  .hero-panel {
    min-height: 340px;
    padding: 22px;
  }

  .hero-panel p {
    margin-top: 60px;
  }

  .hero-panel strong {
    font-size: 1.68rem;
  }

  .presentation-copy {
    padding: 22px;
  }

  .portrait-panel {
    min-height: 380px;
  }

  .blog-category-card,
  .article-preview,
  .contact-form,
  .contact-card,
  .legal-page article,
  .about-story-copy,
  .service-card,
  .pricing-card,
  .post-card,
  .consultation-list article {
    padding: 20px;
  }

  .blog-category-card header {
    align-items: flex-start;
  }

  .article-extra-links {
    display: grid;
  }

  .article-extra-links a {
    text-align: center;
  }

  .floating-assistance {
    right: 14px;
    bottom: 14px;
    min-height: 46px;
    padding-right: 12px;
    font-size: 0.9rem;
  }

  .format-card h3 {
    margin-top: 52px;
  }
}

@media (max-width: 380px) {
  .section,
  .hero-premium {
    width: min(100% - 20px, 1120px);
  }

  .page-hero h1,
  .section-heading h2,
  .final-cta h2,
  .about-hero h1 {
    font-size: 1.45rem;
    line-height: 1.18;
  }

  .hero-text,
  .page-hero p,
  .split-section p,
  .quote-band p {
    font-size: 0.94rem;
  }

  .site-header {
    padding-left: 12px;
    padding-right: 12px;
  }

  .brand {
    font-size: 1rem;
  }

  .hero-premium {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-premium .hero-content h1 {
    font-size: 1.46rem;
  }

  .hero-panel strong {
    font-size: 1.58rem;
  }

  .btn {
    padding: 0 14px;
    font-size: 0.88rem;
  }

  .monelle-identity-card {
    left: 10px;
    max-width: calc(100% - 20px);
  }

  .monelle-identity-card img {
    width: 92px;
    height: 92px;
  }
}

/* Monelle dark celestial palette */
body {
  background:
    radial-gradient(circle at 72% 8%, rgba(111, 44, 145, 0.24), transparent 34%),
    radial-gradient(circle at 18% 18%, rgba(201, 148, 66, 0.1), transparent 28%),
    linear-gradient(180deg, #080611 0%, #10071b 46%, #07050f 100%);
}

.site-header {
  background: rgba(8, 6, 17, 0.86);
  border-bottom-color: rgba(201, 148, 66, 0.24);
}

.brand-mark,
.nav-toggle,
.carousel-btn {
  color: #f7eddf;
  background: #120a1e;
  border-color: rgba(201, 148, 66, 0.28);
}

.main-nav a {
  color: #d9cce2;
}

.main-nav a:hover,
.main-nav a.active {
  color: #f7eddf;
  background: rgba(111, 44, 145, 0.32);
}

.header-cta {
  color: #f7eddf;
  background: linear-gradient(135deg, #7a2f9f, #4a1f68);
  box-shadow: 0 14px 34px rgba(111, 44, 145, 0.34);
}

.btn.primary {
  color: #140918;
  background: linear-gradient(135deg, #d6a451, #a8722e);
  box-shadow: 0 14px 34px rgba(201, 148, 66, 0.28);
}

.btn.ghost {
  color: #f7eddf;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(201, 148, 66, 0.28);
}

.btn.ghost.light {
  color: #f7eddf;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(201, 148, 66, 0.34);
}

.hero-premium {
  color: #f7eddf;
  background:
    radial-gradient(circle at 72% 38%, rgba(141, 58, 177, 0.36), transparent 32%),
    radial-gradient(circle at 68% 46%, rgba(201, 148, 66, 0.2), transparent 18%),
    linear-gradient(115deg, rgba(8, 6, 17, 0.96), rgba(15, 7, 26, 0.9) 46%, rgba(41, 15, 61, 0.72)),
    url("/images/p (1).jpg");
  background-size: cover;
  background-position: center;
  border-color: rgba(201, 148, 66, 0.32);
}

.hero-premium .hero-text,
.hero-premium .eyebrow,
.hero-premium .hero-content h1,
.hero-content h1,
.page-hero h1,
.section-heading h2,
.intro-band h2,
.split-section h2,
.quote-band h2,
.final-cta h2 {
  color: #f7eddf;
}

.eyebrow,
.hero-premium .eyebrow {
  color: #d5a04f;
}

.hero-note,
.monelle-identity-card {
  color: #f7eddf;
  background: rgba(16, 8, 29, 0.72);
  border-color: rgba(201, 148, 66, 0.28);
}

.hero-note span,
.hero-micro-grid span {
  color: #d9cce2;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(201, 148, 66, 0.22);
}

.hero-micro-grid strong,
.monelle-consult-link,
.trust-strip strong,
.stats-row strong,
.steps span {
  color: #d5a04f;
}

.monelle-consult-link,
.badge,
.status-dot,
.format-card > i,
.floating-assistance-icon {
  background: #c99442;
}

.trust-strip {
  background: rgba(201, 148, 66, 0.22);
  border-color: rgba(201, 148, 66, 0.22);
}

.trust-strip div,
.mood-copy,
.service-card,
.pricing-card,
.post-card,
.consultation-list article,
.contact-card,
.contact-form,
.blog-category-card,
.article-preview,
.faq-item,
.final-cta,
.steps div,
.values-list span,
.about-story-copy,
.about-premium-grid article,
.about-sector-grid article,
.about-review-list article,
.consultation-choice-grid article,
.consultation-checklist span,
.legal-page article {
  color: #f7eddf;
  background: rgba(19, 11, 32, 0.92);
  border-color: rgba(201, 148, 66, 0.2);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.service-card p,
.pricing-card span,
.post-card p,
.consultation-list p,
.contact-card p,
.mood-copy p,
.page-hero p,
.split-section p,
.quote-band p,
.article-consultation-cta p,
.faq-item p,
.site-footer p,
.footer-bottom,
.hero-text,
li {
  color: #b8a5c5;
}

.card-icon,
.feature-icon,
.trust-strip i,
.steps div > i,
.consultation-checklist i {
  color: #d5a04f;
  background: rgba(201, 148, 66, 0.12);
}

.service-card a,
.post-card a,
.contact-card a,
.consultation-format-card a,
.article-extra-links a {
  color: #d5a04f;
}

.service-card:hover,
.feature-grid article:hover,
.pricing-card:hover,
.post-card:hover,
.consultation-list article:hover,
.about-sector-grid article:hover,
.about-premium-grid article:hover {
  border-color: rgba(201, 148, 66, 0.52);
  box-shadow: 0 24px 64px rgba(111, 44, 145, 0.26);
}

.intro-band,
.quote-band,
.premium-process,
.about-guidance-band,
.about-reviews,
.pricing-card.featured,
.testimonial-card,
.site-footer,
.floating-assistance {
  color: #f7eddf;
  background:
    radial-gradient(circle at 82% 22%, rgba(111, 44, 145, 0.28), transparent 30%),
    linear-gradient(135deg, #0b0614, #180d25);
  border-color: rgba(201, 148, 66, 0.18);
}

.page-hero.compact,
.about-hero {
  background:
    linear-gradient(115deg, rgba(8, 6, 17, 0.92), rgba(29, 12, 44, 0.76) 48%, rgba(111, 44, 145, 0.34)),
    linear-gradient(180deg, rgba(8, 6, 17, 0.12), rgba(8, 6, 17, 0.82)),
    url("/images/p (2).jpg");
  border: 1px solid rgba(201, 148, 66, 0.2);
}

.services-banner,
.consultations-banner,
.booking-banner,
.contact-banner,
.blog-banner,
.privacy-banner,
.not-found-banner {
  background-color: #080611;
}

.article-consultation-cta,
.contact-card .contact-social-links a,
.read-more-toggle {
  color: #f7eddf;
  background: rgba(111, 44, 145, 0.18);
  border-color: rgba(201, 148, 66, 0.22);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  color: #f7eddf;
  background: #0b0614;
  border-color: rgba(201, 148, 66, 0.22);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8f7c9f;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: #c99442;
}

.blog-category-card .article-preview {
  background: rgba(10, 6, 20, 0.82);
}

.testimonial-card span,
.format-card p,
.pricing-card.featured span,
.pricing-card.featured p {
  color: #cbbbd5;
}

.faq-question {
  color: #f7eddf;
}

.site-loader {
  background:
    radial-gradient(circle at 50% 42%, rgba(201, 148, 66, 0.2), transparent 26%),
    linear-gradient(145deg, #080611, #180d25);
}

@media (max-width: 1080px) {
  .main-nav.open {
    background:
      radial-gradient(circle at 14% 8%, rgba(201, 148, 66, 0.14), transparent 30%),
      linear-gradient(145deg, rgba(12, 6, 20, 0.96), rgba(29, 12, 44, 0.96));
    border-color: rgba(201, 148, 66, 0.28);
  }

  .main-nav.open a {
    color: #f7eddf;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(201, 148, 66, 0.2);
  }

  .main-nav.open a i {
    color: #d5a04f;
    background: rgba(201, 148, 66, 0.12);
  }

  .main-nav.open a:hover,
  .main-nav.open a.active {
    color: #f7eddf;
    background: rgba(111, 44, 145, 0.36);
    border-color: rgba(201, 148, 66, 0.42);
  }

  .main-nav.open .mobile-nav-cta {
    color: #f7eddf;
    background: linear-gradient(135deg, #7a2f9f, #4a1f68);
  }
}

/* Accessibility contrast pass */
:root {
  --muted: #d2c1dd;
  --gold: #e4b65f;
  --line: #5a3a6f;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid #f2c879;
  outline-offset: 3px;
}

.btn.primary,
.badge,
.monelle-consult-link {
  color: #09050d;
  background: linear-gradient(135deg, #f0c46d, #c99442);
}

.btn.primary i,
.monelle-consult-link i {
  color: inherit;
}

.header-cta,
.main-nav.open .mobile-nav-cta {
  color: #fff7ea;
  background: linear-gradient(135deg, #8f3dbc, #5a247b);
}

.btn.ghost,
.btn.ghost.light,
.read-more-toggle,
.article-extra-links a,
.contact-card .contact-social-links a {
  color: #fff7ea;
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(242, 200, 121, 0.48);
}

.btn.ghost:hover,
.btn.ghost.light:hover,
.read-more-toggle:hover,
.contact-card .contact-social-links a:hover {
  color: #09050d;
  background: #f0c46d;
  border-color: #f0c46d;
}

.main-nav a {
  color: #efe1f7;
}

.main-nav a:hover,
.main-nav a.active {
  color: #fff7ea;
  background: rgba(143, 61, 188, 0.46);
}

.service-card p,
.pricing-card span,
.post-card p,
.consultation-list p,
.contact-card p,
.mood-copy p,
.page-hero p,
.split-section p,
.quote-band p,
.article-consultation-cta p,
.faq-item p,
.site-footer p,
.footer-bottom,
.hero-text,
li,
.format-card p,
.testimonial-card span {
  color: #d2c1dd;
}

.eyebrow,
.hero-premium .eyebrow,
.service-card a,
.post-card a,
.contact-card a,
.consultation-format-card a,
.hero-micro-grid strong,
.trust-strip strong,
.stats-row strong,
.steps span {
  color: #f2c879;
}

.card-icon,
.feature-icon,
.trust-strip i,
.steps div > i,
.consultation-checklist i {
  color: #f2c879;
  background: rgba(242, 200, 121, 0.16);
}

.trust-strip div,
.mood-copy,
.service-card,
.pricing-card,
.post-card,
.consultation-list article,
.contact-card,
.contact-form,
.blog-category-card,
.article-preview,
.faq-item,
.final-cta,
.steps div,
.values-list span,
.about-story-copy,
.about-premium-grid article,
.about-sector-grid article,
.about-review-list article,
.consultation-choice-grid article,
.consultation-checklist span,
.legal-page article {
  background: rgba(20, 10, 34, 0.96);
  border-color: rgba(242, 200, 121, 0.28);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  color: #fff7ea;
  background: #09050d;
  border-color: rgba(242, 200, 121, 0.42);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #c4b0cf;
}

.faq-question,
.article-preview h3 a,
.pricing-card strong,
.service-card h2,
.service-card h3,
.contact-card h2,
.consultation-list h2,
.presentation-copy p,
.trust-strip span,
.hero-note span,
.hero-micro-grid span {
  color: #fff7ea;
}

.presentation-copy p,
.trust-strip span,
.hero-note span,
.hero-micro-grid span {
  color: #e4d6ec;
}

.feature-grid article {
  background:
    radial-gradient(circle at 18% 12%, rgba(242, 200, 121, 0.1), transparent 34%),
    rgba(20, 10, 34, 0.96);
  border-color: rgba(242, 200, 121, 0.32);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.3);
}

.feature-grid h3 {
  color: #fff7ea;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.feature-grid p {
  color: #e4d6ec;
}

.feature-grid .feature-icon {
  color: #09050d;
  background: linear-gradient(135deg, #f0c46d, #c99442);
  box-shadow: 0 0 0 7px rgba(242, 200, 121, 0.12), 0 12px 28px rgba(0, 0, 0, 0.26);
}

.nav-toggle {
  background: rgba(20, 10, 34, 0.96);
  border-color: rgba(242, 200, 121, 0.58);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
}

.nav-toggle span {
  background: #f2c879;
}

.nav-toggle:hover,
.nav-toggle.open {
  background: linear-gradient(135deg, #8f3dbc, #5a247b);
  border-color: #f2c879;
  box-shadow: 0 14px 34px rgba(143, 61, 188, 0.38);
}

.nav-toggle:hover span,
.nav-toggle.open span {
  background: #fff7ea;
}

.hero-panel strong {
  color: #fff7ea;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.9);
}

.hero-panel-content {
  padding: 14px;
  background: linear-gradient(180deg, rgba(8, 6, 17, 0), rgba(8, 6, 17, 0.58));
  border-radius: 8px;
}

.service-card .read-more-toggle {
  justify-self: start;
}

.service-card .service-link,
.service-card .service-cta {
  justify-self: start;
  margin-top: 8px;
}

.service-card .service-link,
.service-card .service-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 44px;
  padding: 0 16px;
  text-align: center;
  line-height: 1.2;
}

.service-card .read-more-toggle {
  min-width: 132px;
}

.floating-assistance {
  color: #fff7ea;
  border-color: rgba(242, 200, 121, 0.38);
}

.floating-assistance-icon,
.status-dot,
.format-card > i {
  color: #09050d;
  background: #f0c46d;
}

@media (max-width: 1080px) {
  .main-nav.open a {
    color: #fff7ea;
    background: rgba(255, 255, 255, 0.085);
    border-color: rgba(242, 200, 121, 0.32);
  }

  .main-nav.open a i {
    color: #f2c879;
    background: rgba(242, 200, 121, 0.16);
  }

  .main-nav.open a:hover,
  .main-nav.open a.active {
    color: #fff7ea;
    background: rgba(143, 61, 188, 0.52);
    border-color: rgba(242, 200, 121, 0.58);
  }

  .main-nav.open a.active i,
  .main-nav.open .mobile-nav-cta i {
    color: #09050d;
    background: #f0c46d;
  }
}

/* No black text pass */
body,
h1,
h2,
h3,
h4,
p,
li,
label,
small,
strong,
span,
a,
button,
.faq-question,
.article-preview h3 a,
.pricing-card strong,
.service-card h2,
.service-card h3,
.contact-card h2,
.consultation-list h2 {
  color: #fff7ea;
}

.hero-text,
.page-hero p,
.split-section p,
.quote-band p,
.service-card p,
.pricing-card span,
.post-card p,
.consultation-list p,
.contact-card p,
.mood-copy p,
.presentation-copy p,
.faq-item p,
.site-footer p,
.footer-bottom,
.testimonial-card span,
.format-card p,
.trust-strip span,
.hero-note span,
.hero-micro-grid span,
.legal-page p,
.legal-page ul {
  color: #e4d6ec;
}

.eyebrow,
.service-card a,
.post-card a,
.contact-card a,
.consultation-format-card a,
.article-extra-links a,
.hero-micro-grid strong,
.trust-strip strong,
.stats-row strong,
.steps span {
  color: #f2c879;
}

.btn.primary,
.monelle-consult-link,
.badge {
  color: #fff7ea;
  background: linear-gradient(135deg, #8f3dbc, #5a247b);
  border-color: rgba(242, 200, 121, 0.46);
}

.btn.primary i,
.monelle-consult-link i {
  color: #fff7ea;
}

.btn.ghost,
.btn.ghost.light,
.read-more-toggle,
.contact-card .contact-social-links a,
.article-extra-links a {
  color: #fff7ea;
}

.loader-orb span {
  color: #fff7ea;
  font-family: "Cinzel Decorative", "Space Grotesk", Arial, sans-serif;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.82), 0 0 16px rgba(242, 200, 121, 0.36);
}

.status-dot,
.format-card > i,
.floating-assistance-icon,
.feature-grid .feature-icon {
  color: #fff7ea;
  background: linear-gradient(135deg, #8f3dbc, #5a247b);
}

.page-hero.compact h1,
.services-banner h1,
.consultations-banner h1 {
  color: #fff7ea;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.9);
}

.page-hero.compact p:not(.eyebrow) {
  color: #efe1f7;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.72);
}

.page-hero.compact .btn.ghost,
.page-hero.compact .btn.ghost i {
  color: #fff7ea;
}

.page-hero.compact .btn.ghost {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(242, 200, 121, 0.56);
}

.brand .brand-mark {
  color: #fff7ea;
  background:
    radial-gradient(circle at 36% 24%, rgba(255, 247, 234, 0.22), transparent 28%),
    linear-gradient(145deg, #8f3dbc, #32114a 54%, #09050d);
  border-color: rgba(242, 200, 121, 0.72);
  box-shadow:
    0 0 0 1px rgba(255, 247, 234, 0.08) inset,
    0 10px 28px rgba(143, 61, 188, 0.34),
    0 0 28px rgba(242, 200, 121, 0.16);
  font-family: "Cinzel Decorative", "Space Grotesk", Arial, sans-serif;
  font-size: 1.45rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.78), 0 0 14px rgba(242, 200, 121, 0.34);
}

/* Blog premium layout */
.blog-premium-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: end;
  width: min(1180px, calc(100% - 36px));
  margin-top: 26px;
  padding: clamp(30px, 5vw, 56px);
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 24%, rgba(143, 61, 188, 0.3), transparent 30%),
    radial-gradient(circle at 18% 16%, rgba(242, 200, 121, 0.14), transparent 28%),
    linear-gradient(135deg, rgba(6, 4, 12, 0.98), rgba(15, 8, 28, 0.96) 52%, rgba(37, 15, 55, 0.92));
  border: 1px solid rgba(242, 200, 121, 0.26);
  border-radius: 8px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.36);
}

.blog-premium-hero::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(242, 200, 121, 0.14);
  border-radius: 8px;
  pointer-events: none;
}

.blog-premium-copy,
.blog-premium-visual,
.blog-proof-grid {
  position: relative;
  z-index: 1;
}

.blog-premium-copy h1 {
  max-width: 720px;
  margin: 0;
  color: #fff7ea;
  font-size: clamp(2.35rem, 5vw, 5rem);
  line-height: 0.96;
}

.blog-premium-copy h1 span {
  color: #f2c879;
  font-family: "Cinzel Decorative", "Space Grotesk", Arial, sans-serif;
}

.blog-hero-lead {
  max-width: 650px;
  margin: 18px 0 0;
  color: #efe1f7;
  font-size: 1.06rem;
}

.blog-title-rule {
  position: relative;
  width: min(310px, 100%);
  height: 20px;
  margin: 22px 0;
}

.blog-title-rule::before,
.blog-title-rule::after {
  content: "";
  position: absolute;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, #f2c879, rgba(242, 200, 121, 0));
}

.blog-title-rule::before {
  left: 0;
  width: 45%;
}

.blog-title-rule::after {
  right: 0;
  width: 45%;
  transform: rotate(180deg);
}

.blog-title-rule span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9px;
  height: 9px;
  background: #f2c879;
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  box-shadow: 0 0 18px rgba(242, 200, 121, 0.56);
}

.blog-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.blog-premium-visual {
  min-height: 360px;
  align-self: stretch;
  overflow: hidden;
  border: 1px solid rgba(242, 200, 121, 0.24);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.blog-premium-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 46% 34%, rgba(242, 200, 121, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(8, 6, 17, 0.04), rgba(8, 6, 17, 0.42));
}

.blog-premium-visual img,
.blog-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-proof-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.blog-proof-grid article {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  column-gap: 12px;
  align-items: center;
  padding: 16px;
  background: rgba(20, 10, 34, 0.82);
  border: 1px solid rgba(242, 200, 121, 0.22);
  border-radius: 8px;
}

.blog-proof-grid i {
  grid-row: span 3;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: #f2c879;
  background: rgba(242, 200, 121, 0.13);
  border-radius: 50%;
  font-size: 1.5rem;
}

.blog-proof-grid span,
.blog-proof-grid small {
  color: #e4d6ec;
}

.blog-proof-grid strong {
  color: #fff7ea;
  font-size: 1.18rem;
  line-height: 1.05;
}

.blog-feature-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: center;
  padding: clamp(22px, 4vw, 34px);
  background: rgba(20, 10, 34, 0.96);
  border: 1px solid rgba(242, 200, 121, 0.28);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.blog-feature-image {
  min-height: 260px;
  overflow: hidden;
  border: 1px solid rgba(242, 200, 121, 0.22);
  border-radius: 8px;
}

.blog-feature-copy h2,
.blog-feature-copy strong,
.blog-final-banner h2,
.blog-article-panel h2,
.blog-review-section h2,
.blog-sector-section h2 {
  color: #fff7ea;
}

.blog-feature-copy h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.06;
}

.blog-feature-copy strong {
  display: block;
  margin-top: 14px;
  color: #f2c879;
  font-size: 1.14rem;
}

.blog-feature-copy p:not(.eyebrow) {
  max-width: 620px;
  color: #e4d6ec;
}

.section-heading.centered {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.blog-sector-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.blog-sector-card {
  display: grid;
  align-content: start;
  grid-template-rows: auto auto auto 1fr auto auto;
  min-height: 250px;
  padding: 20px;
  text-align: center;
  background:
    radial-gradient(circle at 24% 12%, rgba(242, 200, 121, 0.1), transparent 34%),
    rgba(20, 10, 34, 0.96);
  border: 1px solid rgba(242, 200, 121, 0.28);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
}

.blog-sector-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 14px;
  color: #fff7ea;
  background: linear-gradient(135deg, #8f3dbc, #5a247b);
  border: 1px solid rgba(242, 200, 121, 0.42);
  border-radius: 50%;
  font-size: 1.85rem;
}

.blog-sector-card h3 {
  margin: 0;
  color: #fff7ea;
  font-size: 1rem;
  line-height: 1.16;
}

.blog-sector-card > p {
  display: -webkit-box;
  min-height: 4.6em;
  margin: 12px 0;
  overflow: hidden;
  color: #e4d6ec;
  font-size: 0.88rem;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.blog-sector-card .service-details {
  text-align: left;
}

.blog-sector-more {
  justify-self: center;
  min-width: auto;
  margin-top: auto;
}

.blog-sector-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: 7px;
  min-height: 40px;
  margin-top: 10px;
  padding: 0 16px;
  color: #09050d;
  background: linear-gradient(135deg, #f0c46d, #c99442);
  border: 1px solid rgba(242, 200, 121, 0.56);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 900;
}

.blog-review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.blog-review-grid article {
  display: grid;
  gap: 14px;
  padding: 22px;
  background: rgba(20, 10, 34, 0.96);
  border: 1px solid rgba(242, 200, 121, 0.28);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
}

.blog-stars {
  color: #f2c879;
  letter-spacing: 0.12em;
}

.blog-review-grid p {
  margin: 0;
  color: #e4d6ec;
}

.blog-review-grid footer {
  display: flex;
  gap: 10px;
  align-items: center;
}

.blog-review-grid footer i {
  color: #f2c879;
  font-size: 1.8rem;
}

.blog-review-grid footer strong,
.blog-review-grid footer small {
  display: block;
}

.blog-review-grid footer small {
  color: #d2c1dd;
}

.blog-review-link {
  width: fit-content;
  margin: 18px auto 0;
}

.blog-article-panel {
  display: grid;
  grid-template-columns: 0.35fr 0.65fr;
  gap: 24px;
  align-items: start;
}

.blog-topic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.blog-topic-grid article {
  padding: 20px;
  background: rgba(20, 10, 34, 0.96);
  border: 1px solid rgba(242, 200, 121, 0.28);
  border-radius: 8px;
}

.blog-topic-grid i {
  color: #f2c879;
  font-size: 1.6rem;
}

.blog-topic-grid h3 {
  margin: 10px 0;
  color: #fff7ea;
}

.blog-topic-grid ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-topic-grid li {
  position: relative;
  padding-left: 16px;
  color: #e4d6ec;
  font-size: 0.92rem;
}

.blog-topic-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  background: #f2c879;
  border-radius: 50%;
}

.blog-final-banner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 28px;
  background:
    radial-gradient(circle at 12% 50%, rgba(242, 200, 121, 0.18), transparent 22%),
    linear-gradient(135deg, rgba(20, 10, 34, 0.96), rgba(41, 15, 61, 0.88));
  border: 1px solid rgba(242, 200, 121, 0.32);
  border-radius: 8px;
}

.blog-final-moon {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  color: #f2c879;
  background: rgba(242, 200, 121, 0.1);
  border: 1px solid rgba(242, 200, 121, 0.28);
  border-radius: 8px;
  font-size: 3rem;
}

.blog-final-banner h2 {
  margin: 0;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  line-height: 1.08;
}

.blog-final-banner p {
  margin: 10px 0 0;
  color: #e4d6ec;
}

.blog-assurance-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  padding-top: 28px;
}

.blog-assurance-strip span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e4d6ec;
  font-weight: 800;
}

.blog-assurance-strip i {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 32px;
  height: 32px;
  color: #f2c879;
  background: rgba(242, 200, 121, 0.12);
  border-radius: 50%;
  font-size: 1.15rem;
}

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

  .domain-card {
    min-height: 260px;
  }

  .blog-premium-hero,
  .blog-feature-band,
  .blog-article-panel,
  .blog-final-banner,
  .article-bottom-actions {
    grid-template-columns: 1fr;
  }

  .blog-proof-grid,
  .blog-sector-grid,
  .blog-assurance-strip,
  .similar-title-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-final-banner .btn {
    width: fit-content;
  }
}

@media (max-width: 680px) {
  .mood-points {
    grid-template-columns: 1fr;
  }

  .domain-section {
    width: min(100% - 20px, 1180px);
    padding-top: 18px;
  }

  .domain-rail {
    grid-template-columns: 1fr;
    padding: 0 10px;
  }

  .domain-rail::before,
  .domain-rail::after {
    width: 8px;
  }

  .domain-card {
    min-height: 0;
  }

  .blog-premium-hero {
    width: min(100% - 28px, 1180px);
    padding: 24px;
  }

  .blog-premium-visual {
    min-height: 280px;
  }

  .blog-proof-grid,
  .blog-sector-grid,
  .blog-review-grid,
  .blog-topic-grid,
  .blog-assurance-strip,
  .similar-title-list {
    grid-template-columns: 1fr;
  }

  .blog-feature-band,
  .blog-final-banner {
    padding: 22px;
  }

  .blog-final-banner .btn,
  .blog-hero-actions .btn {
    width: 100%;
  }
}

@media (max-width: 1080px) {
  .main-nav.open a,
  .main-nav.open a span,
  .main-nav.open .mobile-nav-cta,
  .main-nav.open .mobile-nav-cta span {
    color: #fff7ea;
  }

  .main-nav.open a.active i,
  .main-nav.open .mobile-nav-cta i {
    color: #fff7ea;
    background: linear-gradient(135deg, #8f3dbc, #5a247b);
  }
}

@media (max-width: 1080px) {
  .page-faq .site-header {
    position: fixed;
    background: rgba(4, 6, 20, 0.98);
  }

  .page-faq .nav-toggle {
    background: #121b39;
    border-color: rgba(255, 179, 26, 0.32);
  }

  .page-faq .nav-toggle span {
    background: #fff2d3;
  }

  .page-faq .main-nav.open {
    background:
      radial-gradient(circle at 80% 12%, rgba(255, 179, 26, 0.14), transparent 28%),
      linear-gradient(180deg, #07091d, #050716);
    border-left-color: rgba(255, 179, 26, 0.24);
  }

  .page-faq .main-nav.open a.active,
  .page-faq .main-nav.open a.active span {
    color: var(--faq-gold);
  }

  .faq-reference-hero {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .faq-reference-visual {
    min-height: 210px;
  }

  .faq-reference-trust {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .page-faq main {
    padding-top: 28px;
  }

  .faq-reference {
    width: min(100% - 24px, 1080px);
  }

  .faq-reference-copy {
    padding-top: 18px;
  }

  .faq-reference-visual {
    min-height: 170px;
  }

  .page-faq .faq-question {
    min-height: 54px;
    padding: 10px 12px;
    font-size: 0.92rem;
  }

  .faq-question-icon {
    width: 30px;
    height: 30px;
  }

  .page-faq .faq-item p {
    padding: 0 14px 16px 56px;
    font-size: 0.9rem;
  }

  .faq-reference-contact {
    display: grid;
    padding: 18px;
  }

  .faq-reference-contact .btn {
    width: 100%;
  }

  .faq-reference-trust {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .faq-reference-footer {
    flex-wrap: wrap;
    text-align: center;
  }
}
