/* AstroSadhna — Sacred Ember design system */
:root {
  --ink: #0e0708;
  --ink-2: #1a0c0e;
  --ink-3: #2a1418;
  --crimson: #b01f1f;
  --ember: #e85d1c;
  --ember-hot: #ff7a2f;
  --gold: #d4a84b;
  --gold-soft: #f0d9a0;
  --sand: #f6f1ec;
  --sand-2: #ebe4dc;
  --text: #1f1214;
  --text-soft: #5c4548;
  --text-on-dark: #f7efe8;
  --text-muted-dark: #c9b4ab;
  --line: rgba(176, 31, 31, 0.14);
  --line-dark: rgba(240, 217, 160, 0.14);
  --radius: 4px;
  --shadow: 0 24px 60px rgba(14, 7, 8, 0.18);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --max: 1180px;
  --nav-h: 78px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--sand);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
ul { list-style: none; }
.container { width: min(100% - 2.5rem, var(--max)); margin-inline: auto; }

/* Typography */
.display {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 1rem;
}
.lead { font-size: 1.125rem; color: var(--text-soft); max-width: 36rem; }
.section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; }
.section-head { max-width: 38rem; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .lead { margin-inline: auto; }
.section-head h2 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); color: var(--text); }
.section.dark {
  background:
    radial-gradient(70% 80% at 90% 0%, rgba(232, 93, 28, 0.18), transparent 55%),
    radial-gradient(55% 70% at 10% 100%, rgba(176, 31, 31, 0.22), transparent 50%),
    var(--ink);
  color: var(--text-on-dark);
}
.section.dark .eyebrow { color: var(--gold); }
.section.dark .section-head h2 { color: var(--text-on-dark); }
.section.dark .lead { color: var(--text-muted-dark); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.55rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease), background 0.25s, border-color 0.25s, color 0.25s, box-shadow 0.35s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--ember-hot), var(--crimson));
  color: #fff;
  box-shadow: 0 14px 34px rgba(176, 31, 31, 0.35);
}
.btn-primary:hover { box-shadow: 0 18px 40px rgba(176, 31, 31, 0.45); }
.btn-ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--text-on-dark);
  background: transparent;
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.06); border-color: var(--gold-soft); }
.btn-outline {
  border-color: rgba(176, 31, 31, 0.35);
  color: var(--crimson);
  background: transparent;
}
.btn-outline:hover { background: rgba(176, 31, 31, 0.06); }
.btn-wa {
  background: #1faa53;
  color: #fff;
  box-shadow: 0 12px 28px rgba(31, 170, 83, 0.35);
}
.btn-wa:hover { background: #178a44; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.85rem; }

/* Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(14, 7, 8, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-dark);
}
.nav-inner {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}
.brand img,
.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 12px rgba(232, 93, 28, 0.35));
}
.brand-full .brand-logo {
  width: auto;
  height: 54px;
  max-width: min(200px, 42vw);
  background: #fff;
  padding: 0.35rem 0.55rem;
  border-radius: 10px;
  filter: none;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}
.brand-text { line-height: 1.05; }
.brand-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: linear-gradient(180deg, #ff9a4a, #c41e1e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand-text span {
  display: block;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-top: 0.2rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.85rem;
  flex-wrap: nowrap;
}
.nav-links a {
  color: var(--text-muted-dark);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.35rem 0;
  position: relative;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold-soft); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: linear-gradient(90deg, var(--ember), var(--crimson));
}

/* Services dropdown */
.nav-drop {
  position: relative;
  display: flex;
  align-items: center;
}
/* Invisible bridge — keeps hover alive between button and menu */
.nav-drop::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -1rem;
  right: -1rem;
  height: 16px;
}
.nav-drop-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: none;
  border: none;
  color: var(--text-muted-dark);
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.35rem 0;
  cursor: pointer;
}
.nav-drop-btn:hover,
.nav-drop.open .nav-drop-btn,
.nav-drop-btn.active {
  color: var(--gold-soft);
}
.nav-drop-btn .chev {
  width: 10px;
  height: 10px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.25s var(--ease);
  opacity: 0.75;
}
.nav-drop.open .nav-drop-btn .chev {
  transform: rotate(-135deg) translateY(-1px);
}
.nav-drop-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 210px;
  padding: 0.55rem;
  background: rgba(14, 7, 8, 0.97);
  border: 1px solid rgba(240, 217, 160, 0.2);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
  z-index: 120;
  flex-direction: column;
  gap: 0.1rem;
}
.nav-drop-menu::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 12px;
}
.nav-drop.open .nav-drop-menu,
.nav-drop:hover .nav-drop-menu {
  display: flex;
}
.nav-drop-menu a {
  display: block;
  padding: 0.65rem 0.85rem !important;
  border-radius: 9px;
  border-bottom: none !important;
  white-space: nowrap;
  color: var(--text-muted-dark);
}
.nav-drop-menu a:hover,
.nav-drop-menu a.active {
  background: rgba(232, 93, 28, 0.14);
  color: var(--gold-soft);
}
.nav-drop-menu a.active::after { display: none; }
.nav-drop-menu .all-link {
  margin-top: 0.25rem;
  border-top: 1px solid rgba(240, 217, 160, 0.12);
  border-radius: 0 0 9px 9px;
  padding-top: 0.75rem !important;
  color: var(--ember) !important;
  font-size: 0.85rem !important;
}
.nav-cta { display: none; }
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line-dark);
  background: transparent;
  border-radius: 10px;
  color: var(--text-on-dark);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px; height: 2px;
  margin: 4px auto;
  background: currentColor;
}

