:root {
  /* Palette */
  --cream: #f4efe6;
  --cream2: #ede6d8;
  --navy: #0d1b33;
  --navy2: #132040;
  --navy3: #1a2a4a;
  --blue: #cc4d00;
  --blue2: #1740b8;
  --gold: #d4a843;
  --gold2: #b8901e;
  --white: #ffffff;
  --ink: #1a1a2e;
  --muted: #6b7591;
  --border: rgba(26, 26, 46, 0.1);

  /* Typography */
  --serif: "Playfair Display", Georgia, serif;
  /* --serif:'Montserrat', sans-serif; */

  --sans: "Outfit", sans-serif;
  --body: "DM Sans", sans-serif;

  /* Misc */
  --nav-h: 72px;
  --r: 12px;
  --r2: 20px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t: 0.38s;
}

/* ── Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.7;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  background: none;
  border: none;
  font: inherit;
}

/* ── Loader ── */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  transition:
    opacity 0.6s var(--ease),
    visibility 0.6s;
}
#loader.gone {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.ldr-wrap {
  position: relative;
  width: 80px;
  height: 80px;
}
.ldr-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.ldr-arc {
  animation: arcSpin 1.6s linear infinite;
}
@keyframes arcSpin {
  0% {
    stroke-dashoffset: 213;
  }
  50% {
    stroke-dashoffset: 54;
  }
  100% {
    stroke-dashoffset: 213;
  }
}
.ldr-initials {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}
.ldr-initials span {
  color: var(--gold);
}
.ldr-txt {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

/* ── Navbar ── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--nav-h);
  transition:
    background var(--t),
    box-shadow var(--t),
    height var(--t);
}
#navbar.solid {
  background: var(--white);
  box-shadow: 0 2px 30px rgba(13, 27, 51, 0.1);
  height: 64px;
}
.nav-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
}
.logo em {
  font-style: normal;
  color: var(--gold);
  font-weight: 700;
}
.logo-spark {
  color: var(--gold);
  font-size: 1rem;
}
#navbar.solid .logo {
  color: var(--ink);
}
.logo-light {
  color: var(--white) !important;
}

.nav-links {
  display: flex;
  gap: 2px;
}
.nl {
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 14px;
  border-radius: 8px;
  transition:
    color var(--t),
    background var(--t);
}
.nl:hover,
.nl.active {
  color: var(--gold);
}
#navbar.solid .nl {
  color: var(--ink);
}
#navbar.solid .nl:hover,
#navbar.solid .nl.active {
  color: var(--blue);
}

.nav-end {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-tel {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--t);
}
.nav-tel:hover {
  color: var(--gold);
}
#navbar.solid .nav-tel {
  color: var(--ink);
}
#navbar.solid .nav-tel:hover {
  color: var(--blue);
}
.nav-cta {
  background: var(--gold);
  color: var(--navy);
  font-family: var(--sans);
  font-size: 0.84rem;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 50px;
  transition:
    background var(--t),
    transform var(--t);
}
.nav-cta:hover {
  background: var(--gold2);
  transform: translateY(-2px);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--t);
}
#navbar.solid .burger span {
  background: var(--ink);
}
.burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s var(--ease);
  transform: scale(1.04);
  animation: none;
}
.slide.active {
  opacity: 1;
  animation: kenburns 8s ease-out forwards;
}
@keyframes kenburns {
  to {
    transform: scale(1);
  }
}
.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(13, 27, 51, 0.85) 0%,
    rgba(13, 27, 51, 0.65) 55%,
    rgba(13, 27, 51, 0.3) 100%
  );
}
.hero-wedge {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  z-index: 2;
  height: 0px;
  background: var(--cream);
 
}

/* Side counter */
.side-counter {
  position: absolute;
  left: 32px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.sc-cur,
.sc-tot {
  font-family: var(--serif);
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
}
.sc-cur {
  color: var(--gold);
  font-size: 1rem;
}
.sc-bar {
  width: 2px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
}
.sc-fill {
  width: 100%;
  background: var(--gold);
  border-radius: 2px;
  transition: height 5s linear;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 5;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0px 0px 0px 100px;;
  width: 100%;
}
.slide-bodies {
  position: relative;
  min-height: 240px;
  margin-bottom: 40px;
}
.slide-body {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
  pointer-events: none;
}
.slide-body.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 168, 67, 0.18);
  border: 1px solid rgba(212, 168, 67, 0.4);
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 22px;
}
.hero-content h1 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 18px;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 520px;
  margin-bottom: 0;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hbtn-solid {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 50px;
  transition:
    background var(--t),
    transform var(--t),
    box-shadow var(--t);
  box-shadow: 0 6px 24px rgba(212, 168, 67, 0.35);
}
.hbtn-solid:hover {
  background: var(--gold2);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(212, 168, 67, 0.45);
}
.hbtn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 50px;
  transition: all var(--t);
  backdrop-filter: blur(6px);
}
.hbtn-ghost:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-3px);
}