@media (min-width: 1100px) {
  .nav-cta { display: inline-flex; }
}
@media (max-width: 1099px) {
  .brand-full .brand-logo {
    height: 46px;
    max-width: min(168px, 48vw);
    padding: 0.28rem 0.45rem;
  }
  .nav-toggle { display: grid; place-items: center; }
  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 1.25rem 1.5rem;
    background: rgba(14, 7, 8, 0.97);
    border-bottom: 1px solid var(--line-dark);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: 0.35s var(--ease);
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links > a,
  .nav-drop {
    padding: 0.35rem 0;
    border-bottom: 1px solid var(--line-dark);
  }
  .nav-links > a { padding: 0.9rem 0.4rem; }
  .nav-drop {
    flex-direction: column;
    align-items: stretch;
  }
  .nav-drop::after {
    display: none;
  }
  .nav-drop-btn {
    width: 100%;
    justify-content: space-between;
    padding: 0.9rem 0.4rem;
  }
  .nav-drop-menu {
    position: static;
    transform: none;
    display: none;
    min-width: 0;
    width: 100%;
    margin: 0 0 0.5rem;
    padding: 0.25rem 0.25rem 0.5rem 0.75rem;
    background: transparent;
    border: none;
    box-shadow: none;
  }
  .nav-drop.open .nav-drop-menu {
    display: flex;
  }
  .nav-drop:hover .nav-drop-menu {
    display: none;
  }
  .nav-drop.open:hover .nav-drop-menu {
    display: flex;
  }
  .nav-drop-menu a {
    padding: 0.7rem 0.5rem !important;
    border-bottom: 1px solid rgba(240, 217, 160, 0.08) !important;
    border-radius: 0;
  }
  .nav-links .btn { margin-top: 0.75rem; justify-content: center; }
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(50% 60% at 18% 45%, rgba(232, 93, 28, 0.18), transparent 62%),
    radial-gradient(40% 50% at 88% 20%, rgba(212, 168, 75, 0.08), transparent 55%),
    linear-gradient(180deg, #160a0d 0%, #0a0506 100%);
  color: var(--text-on-dark);
}
.hero-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-ambient .ha {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
}
.hero-ambient .ha.a {
  width: 320px;
  height: 320px;
  left: 8%;
  top: 20%;
  background: rgba(232, 93, 28, 0.16);
  animation: blobFloat 14s ease-in-out infinite;
}
.hero-ambient .ha.b {
  width: 260px;
  height: 260px;
  right: 12%;
  bottom: 10%;
  background: rgba(212, 168, 75, 0.1);
  animation: blobFloat 16s ease-in-out infinite reverse;
}
.hero-split {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.15rem, 2.8vw, 2rem) 1rem;
  min-height: 0;
}
.hero-split-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  width: min(100%, 1400px);
  height: 625px;
  max-height: 625px;
  aspect-ratio: 1400 / 625;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(240, 217, 160, 0.16);
  box-shadow:
    0 0 0 1px rgba(232, 93, 28, 0.08),
    0 32px 80px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  background:
    linear-gradient(135deg, rgba(40, 18, 22, 0.95) 0%, rgba(16, 8, 10, 0.98) 55%, rgba(12, 6, 8, 1) 100%);
}
.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  padding: clamp(1.6rem, 3.2vw, 3rem) clamp(1.5rem, 3.8vw, 3.5rem);
  max-width: none;
  height: 100%;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.hero-copy.is-swapping {
  opacity: 0;
  transform: translateY(10px);
}
.hero-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 70% at 20% 40%, rgba(232, 93, 28, 0.14), transparent 60%),
    linear-gradient(90deg, transparent 70%, rgba(10, 5, 6, 0.35) 100%);
  pointer-events: none;
  z-index: -1;
}
.hero-award {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.15rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(240, 217, 160, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(240, 217, 160, 0.85);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.hero-award-icon {
  color: #ff8a3d;
  font-size: 0.8rem;
  text-shadow: 0 0 12px rgba(232, 93, 28, 0.7);
}
.hero-award i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(240, 217, 160, 0.5);
}
.hero-ornament {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
}
.hero-ornament .hline {
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240, 217, 160, 0.75));
}
.hero-ornament .hline:last-child {
  background: linear-gradient(90deg, rgba(240, 217, 160, 0.75), transparent);
}
.hero-ornament .hdiamond {
  width: 7px;
  height: 7px;
  border: 1.5px solid var(--ember);
  transform: rotate(45deg);
  background: linear-gradient(135deg, rgba(232, 93, 28, 0.5), rgba(212, 168, 75, 0.35));
  box-shadow: 0 0 12px rgba(232, 93, 28, 0.4);
}
.hero-copy .hero-tag {
  justify-content: flex-start;
  margin-bottom: 0.85rem;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  color: #f0d9a0;
}
.hero-copy .hero-tag::before,
.hero-copy .hero-tag::after { display: none; }
.hero-split h1 {
  font-size: clamp(2rem, 3.5vw, 3.05rem);
  max-width: 11ch;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: #fff8f0;
  margin: 0;
  font-weight: 600;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
}
.hero-split h1 em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(115deg, #ffc078 0%, #ff8a3d 38%, #e85d1c 68%, #d4a84b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  position: relative;
  padding-bottom: 0.04em;
}
.hero-split h1 em::after {
  content: "";
  position: absolute;
  left: 0.06em;
  right: 0.06em;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 138, 61, 0.75), rgba(212, 168, 75, 0.85), transparent);
}
.hero-split .lead {
  margin: 0.95rem 0 1.5rem;
  max-width: 26rem;
  font-size: clamp(0.95rem, 1.35vw, 1.08rem);
  line-height: 1.65;
  color: rgba(233, 214, 204, 0.86);
  font-weight: 500;
}
.hero-split .btn-row {
  justify-content: flex-start;
  gap: 0.8rem;
}
.hero-split .btn {
  min-height: 48px;
  padding: 0.85rem 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.hero-split .btn-primary {
  box-shadow:
    0 12px 32px rgba(232, 93, 28, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.hero-split .btn-primary:hover {
  box-shadow: 0 16px 40px rgba(232, 93, 28, 0.5);
}
.hero-split .btn-ghost {
  border-color: rgba(240, 217, 160, 0.32);
  color: #f0d9a0;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
}
.hero-split .btn-ghost:hover {
  border-color: rgba(240, 217, 160, 0.55);
  background: rgba(255, 255, 255, 0.09);
  color: #fff6ee;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 1.55rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(240, 217, 160, 0.14);
}
.hero-proof > div {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0 1.15rem;
  border-right: 1px solid rgba(240, 217, 160, 0.14);
}
.hero-proof > div:first-child { padding-left: 0; }
.hero-proof > div:last-child {
  padding-right: 0;
  border-right: 0;
}
.hero-proof strong {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1;
  color: #f0d9a0;
  font-weight: 600;
}
.hero-proof span {
  color: rgba(255, 246, 238, 0.58);
  font-size: 0.58rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-media {
  position: relative;
  height: 100%;
  min-height: 0;
  background: #0e0708;
  isolation: isolate;
}
.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  box-shadow: inset 18px 0 40px rgba(10, 5, 6, 0.35);
}
.hero-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.85s ease, visibility 0.85s ease;
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transform: none;
}
.hero-slide.is-active img {
  transform: none;
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 5, 6, 0.5) 0%, rgba(10, 5, 6, 0.08) 28%, transparent 45%),
    linear-gradient(180deg, rgba(10, 5, 6, 0.1) 0%, transparent 40%, rgba(10, 5, 6, 0.62) 100%);
  pointer-events: none;
}
.hero-slide figcaption {
  position: absolute;
  left: 1.35rem;
  right: 4.5rem;
  bottom: 3.1rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f0d9a0;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
}
.hero-slide figcaption span {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #ff8a3d;
  font-style: italic;
}
.hero-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(240, 217, 160, 0.3);
  background: rgba(10, 5, 6, 0.5);
  color: #f0d9a0;
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.hero-nav:hover {
  background: rgba(232, 93, 28, 0.42);
  border-color: rgba(240, 217, 160, 0.6);
  transform: translateY(-50%) scale(1.05);
}
.hero-nav svg { width: 18px; height: 18px; }
.hero-nav.prev { left: 0.85rem; }
.hero-nav.next { right: 0.85rem; }
.hero-slider-ui {
  position: absolute;
  z-index: 3;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.hero-dots {
  display: flex;
  gap: 0.45rem;
  align-items: center;
}
.hero-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(240, 217, 160, 0.32);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, width 0.25s ease;
}
.hero-dots button.is-active {
  background: linear-gradient(90deg, #ff8a3d, #d4a84b);
  width: 26px;
  border-radius: 999px;
}
.hero-progress {
  height: 2px;
  width: 100%;
  background: rgba(240, 217, 160, 0.14);
  border-radius: 999px;
  overflow: hidden;
}
.hero-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #e85d1c, #f0d9a0);
  border-radius: inherit;
}
.hero-progress.is-running span {
  animation: heroProgress 4.8s linear forwards;
}
@keyframes heroProgress {
  from { width: 0%; }
  to { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-ambient .ha,
  .hero-progress.is-running span { animation: none !important; }
}
@media (max-width: 1100px) {
  .hero-split-grid {
    width: min(100%, 1400px);
    height: auto;
    max-height: none;
    aspect-ratio: 1400 / 625;
  }
}
@media (max-width: 900px) {
  .hero-split-grid {
    grid-template-columns: 1fr;
    width: min(100%, 1400px);
    height: auto;
    aspect-ratio: auto;
    max-height: none;
  }
  .hero-media {
    order: -1;
    height: auto;
    aspect-ratio: 1400 / 625;
    max-height: none;
  }
  .hero-media::before { box-shadow: none; }
  .hero-copy {
    align-items: center;
    text-align: center;
    padding: 1.75rem 1.25rem 2.25rem;
    height: auto;
  }
  .hero-ornament { justify-content: center; }
  .hero-copy .hero-tag { justify-content: center; }
  .hero-split h1 { max-width: 14ch; }
  .hero-split .lead { margin-inline: auto; }
  .hero-split .btn-row { justify-content: center; }
  .hero-award { justify-content: center; }
  .hero-proof { justify-content: center; }
  .hero-slide::after {
    background: linear-gradient(180deg, transparent 35%, rgba(10, 5, 6, 0.8) 100%);
  }
  .hero-slide figcaption {
    left: 1rem;
    right: 1rem;
    bottom: 2.85rem;
    justify-content: center;
  }
  .hero-slider-ui { align-items: center; }
  .hero-dots { justify-content: center; }
}
@media (max-width: 520px) {
  .hero-award {
    font-size: 0.55rem;
    letter-spacing: 0.08em;
  }
  .hero-proof > div {
    padding-inline: 0.65rem;
    gap: 0.35rem;
  }
  .hero-proof strong { font-size: 1.25rem; }
  .hero-proof span { font-size: 0.5rem; }
}
/* legacy hero bits kept for other pages */
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.85; }
.hero-veil { display: none; }
.hero-orb { display: none; }
.hero-inner {
  position: relative;
  z-index: 2;
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(4rem, 8vw, 6rem);
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: end;
}
.hero-inner-brand {
  width: min(100% - 2rem, 920px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  padding: clamp(2.5rem, 7vw, 5rem) 0 clamp(4.5rem, 9vw, 6.5rem);
}
.hero-logo-wrap {
  position: relative;
  width: min(100%, 580px);
  margin-bottom: clamp(1.35rem, 3vw, 1.85rem);
  display: grid;
  place-items: center;
}
.hero-logo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1.15rem;
}
.hero-tag::before,
.hero-tag::after {
  content: "";
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.hero-tag::after { background: linear-gradient(90deg, var(--gold), transparent); }
.hero h1 {
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  max-width: 20ch;
}
.hero h1 em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(115deg, #ffb56a 0%, #ff8a3d 35%, #e85d1c 65%, #d4a84b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero .lead {
  margin: 1.25rem 0 1.85rem;
  color: var(--text-muted-dark);
  max-width: 32rem;
}
.hero-visual {
  position: relative;
  justify-self: center;
  width: min(100%, 420px);
}
.hero-visual img {
  position: relative;
  width: 100%;
}

/* Trust strip below hero (not first-viewport clutter if scrolled) */
.trust {
  background: var(--ink-2);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  padding: 1.6rem 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.trust strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--gold);
  font-weight: 600;
}
.trust span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted-dark);
}
@media (max-width: 700px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); row-gap: 1.25rem; }
}

/* Service preview */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.service-item {
  padding: 1.75rem 1.5rem 1.6rem;
  border-bottom: 1px solid var(--line);
  transition: border-color 0.3s, transform 0.35s var(--ease);
}
.service-item:hover {
  border-color: var(--ember);
  transform: translateY(-3px);
}
.service-item .icon {
  width: 42px; height: 42px;
  margin-bottom: 1.1rem;
  color: var(--crimson);
}
.service-item h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
}
.service-item p { color: var(--text-soft); font-size: 0.95rem; }
.service-item .more {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ember);
  letter-spacing: 0.04em;
}

/* Finder */
.finder-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.75rem 0 1.5rem;
}
.chip {
  padding: 0.7rem 1.05rem;
  border-radius: 999px;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-muted-dark);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: 0.25s;
}
.chip:hover { border-color: rgba(232, 93, 28, 0.5); color: #fff; }
.chip.active {
  background: linear-gradient(135deg, var(--ember), var(--crimson));
  border-color: transparent;
  color: #fff;
}
.finder-result {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem;
  border: 1px solid rgba(232, 93, 28, 0.35);
  background: linear-gradient(160deg, rgba(232, 93, 28, 0.12), rgba(176, 31, 31, 0.08));
}
.finder-result h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--gold-soft);
  margin: 0.25rem 0 0.5rem;
}
.finder-result p { color: var(--text-muted-dark); max-width: 34rem; }