/* Hero stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--r);
  padding: 20px 40px;
  width: fit-content;
}
.hstat {
  text-align: center;
  padding: 0 24px;
}
.hstat-n {
  display: block;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
}
.hstat-n sup {
  font-size: 0.7em;
  color: var(--gold);
}
.hstat-l {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--sans);
  letter-spacing: 0.04em;
}
.hstat-sep {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

/* Arrows & dots */
.harrow {
  position: absolute;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t);
  backdrop-filter: blur(6px);
}
.harrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
.harrow-prev {
  left: 80px;
}
.harrow-next {
  right: 32px;
}
.hdots {
  position: absolute;
  bottom: 200px;
  left: 168px;
  z-index: 10;
  display: flex;
  gap: 8px;
}
.hdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transition: all var(--t);
}
.hdot.active {
  width: 28px;
  border-radius: 4px;
  background: var(--gold);
}

.scroll-cue {
  position: absolute;
  right: 32px;
  bottom: 130px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.sc-line {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.25);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

/* ── Ticker ── */
.ticker {
  background: var(--navy);
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.ticker-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}
.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  padding: 0 36px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.ticker-track span i {
  color: var(--gold);
  font-size: 0.75rem;
}
@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ── Section globals ── */
.sec {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
}
.sec > .deco-num {
  position: absolute;
  top: 40px;
  right: 48px;
  font-family: var(--serif);
  font-size: clamp(6rem, 12vw, 10rem);
  font-weight: 900;
  color: rgba(26, 26, 46, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.sec > .deco-num.alt {
  color: rgba(26, 26, 46, 0.05);
}
.sec > .deco-num.light {
  color: rgba(255, 255, 255, 0.04);
}
.container-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 28px;
}
.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.eyebrow.light {
  color: var(--gold);
}
.sec-h {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 18px;
}
.sec-h em {
  font-style: italic;
  color: var(--blue);
}
.sec-h.light {
  color: var(--white);
}
.sec-h.light em {
  color: var(--gold);
}
.sec-h.center {
  text-align: center;
}
.sec-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
}
.sec-sub.center {
  margin: 0 auto;
  text-align: center;
}
.sec-sub.light-muted {
  color: rgba(255, 255, 255, 0.5);
}
.sec-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 28px;
}

/* ── About ── */
.about-sec {
  background: var(--cream);
}
.about-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.about-visual {
  position: relative;
}
.av-main {
  position: relative;
  border-radius: var(--r2);

  box-shadow: 0 30px 80px rgba(13, 27, 51, 0.2);
}
.av-main img {
  width: 100%;
  aspect-ratio: 5/4;
  object-fit: cover;
  border-radius: 20px;
}
.av-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--r);
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 16px 40px rgba(13, 27, 51, 0.3);
  border: 3px solid var(--gold);
}
.av-yr {
  display: block;
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.av-yr sup {
  font-size: 1rem;
}
.av-label {
  font-family: var(--sans);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
}
.av-thumb {
  position: absolute;
  top: -28px;
  right: -28px;
  width: 44%;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(13, 27, 51, 0.25);
  border: 4px solid var(--cream);
}
.av-thumb img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.about-copy {
  position: relative;
  z-index: 1;
}
.about-copy .eyebrow {
  margin-bottom: 12px;
}
.about-copy p {
  color: var(--muted);
  margin-bottom: 16px;
  font-size: 0.97rem;
}
.about-copy p strong {
  color: var(--ink);
}
.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border-radius: var(--r);
  padding: 18px;
  border: 1px solid var(--border);
  transition:
    transform var(--t),
    box-shadow var(--t);
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(13, 27, 51, 0.08);
}
.pillar > i {
  font-size: 1.2rem;
  color: var(--blue);
  margin-top: 2px;
}
.pillar strong {
  font-family: var(--sans);
  font-size: 0.88rem;
  display: block;
  margin-bottom: 3px;
}
.pillar p {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
}