/* About split */
.split {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (min-width: 880px) {
  .split { grid-template-columns: 0.95fr 1.05fr; }
  .split.reverse { grid-template-columns: 1.05fr 0.95fr; }
  .split.reverse .split-media { order: 2; }
}
.split-media {
  position: relative;
}
.split-frame {
  aspect-ratio: 4/5;
  background:
    linear-gradient(160deg, rgba(232, 93, 28, 0.2), transparent 50%),
    var(--ink-3);
  border: 1px solid rgba(212, 168, 75, 0.25);
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
}
.split-frame img {
  width: 70%;
  max-width: 280px;
  animation: floatY 8s ease-in-out infinite;
}
.split-frame .caption {
  position: absolute;
  left: 1rem; right: 1rem; bottom: 1rem;
  padding: 0.9rem 1rem;
  background: rgba(14, 7, 8, 0.88);
  border: 1px solid var(--line-dark);
  color: var(--text-on-dark);
}
.split-frame .caption small {
  display: block;
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.68rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.cred-list {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.5rem;
}
.cred-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: var(--text-soft);
  font-size: 0.95rem;
}
.cred-list li::before {
  content: "✦";
  color: var(--ember);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  counter-reset: step;
}
.process-step {
  padding-top: 0.5rem;
  border-top: 2px solid var(--crimson);
}
.process-step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--ember);
  line-height: 1;
  margin-bottom: 0.6rem;
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}
.process-step p { color: var(--text-soft); font-size: 0.95rem; }

/* Testimonials */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.quote {
  padding: 1.6rem 1.4rem;
  border-top: 1px solid rgba(240, 217, 160, 0.25);
  background: rgba(255, 255, 255, 0.03);
}
.quote p {
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.45;
  color: var(--text-on-dark);
  margin-bottom: 1.2rem;
}
.quote footer {
  font-size: 0.85rem;
  color: var(--text-muted-dark);
}
.quote footer strong { color: var(--gold-soft); display: block; font-weight: 700; }

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.blog-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1.25rem;
  transition: transform 0.35s var(--ease);
}
.blog-card:hover { transform: translateY(-4px); }
.blog-card .thumb {
  aspect-ratio: 16/10;
  background:
    radial-gradient(circle at 70% 30%, rgba(232, 93, 28, 0.45), transparent 50%),
    linear-gradient(160deg, #2a1418, #0e0708);
  margin-bottom: 1.1rem;
  display: grid;
  place-items: center;
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-size: 2rem;
}
.blog-card .meta {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--crimson);
  font-weight: 700;
  margin-bottom: 0.45rem;
}
.blog-card h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.blog-card p { color: var(--text-soft); font-size: 0.95rem; flex: 1; }
.blog-card .read {
  margin-top: 1rem;
  font-weight: 700;
  color: var(--ember);
  font-size: 0.88rem;
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  padding: clamp(4rem, 10vw, 6.5rem) 0 clamp(3rem, 6vw, 4.5rem);
  background:
    radial-gradient(70% 90% at 85% 0%, rgba(232, 93, 28, 0.22), transparent 55%),
    var(--ink);
  color: var(--text-on-dark);
  overflow: hidden;
}
.page-hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  max-width: 14ch;
}
.page-hero .lead { color: var(--text-muted-dark); margin-top: 1rem; }