/* ── Services ── */
.services-sec {
  background: var(--white);
}
.svc-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}
.svc {
  border-radius: var(--r2);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(13, 27, 51, 0.06);
  transition:
    transform var(--t),
    box-shadow var(--t);
  display: flex;
  flex-direction: column;
}
.svc:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(13, 27, 51, 0.14);
}
.svc-photo {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.svc-photo-inner {
  position: absolute;
  inset: 0;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease);
}
.svc:hover .svc-photo-inner {
  transform: scale(1.06);
}
.svc-info {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.svc-no {
  font-family: var(--serif);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  display: block;
}
.svc-info h3 {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}
.svc-info p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--sans);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--blue);
  margin-top: 16px;
  transition:
    gap var(--t),
    color var(--t);
}
.svc:hover .svc-link {
  gap: 12px;
  color: var(--gold2);
}

/* ── Benefits (Dark) ── */
.benefits-sec {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.benefits-sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: var(--white);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 20%);
}
.benefits-sec::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: var(--cream);
  clip-path: polygon(0 80%, 100% 0, 100% 100%, 0 100%);
}
.benefits-sec .sec-header {
  padding-top: 40px;
}
.ben-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 28px 50px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.ben {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--r2);
  padding: 36px 28px;
  position: relative;
  transition:
    background var(--t),
    transform var(--t),
    border-color var(--t);
  overflow: hidden;
}
.ben:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-6px);
  border-color: rgba(212, 168, 67, 0.3);
}
.ben-n {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.04);
  position: absolute;
  top: 16px;
  right: 20px;
  line-height: 1;
  user-select: none;
}
.ben-ico {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}
.ben h3 {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.ben p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}
.ben-strip {
  max-width: 1400px;
  margin: 56px auto 0;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r2);
  padding: 28px 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.bstrip-item {
  text-align: center;
  padding: 0 32px;
}
.bs-n {
  display: block;
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
}
.bs-n sup {
  font-size: 0.8em;
  color: var(--gold);
}
.bs-l {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--sans);
  letter-spacing: 0.06em;
}
.bstrip-line {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
}

/* ── Mid CTA ── */
.mid-cta {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.mid-cta-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.mid-cta-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient( 135deg, rgba(13, 27, 51, 0.88), rgba(117, 44, 0, 0.6) )
}
.mid-cta-body {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 28px;
  max-width: 680px;
}
.mce {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.mid-cta-body h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}
.mcs {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 36px;
}
.mc-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FAQ ── */
.faq-sec {
  background: var(--cream);
}
.faq-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.faq-left p {
  color: var(--muted);
  margin-bottom: 28px;
  font-size: 0.97rem;
}
.faq-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue);
  border-bottom: 2px solid var(--blue);
  padding-bottom: 4px;
  transition:
    color var(--t),
    border-color var(--t);
}
.faq-btn:hover {
  color: var(--gold2);
  border-color: var(--gold2);
}
.faq-list {
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  text-align: left;
  transition: color var(--t);
}
.faq-q:hover {
  color: var(--blue);
}
.fqn {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  min-width: 36px;
}
.fqt {
  font-family: var(--sans);
  font-size: 0.97rem;
  font-weight: 600;
  flex: 1;
}
.fqi {
  font-size: 0.8rem;
  color: var(--muted);
  transition: transform 0.35s;
}
.faq-item.open .fqi {
  transform: rotate(45deg);
  color: var(--blue);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s var(--ease),
    padding 0.3s;
}
.faq-item.open .faq-a {
  max-height: 200px;
  padding-bottom: 20px;
}
.faq-a p {
  font-size: 0.9rem;
  color: var(--muted);
  padding-left: 52px;
  line-height: 1.75;
}

/* ── Contact ── */
.contact-sec {
  background: var(--white);
}
.contact-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.cinfo-card {
  background: var(--cream);
  border-radius: var(--r2);
  padding: 32px;
  border: 1px solid var(--border);
  margin-bottom: 20px;
}
.cinfo-card h3 {
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 22px;
}
.cdet {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  color: var(--ink);
  transition: color var(--t);
}
.cdet:last-child {
  border-bottom: none;
}
.cdet:hover {
  color: var(--blue);
}
.cdet-ic {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: rgba(30, 79, 214, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 0.9rem;
}
.cdet strong {
  font-family: var(--sans);
  font-size: 0.82rem;
  display: block;
  margin-bottom: 2px;
}
.cdet span,
.cdet a {
  font-size: 0.88rem;
  color: var(--muted);
}
.cmap {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--border);
}