/* Contact form */
.contact-layout {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 880px) {
  .contact-layout { grid-template-columns: 1fr 1.1fr; }
}
.contact-aside h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 0.75rem;
}
.contact-aside p { color: var(--text-soft); margin-bottom: 1.5rem; }
.contact-list { display: grid; gap: 1rem; }
.contact-list a,
.contact-list div {
  display: block;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}
.contact-list small {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--crimson);
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.contact-list strong { font-size: 1.05rem; }
.form {
  background: #fff;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.form-grid { display: grid; gap: 1rem; }
@media (min-width: 560px) {
  .form-grid.two { grid-template-columns: 1fr 1fr; }
}
.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 0.4rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--sand-2);
  background: var(--sand);
  color: var(--text);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--ember);
  box-shadow: 0 0 0 3px rgba(232, 93, 28, 0.15);
}
.field textarea { min-height: 140px; resize: vertical; }

/* Awards marquee */
.marquee {
  overflow: hidden;
  background: var(--ink);
  border-block: 1px solid var(--line-dark);
  padding: 1.1rem 0;
  position: relative;
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 2.5rem;
  animation: marquee 38s linear infinite;
}
.marquee-track span {
  white-space: nowrap;
  color: var(--text-on-dark);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}
.marquee-track span::before {
  content: "✦";
  color: var(--gold);
  margin-right: 0.75rem;
}
.marquee::before,
.marquee::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--ink), transparent); }
.marquee::after { right: 0; background: linear-gradient(270deg, var(--ink), transparent); }

/* CTA band */
.cta-band {
  text-align: center;
  padding: clamp(4rem, 8vw, 6rem) 0;
  background:
    radial-gradient(70% 100% at 50% -20%, rgba(232, 93, 28, 0.3), transparent 55%),
    var(--ink);
  color: var(--text-on-dark);
}
.cta-band h2 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  max-width: 16ch;
  margin: 0 auto 1rem;
}
.cta-band p {
  color: var(--text-muted-dark);
  max-width: 32rem;
  margin: 0 auto 1.75rem;
}