/* Contact Form */
.cform-wrap {
  background: var(--cream);
  border-radius: var(--r2);
  padding: 36px;
  border: 1px solid var(--border);
}
.cform-wrap h3 {
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.cform-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cfg {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.cfg label {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
}
.cfg input,
.cfg select,
.cfg textarea {
  padding: 12px 16px;
  border-radius: var(--r);
  border: 1.5px solid var(--border);
  font-family: var(--body);
  font-size: 0.9rem;
  color: var(--ink);
  background: var(--white);
  transition:
    border-color var(--t),
    box-shadow var(--t);
  outline: none;
}
.cfg input:focus,
.cfg select:focus,
.cfg textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30, 79, 214, 0.1);
}
.cfg textarea {
  resize: vertical;
}
.cbtn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  justify-content: center;
  background: var(--navy);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 15px 28px;
  border-radius: 50px;
  border: none;
  transition:
    background var(--t),
    transform var(--t),
    box-shadow var(--t);
  box-shadow: 0 8px 28px rgba(13, 27, 51, 0.2);
}
.cbtn:hover {
  background: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(30, 79, 214, 0.3);
}
.fmsg {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: var(--r);
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 600;
  display: none;
}
.fmsg.ok {
  background: #e8f5e9;
  color: #2e7d32;
  display: block;
}
.fmsg.err {
  background: #fce4ec;
  color: #c62828;
  display: block;
}

/* ── Footer ── */
.footer {
  background: var(--navy);
  color: var(--white);
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 28px;
}
.footer-cols {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding: 70px 0 50px;
}
.fc-brand p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 18px 0 24px;
}
.socials {
  display: flex;
  gap: 10px;
}
.socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  transition:
    background var(--t),
    transform var(--t);
}
.socials a:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
}
.fc h4 {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}
.fc ul li {
  margin-bottom: 10px;
}
.fc ul a {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.4);
  transition:
    color var(--t),
    padding-left var(--t);
}
.fc ul a:hover {
  color: var(--gold);
  padding-left: 6px;
}
.fc-contacts p {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.fc-contacts i {
  color: var(--gold);
  margin-top: 2px;
  min-width: 14px;
}
.fc-contacts a {
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--t);
}
.fc-contacts a:hover {
  color: var(--gold);
}
.footer-base {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.28);
}

/* ── Back to top ── */
#btt {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 800;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(212, 168, 67, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--t);
}
#btt.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#btt:hover {
  background: var(--gold2);
  transform: translateY(-4px);
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay1 {
  transition-delay: 0.12s;
}
.reveal.delay2 {
  transition-delay: 0.24s;
}
.reveal.delay3 {
  transition-delay: 0.36s;
}
.reveal.delay4 {
  transition-delay: 0.48s;
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ben-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-cols {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 900px) {
  .about-inner {
    grid-template-columns: 1fr;
  }
  .av-main {
    max-width: 500px;
    margin: 0 auto 40px;
  }
  .faq-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-inner {
    grid-template-columns: 1fr;
  }
  .hero-content {
    padding-left: 80px;
  }
  .harrow-prev {
    left: 70px;
  }
  .hdots {
    left: 80px;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 64px;
  }
  .sec {
    padding: 80px 0;
  }
  .nav-links,
  .nav-end {
    display: none;
  }
  .burger {
    display: flex;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px 28px;
    box-shadow: 0 8px 32px rgba(13, 27, 51, 0.12);
    animation: slideIn 0.3s var(--ease);
    gap: 4px;
    z-index: 899;
  }
  @keyframes slideIn {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .nav-links.open .nl {
    color: var(--ink);
    font-size: 1rem;
    padding: 12px 8px;
  }
  .svc-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .ben-grid {
    grid-template-columns: 1fr;
  }
  .hero-content {
    padding: 0 24px;
  }
  .side-counter {
    display: none;
  }
  .harrow {
    width: 42px;
    height: 42px;
  }
  .harrow-prev {
    left: 16px;
  }
  .harrow-next {
    right: 16px;
  }
  .hdots {
    left: 50%;
    transform: translateX(-50%);
    bottom: 110px;
  }
  .hero-stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
  }
  .hstat {
    padding: 10px 16px;
  }
  .ben-strip {
    flex-direction: column;
    gap: 20px;
  }
  .bstrip-line {
    width: 60px;
    height: 1px;
  }
  .pillars {
    grid-template-columns: 1fr;
  }
  .av-thumb {
    display: none;
  }
  .footer-cols {
    grid-template-columns: 1fr;
  }
  .cform-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
  }
  .mc-btns {
    flex-direction: column;
    align-items: center;
  }
  .hbtn-solid,
  .hbtn-ghost {
    width: 100%;
    justify-content: center;
  }
  .footer-base {
    flex-direction: column;
    text-align: center;
  }
}