/* Footer */
.site-footer {
  position: relative;
  background:
    radial-gradient(60% 80% at 10% 0%, rgba(232, 93, 28, 0.12), transparent 55%),
    radial-gradient(50% 60% at 90% 100%, rgba(176, 31, 31, 0.14), transparent 50%),
    #090405;
  color: var(--text-muted-dark);
  padding: clamp(3.5rem, 7vw, 5rem) 0 0;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 93, 28, 0.55), rgba(212, 168, 75, 0.45), transparent);
}
.footer-top {
  display: grid;
  gap: clamp(2rem, 4vw, 2.75rem);
  grid-template-columns: 1.35fr 1fr 1fr 1.15fr;
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
@media (max-width: 980px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
}
.footer-brand {
  max-width: 340px;
}
.footer-brand img,
.footer-logo {
  width: min(200px, 75%);
  height: auto;
  margin-bottom: 1.1rem;
  background: #fff;
  padding: 0.65rem 0.85rem;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}
.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  color: #b9a79f;
}
.footer-col h4 {
  color: var(--gold-soft);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.15rem;
  font-weight: 700;
}
.footer-col a,
.footer-col span {
  display: block;
  margin-bottom: 0.6rem;
  font-size: 0.92rem;
  color: #c9b4ab;
  transition: color 0.25s, transform 0.25s;
}
.footer-col a:hover {
  color: var(--gold-soft);
  transform: translateX(3px);
}
.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.footer-contact-item .ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: rgba(232, 93, 28, 0.12);
  border: 1px solid rgba(240, 217, 160, 0.18);
  color: var(--gold-soft);
}
.footer-contact-item .ico svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.footer-contact-item small {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ember);
  font-weight: 700;
  margin-bottom: 0.15rem;
}
.footer-contact-item strong,
.footer-contact-item a {
  display: block;
  color: #f7efe8;
  font-size: 0.92rem;
  font-weight: 600;
  margin: 0;
}
.footer-contact-item a:hover { color: var(--gold-soft); transform: none; }

.footer-newsletter {
  margin-top: 0.5rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(240, 217, 160, 0.12);
}
.footer-newsletter p {
  font-size: 0.85rem;
  color: #b9a79f;
  margin-bottom: 0.75rem;
}
.footer-newsletter .newsletter {
  margin-top: 0;
}
.footer-newsletter .newsletter input {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(240, 217, 160, 0.18);
  color: #f7efe8;
}
.footer-newsletter .newsletter input::placeholder { color: #8a756e; }

.social-row {
  display: flex;
  gap: 0.55rem;
  margin-top: 0.25rem;
}
.social-row a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(240, 217, 160, 0.22);
  color: #f0d9a0;
  background: rgba(255, 255, 255, 0.03);
  transition: 0.35s var(--ease);
  margin: 0;
}
.social-row a:hover {
  background: linear-gradient(135deg, #ff7a2f, #b01f1f);
  border-color: transparent;
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(176, 31, 31, 0.35);
}
.social-row svg { width: 17px; height: 17px; fill: currentColor; }

.footer-bottom {
  border-top: 1px solid rgba(240, 217, 160, 0.1);
  padding: 1.15rem 0 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #8a756e;
}
.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom-links a {
  color: #b9a79f;
  margin: 0;
}
.footer-bottom-links a:hover { color: var(--gold-soft); }

.footer-cta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(232, 93, 28, 0.16), rgba(176, 31, 31, 0.12));
  border: 1px solid rgba(232, 93, 28, 0.28);
}
.footer-cta-bar h3 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.7rem);
  color: #f7efe8;
  font-weight: 500;
  margin: 0 0 0.2rem;
}
.footer-cta-bar p {
  margin: 0;
  font-size: 0.9rem;
  color: #c9b4ab;
}

/* Floating WA */
.float-wa {
  position: fixed;
  right: 1.15rem;
  bottom: 1.25rem;
  z-index: 90;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #1faa53;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px rgba(31, 170, 83, 0.45);
  animation: pulseRing 2.4s infinite;
}
.float-wa svg { width: 28px; height: 28px; fill: #fff; }

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulseGlow {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes pulseRing {
  0% { box-shadow: 0 0 0 0 rgba(31, 170, 83, 0.45); }
  70% { box-shadow: 0 0 0 16px rgba(31, 170, 83, 0); }
  100% { box-shadow: 0 0 0 0 rgba(31, 170, 83, 0); }
}

/* Service detail blocks */
.svc-detail {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}
.svc-row {
  display: grid;
  gap: 1rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}
@media (min-width: 760px) {
  .svc-row { grid-template-columns: 220px 1fr; align-items: start; }
}
.svc-row h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
}
.svc-row p { color: var(--text-soft); }
.svc-row ul { margin-top: 0.75rem; }
.svc-row li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--text-soft);
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}
.svc-row li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55rem;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ember);
}

/* Timeline about */
.timeline { display: grid; gap: 0; margin-top: 2rem; }
.timeline-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
}
.timeline-item strong {
  color: var(--crimson);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
}
.timeline-item h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}
.timeline-item p { color: var(--text-soft); font-size: 0.95rem; }

.note {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  background: rgba(31, 170, 83, 0.08);
  border-left: 3px solid #1faa53;
  color: var(--text-soft);
  font-size: 0.92rem;
}