/* Barnes Noble Book Publishing
   Container: max-w-7xl = 80rem | Fonts: local Inter + Playfair Display (assets/fonts)
   Colors: primary #3e5962 · gold #B3994C · lite #f4f7f8
   No third-party CDN — all assets served from /assets/
*/

:root {
  --navy: #3e5962;
  --navy-dark: #2a3e45;
  --gold: #B3994C;
  --gold-20: rgba(179, 153, 76, 0.2);
  --gold-10: rgba(179, 153, 76, 0.1);
  --gold-border: rgba(179, 153, 76, 0.2);
  --cream: #f4f7f8;
  --white: #ffffff;
  --font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-2xl: 1rem;
  --container: 80rem;
  --space: 0.25rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--navy);
  background: var(--cream);
  line-height: 1.625;
  font-size: 1rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }
p { margin: 0 0 1em; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--navy);
}
em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  color: var(--gold);
}

/* max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 640px) {
  .container { padding-inline: 1.5rem; }
}
@media (min-width: 1024px) {
  .container { padding-inline: 2rem; }
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-lg);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.25;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -2px rgba(0,0,0,.1);
  white-space: nowrap;
}
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }
.btn-lg { padding: 1rem 1.75rem; font-size: 1.125rem; }
.btn-xl { padding: 1rem 3rem; font-size: 1.125rem; }
.btn-primary { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn-primary:hover { background: #9a8438; border-color: #9a8438; color: #fff; }
.btn-secondary {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
  box-shadow: none;
}
.btn-secondary:hover { background: var(--gold-10); }
.btn-navy { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-navy:hover { background: #2a3e45; color: #fff; }
.btn-group { display: flex; flex-wrap: wrap; gap: 1rem; }
.btn-group.center { justify-content: center; }
.btn-block { width: 100%; display: flex; }

/* glass-card — white 80% + gold border + soft shadow */
.glass-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(179, 153, 76, 0.2);
  border-radius: var(--radius-xl);
  box-shadow: 0 1px 3px rgba(0,0,0,.08), 0 10px 30px rgba(62, 89, 98, 0.06);
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(179, 153, 76, 0.1);
}
.disclaimer-bar {
  background: var(--navy);
  color: #fff;
  text-align: center;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 0.4rem 0.75rem;
  line-height: 1.35;
}
@media (min-width: 640px) {
  .disclaimer-bar { font-size: 0.7rem; letter-spacing: 0.04em; }
}
@media (min-width: 1024px) {
  .disclaimer-bar { font-size: 0.75rem; }
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.5rem;
  height: auto;
  padding-block: 0.5rem;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .header-inner { min-height: 5rem; gap: 1.5rem; }
}
.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand-logo {
  width: 9.5rem;
  height: 3.25rem;
  object-fit: contain;
  transition: transform 0.2s;
}
@media (min-width: 640px) {
  .brand-logo { width: 11rem; height: 3.75rem; }
}
@media (min-width: 1024px) {
  .brand-logo { width: 12rem; height: 4rem; }
}
.brand:hover .brand-logo { transform: scale(1.05); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.main-nav .header-cta + .header-cta {
  margin-left: 0.25rem;
}
.nav-list {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .nav-list { display: flex; gap: 1.25rem; }
  .header-cta { display: inline-flex !important; width: auto; }
  .nav-toggle { display: none !important; }
  .main-nav {
    position: static;
    inset: auto;
    transform: none;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 1rem;
    overflow: visible;
    border: 0;
    background: transparent;
  }
}
.nav-list > li > a {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 2rem 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(62, 89, 98, 0.7);
  transition: color 0.15s;
}
.nav-list > li > a:hover,
.nav-list > li.active > a { color: var(--gold); }
.nav-list .chev { width: 1rem; height: 1rem; opacity: 0.8; }
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 16rem;
  background: #fff;
  border: 1px solid rgba(179, 153, 76, 0.1);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  box-shadow: 0 20px 40px rgba(62, 89, 98, 0.12);
  padding: 1rem 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
}
.dropdown a {
  display: block;
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
  color: rgba(62, 89, 98, 0.7);
}
.dropdown a:hover {
  color: var(--gold);
  background: rgba(179, 153, 76, 0.05);
}
.header-cta { display: none; }
.nav-toggle {
  display: flex;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  color: var(--navy);
}
.nav-toggle span {
  width: 1.25rem;
  height: 2px;
  background: currentColor;
  display: block;
}

/* Mobile / tablet nav drawer (desktop from 1024px) */
@media (max-width: 1023px) {
  .main-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: var(--header-offset, 6.5rem);
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem 1rem calc(2rem + env(safe-area-inset-bottom, 0px));
    gap: 1rem;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    overflow-y: auto;
    border-top: 1px solid rgba(179, 153, 76,.1);
    z-index: 60;
  }
  .main-nav.open { transform: none; }
  .nav-list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nav-list > li > a { padding: 0.9rem 0.25rem; }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    display: none;
    width: 100%;
    box-shadow: none;
    border: 0;
    padding: 0.25rem 0 0.75rem 0.75rem;
  }
  .has-dropdown.open .dropdown { display: block; }
  .header-cta {
    display: flex !important;
    width: 100%;
  }
}

/* —— HERO: min-h-[85vh] pt-20 pb-32 —— */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 5rem 0 8rem;
  overflow: hidden;
  background: var(--cream);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    url("../images/homebanner.webp") center center / cover no-repeat;
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      105deg,
      rgba(244, 247, 248, 0.96) 0%,
      rgba(244, 247, 248, 0.88) 42%,
      rgba(244, 247, 248, 0.45) 68%,
      rgba(62, 89, 98, 0.25) 100%
    );
}
.hero-bg::after {
  content: "";
  position: absolute;
  top: -10%;
  right: -5%;
  z-index: 1;
  width: 60%;
  height: 120%;
  background:
    radial-gradient(ellipse at 60% 40%, rgba(179, 153, 76, 0.18), transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(62, 89, 98, 0.12), transparent 50%);
  animation: hero-glow-breathe 10s ease-in-out infinite alternate;
}
.hero-fx {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.9;
}
.hero .container {
  position: relative;
  z-index: 2;
}
@keyframes hero-glow-breathe {
  from { opacity: 0.65; transform: translate3d(0, 0, 0) scale(1); }
  to { opacity: 1; transform: translate3d(-2%, 2%, 0) scale(1.05); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-bg::after { animation: none !important; }
  .hero-fx { display: none !important; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
}
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem; /* gap-16 */
  }
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 2rem; /* space-y-8 */
}
.hero-copy > * { margin: 0; }

.badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: var(--gold-10);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.badge svg { width: 1rem; height: 1rem; flex-shrink: 0; }

.hero h1 {
  font-size: clamp(2rem, 7vw, 3rem);
  line-height: 1.12;
  margin: 0;
}
@media (min-width: 768px) {
  .hero h1 { font-size: clamp(2.75rem, 5vw, 4.5rem); }
}

.hero-lead {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(62, 89, 98, 0.7);
  line-height: 1.625;
  max-width: 36rem; /* max-w-xl */
  margin: 0;
}
.hero-lead strong { color: var(--navy); font-weight: 700; }

.hero-actions {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.hero-actions .btn {
  width: 100%;
  white-space: normal;
  text-align: center;
}
@media (min-width: 768px) {
  .hero-actions {
    flex-direction: row;
    align-items: center;
  }
  .hero-actions .btn {
    width: auto;
    white-space: nowrap;
  }
}

.hero-trust {
  padding-top: 2rem;
  border-top: 1px solid rgba(179, 153, 76, 0.1);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(62, 89, 98, 0.4);
  line-height: 1.625;
  margin: 0;
}

/* Hero visual — match ref book size (~342×445 + glass padding) */
.hero-visual {
  position: relative;
  display: none;
  width: 100%;
  max-width: 22.5rem; /* ~360px: cover 342px + p-4 frame */
  margin-inline: auto;
  padding-bottom: 2.5rem;
  padding-left: 1.25rem;
}
@media (min-width: 1024px) {
  .hero-visual {
    display: block;
    max-width: 22.5rem;
    width: 22.5rem;
    margin-left: auto;
    margin-right: 2rem;
    padding-left: 0;
    padding-bottom: 3rem;
    justify-self: end;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .hero-visual {
    display: block;
    order: -1;
    max-width: 20rem;
  }
}
@media (max-width: 767px) {
  .hero-visual {
    display: block;
    order: -1;
    max-width: 16rem;
    margin-bottom: 0.5rem;
    padding-left: 0;
    padding-bottom: 0;
  }
  .hero { min-height: auto; padding: 2.5rem 0 4rem; }
}

.hero-book {
  position: relative;
  z-index: 10;
  padding: 1rem;
  transform: rotate(2deg);
  transition: transform 0.5s ease;
  width: 100%;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(179, 153, 76, 0.25);
}
.hero-book:hover { transform: rotate(0deg); }
.hero-book img {
  display: block;
  width: 100%;
  max-width: 26rem;
  height: auto;
  margin-inline: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  object-fit: contain;
  background: #000;
}

.ownership-card {
  position: absolute;
  z-index: 20;
  bottom: -2.5rem; /* -bottom-10 */
  left: -2.5rem; /* -left-10 */
  max-width: 280px;
  padding: 2rem; /* p-8 */
  transform: rotate(-3deg);
}
.ownership-card .own-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  font-style: italic;
  color: var(--navy);
  margin: 0 0 0.5rem;
}
.ownership-card .own-desc {
  font-size: 0.875rem;
  color: rgba(62, 89, 98, 0.6);
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 1023px) {
  .ownership-card {
    left: -0.5rem;
    bottom: -1.25rem;
    max-width: 220px;
    padding: 1.25rem;
  }
  .ownership-card .own-title { font-size: 1.25rem; }
}
@media (max-width: 767px) {
  .ownership-card {
    position: relative;
    left: 0;
    bottom: 0;
    margin-top: 1rem;
    transform: none;
    max-width: none;
  }
}

/* —— Sections py-24 —— */
.section { padding: 6rem 0; }
.section-white { background: #fff; }
.section-cream { background: var(--cream); }
.section-navy {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.section-navy h2,
.section-navy h3,
.section-navy h4 { color: #fff; }

.section-head {
  text-align: center;
  max-width: 48rem; /* max-w-3xl */
  margin: 0 auto 5rem; /* mb-20 */
}
.section-head h2 { font-size: 2.25rem; margin-bottom: 1rem; } /* text-4xl */
@media (min-width: 768px) {
  .section-head h2 { font-size: 2.25rem; }
}
.section-head p {
  font-size: 1.125rem;
  color: rgba(62, 89, 98, 0.6);
  margin: 0;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem; /* gap-8 */
}
@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
    gap: 5rem; /* gap-20 */
  }
}

/* —— Home services (premium) —— */
.home-services {
  position: relative;
  overflow: hidden;
  padding-block: 5.5rem;
  background:
    linear-gradient(180deg, #e8eef1 0%, var(--cream) 38%, #fbfcfd 72%, #fff 100%);
}
.home-services-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 75% 50% at 50% -8%, rgba(179, 153, 76, 0.2), transparent 62%),
    radial-gradient(ellipse 42% 38% at 100% 75%, rgba(62, 89, 98, 0.07), transparent 55%),
    radial-gradient(ellipse 38% 32% at 0% 65%, rgba(179, 153, 76, 0.1), transparent 50%);
  overflow: hidden;
}
.home-services-bg::before {
  content: "";
  position: absolute;
  width: 42vmax;
  height: 42vmax;
  left: -12%;
  top: 18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(179, 153, 76, 0.14), transparent 68%);
  animation: svc-orb-a 18s ease-in-out infinite alternate;
}
.home-services-bg::after {
  content: "";
  position: absolute;
  width: 36vmax;
  height: 36vmax;
  right: -10%;
  bottom: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(62, 89, 98, 0.1), transparent 70%);
  animation: svc-orb-b 22s ease-in-out infinite alternate;
}
.services-fx {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.85;
}
.home-services .container { position: relative; z-index: 1; }

@keyframes svc-orb-a {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(8%, -6%, 0) scale(1.12); }
}
@keyframes svc-orb-b {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-7%, 5%, 0) scale(1.15); }
}

.home-services-head {
  margin-bottom: 3.75rem;
}
.home-services-eyebrow,
.section-head p.home-services-eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.35rem 0.9rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid rgba(179, 153, 76, 0.28);
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.65);
  line-height: 1.4;
}
.home-services-head h2 {
  font-size: clamp(2.1rem, 4.2vw, 3rem);
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
  color: var(--navy-dark);
}
.home-services-head h2 em {
  color: var(--gold);
  font-style: italic;
  font-weight: 600;
}
.home-services-head > p:not(.home-services-eyebrow) {
  max-width: 34rem;
  margin-inline: auto;
  color: rgba(62, 89, 98, 0.62);
  font-size: 1.02rem;
  line-height: 1.7;
}
.home-services-rule {
  display: block;
  width: 4.25rem;
  height: 2px;
  margin: 1.65rem auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 9999px;
  position: relative;
}
.home-services-rule::before,
.home-services-rule::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-50%);
  opacity: 0.7;
}
.home-services-rule::before { left: -0.15rem; }
.home-services-rule::after { right: -0.15rem; }

/* Service cards — advanced premium */
.home-services-grid {
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .home-services-grid { gap: 1.85rem; }
}

.service-card {
  --svc-border: rgba(179, 153, 76, 0.22);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  padding: 2.15rem 1.85rem 1.85rem;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.92) 0%, rgba(252, 250, 246, 0.88) 48%, rgba(255, 255, 255, 0.82) 100%);
  border: 1px solid var(--svc-border);
  border-radius: 1.35rem;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 1px 2px rgba(62, 89, 98, 0.04),
    0 14px 36px rgba(62, 89, 98, 0.07);
  overflow: hidden;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  isolation: isolate;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    box-shadow 0.4s ease;
  animation: svc-rise 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(var(--svc-i, 0) * 80ms);
}
.service-card-glow {
  position: absolute;
  inset: -40% -20% auto;
  height: 70%;
  background: radial-gradient(ellipse at 50% 0%, rgba(179, 153, 76, 0.18), transparent 65%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
}
.service-card-shine {
  position: absolute;
  top: 0;
  left: -60%;
  width: 45%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0) 35%,
    rgba(255, 255, 255, 0.45) 50%,
    rgba(255, 255, 255, 0) 65%,
    transparent 100%
  );
  transform: skewX(-18deg);
  transition: none;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    145deg,
    rgba(179, 153, 76, 0.55),
    rgba(255, 255, 255, 0.35) 35%,
    rgba(62, 89, 98, 0.12) 70%,
    rgba(179, 153, 76, 0.35)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.55;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 1;
}
.service-card::after {
  content: "";
  position: absolute;
  left: 1.1rem;
  top: 1.35rem;
  bottom: 1.35rem;
  width: 2px;
  border-radius: 9999px;
  background: linear-gradient(180deg, var(--gold), rgba(179, 153, 76, 0.08));
  opacity: 0;
  transform: scaleY(0.35);
  transform-origin: top;
  transition: opacity 0.35s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1;
}
.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(179, 153, 76, 0.42);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 10px 20px rgba(62, 89, 98, 0.06),
    0 32px 56px rgba(62, 89, 98, 0.12),
    0 0 0 1px rgba(179, 153, 76, 0.08);
}
.service-card:hover .service-card-glow { opacity: 1; }
.service-card:hover .service-card-shine {
  opacity: 1;
  animation: svc-shine 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover::after {
  opacity: 1;
  transform: scaleY(1);
}
.service-card > *:not(.service-card-glow):not(.service-card-shine) {
  position: relative;
  z-index: 3;
}

.service-card-index {
  position: absolute;
  top: 1rem;
  right: 1.15rem;
  font-family: var(--font-serif);
  font-size: 2.35rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(62, 89, 98, 0.07);
  letter-spacing: -0.04em;
  pointer-events: none;
  z-index: 2;
  transition: color 0.35s ease, transform 0.4s ease;
}
.service-card:hover .service-card-index {
  color: rgba(179, 153, 76, 0.28);
  transform: translateY(-2px) scale(1.04);
}

.service-icon {
  position: relative;
  width: 3.65rem;
  height: 3.65rem;
  border-radius: 9999px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.7), transparent 55%),
    linear-gradient(145deg, rgba(179, 153, 76, 0.18), rgba(179, 153, 76, 0.06));
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.55rem;
  border: 1px solid rgba(179, 153, 76, 0.32);
  box-shadow:
    0 8px 20px rgba(179, 153, 76, 0.14),
    0 0 0 4px rgba(179, 153, 76, 0.06);
  transition:
    background 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.service-icon-ring {
  position: absolute;
  inset: -5px;
  border-radius: 9999px;
  border: 1px dashed rgba(179, 153, 76, 0.35);
  opacity: 0;
  transform: scale(0.85) rotate(0deg);
  transition: opacity 0.35s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.service-icon svg { width: 1.4rem; height: 1.4rem; position: relative; z-index: 1; }
.service-card:hover .service-icon {
  background: linear-gradient(145deg, #c4ab55, var(--gold));
  color: #fff;
  border-color: var(--gold);
  box-shadow:
    0 14px 28px rgba(179, 153, 76, 0.38),
    0 0 0 5px rgba(179, 153, 76, 0.12);
  transform: scale(1.07);
}
.service-card:hover .service-icon-ring {
  opacity: 1;
  transform: scale(1) rotate(25deg);
  animation: svc-ring 6s linear infinite;
}
.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.32rem;
  font-weight: 700;
  margin: 0 0 0.7rem;
  letter-spacing: -0.015em;
  color: var(--navy-dark);
  transition: color 0.3s ease;
}
.service-card:hover h3 { color: var(--navy); }
.service-card p {
  color: rgba(62, 89, 98, 0.58);
  margin: 0;
  line-height: 1.65;
  font-size: 0.95rem;
  flex: 1;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.45rem;
  padding: 0.45rem 0.85rem 0.45rem 0.95rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 9999px;
  background: rgba(179, 153, 76, 0.08);
  border: 1px solid rgba(179, 153, 76, 0.18);
  transition:
    gap 0.3s ease,
    color 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.service-card-link svg {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.service-card:hover .service-card-link {
  gap: 0.65rem;
  color: #8f7932;
  background: rgba(179, 153, 76, 0.14);
  border-color: rgba(179, 153, 76, 0.35);
  box-shadow: 0 6px 14px rgba(179, 153, 76, 0.15);
}
.service-card:hover .service-card-link svg {
  transform: translateX(3px);
}

@keyframes svc-rise {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes svc-shine {
  from { left: -60%; }
  to { left: 130%; }
}
@keyframes svc-ring {
  to { transform: scale(1) rotate(385deg); }
}

@media (prefers-reduced-motion: reduce) {
  .services-fx { display: none !important; }
  .home-services-bg::before,
  .home-services-bg::after { animation: none !important; }
  .service-card { animation: none; }
  .service-card:hover .service-card-shine { animation: none; opacity: 0; }
  .service-card:hover .service-icon-ring { animation: none; }
}

/* Why section — premium */
.why-section {
  background:
    radial-gradient(ellipse 70% 55% at 15% 20%, rgba(179, 153, 76, 0.16), transparent 55%),
    radial-gradient(ellipse 50% 45% at 90% 80%, rgba(0, 0, 0, 0.22), transparent 60%),
    linear-gradient(165deg, #2a3e45 0%, var(--navy) 45%, #24363c 100%);
  padding-block: 5.5rem;
}
.why-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.why-bg::before {
  content: "";
  position: absolute;
  width: 48vmax;
  height: 48vmax;
  left: -18%;
  top: -20%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(179, 153, 76, 0.18), transparent 68%);
  animation: why-orb-a 20s ease-in-out infinite alternate;
}
.why-bg::after {
  content: "";
  position: absolute;
  width: 40vmax;
  height: 40vmax;
  right: -14%;
  bottom: -18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06), transparent 70%);
  animation: why-orb-b 24s ease-in-out infinite alternate;
}
.why-fx {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.9;
}
.why-section .container { position: relative; z-index: 1; }

.why-eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.35rem 0.9rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid rgba(179, 153, 76, 0.35);
  border-radius: 9999px;
  background: rgba(179, 153, 76, 0.1);
}

.why-list { display: grid; gap: 1.15rem; }
.why-item {
  display: flex;
  gap: 1rem;
  align-items: stretch;
  padding: 0.85rem 1rem 0.85rem 0.75rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  animation: why-rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(var(--why-i, 0) * 80ms);
}
.why-item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(179, 153, 76, 0.28);
  transform: translateX(4px);
}
.why-pill {
  flex-shrink: 0;
  align-self: stretch;
  width: 2.15rem;
  padding: 0.25rem 0.25rem 0.4rem;
  border-radius: 9999px;
  background: linear-gradient(180deg, #334850, #1f3036);
  border: 1px solid rgba(179, 153, 76, 0.22);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.why-check {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0.05rem;
  padding: 0;
  border-radius: 9999px;
  background: transparent;
  color: var(--gold);
  display: grid;
  place-items: center;
  line-height: 0;
  filter: drop-shadow(0 0 6px rgba(179, 153, 76, 0.35));
}
.why-check svg {
  width: 1.5rem;
  height: 1.5rem;
  display: block;
}
.why-item > div:last-child {
  flex: 1;
  min-width: 0;
  padding-top: 0.05rem;
}
.why-item h4 {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.25rem;
  line-height: 1.3;
}
.why-item p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.875rem;
  line-height: 1.625;
  margin: 0;
  font-family: var(--font-sans);
}

.why-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.94) 0%, rgba(248, 250, 251, 0.9) 55%, rgba(255, 255, 255, 0.86) 100%);
  border: 1px solid rgba(179, 153, 76, 0.28);
  border-radius: 1.35rem;
  padding: 2.75rem 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.65rem;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 12px 28px rgba(0, 0, 0, 0.14),
    0 32px 64px rgba(0, 0, 0, 0.22);
  color: var(--navy);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}
.why-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    145deg,
    rgba(179, 153, 76, 0.65),
    rgba(255, 255, 255, 0.4) 40%,
    rgba(62, 89, 98, 0.15) 70%,
    rgba(179, 153, 76, 0.4)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}
.why-panel:hover {
  transform: translateY(-6px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 16px 32px rgba(0, 0, 0, 0.16),
    0 40px 72px rgba(0, 0, 0, 0.26),
    0 0 0 1px rgba(179, 153, 76, 0.12);
}
.why-panel-glow {
  position: absolute;
  inset: -35% -15% auto;
  height: 65%;
  background: radial-gradient(ellipse at 50% 0%, rgba(179, 153, 76, 0.22), transparent 65%);
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}
.why-panel-shine {
  position: absolute;
  top: 0;
  left: -55%;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent,
    rgba(255, 255, 255, 0.35) 50%,
    transparent
  );
  transform: skewX(-18deg);
  opacity: 0;
  pointer-events: none;
  z-index: 2;
}
.why-panel:hover .why-panel-shine {
  opacity: 1;
  animation: svc-shine 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.why-panel > *:not(.why-panel-glow):not(.why-panel-shine) {
  position: relative;
  z-index: 3;
}
.why-panel-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.1rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(179, 153, 76, 0.22);
  border-radius: 1rem;
  box-shadow:
    0 6px 18px rgba(62, 89, 98, 0.1),
    0 0 0 4px rgba(179, 153, 76, 0.06);
}
.why-panel-logo img {
  width: auto;
  max-width: 11.5rem;
  height: 3.25rem;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}
.why-panel .why-quote,
.why-panel h3.why-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.55rem, 2.4vw, 1.9rem);
  font-style: italic;
  font-weight: 700;
  color: var(--navy-dark);
  margin: 0;
  line-height: 1.25;
}
.why-panel .why-copy,
.why-panel > p.why-copy {
  color: rgba(62, 89, 98, 0.68);
  line-height: 1.7;
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.98rem;
  max-width: 26rem;
}
.why-panel .btn {
  width: 100%;
  color: #fff;
  margin-top: 0.35rem;
  box-shadow: 0 10px 24px rgba(179, 153, 76, 0.28);
}

.why-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: #fff;
  letter-spacing: -0.02em;
}
.why-title em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold);
}
@media (min-width: 768px) {
  .why-title { font-size: 2.55rem; }
}

@keyframes why-orb-a {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(10%, 8%, 0) scale(1.12); }
}
@keyframes why-orb-b {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-8%, -6%, 0) scale(1.14); }
}
@keyframes why-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .why-fx { display: none !important; }
  .why-bg::before,
  .why-bg::after { animation: none !important; }
  .why-item { animation: none; }
  .why-panel:hover .why-panel-shine { animation: none; opacity: 0; }
}

/* CTA cream centered max-w-5xl */
.cta-section {
  background: var(--cream);
  padding: 6rem 0;
  text-align: center;
}
.cta-inner {
  max-width: 64rem; /* max-w-5xl */
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
.cta-section h2 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin: 0;
}
@media (min-width: 768px) {
  .cta-section h2 { font-size: 3rem; }
}
.cta-section .cta-lead {
  font-size: 1.25rem;
  color: rgba(62, 89, 98, 0.6);
  max-width: 42rem;
  margin: 0;
}
.cta-fine {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(62, 89, 98, 0.3);
  margin: 0;
}

/* Legacy feature-list (other pages) */
.feature-list {
  margin: 1.25rem 0 1.75rem;
  display: grid;
  gap: 0.65rem;
  flex-grow: 1;
}
.feature-list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.92rem;
}
.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.note {
  font-size: 0.85rem;
  color: rgba(62, 89, 98, 0.55);
  text-align: center;
  margin-top: 2rem;
}

/* Page hero */
.page-hero {
  padding: 4rem 0 3rem;
  background: linear-gradient(180deg, #fff, var(--cream));
  border-bottom: 1px solid rgba(179, 153, 76, 0.1);
}
.page-hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  max-width: 18ch;
}
.page-hero p {
  max-width: 40rem;
  color: rgba(62, 89, 98, 0.6);
  font-size: 1.1rem;
}

/* About page — match live ref */
body.page-about {
  background: var(--cream);
}
.about-hero {
  padding: 6rem 0; /* py-24 */
  background: #fff;
  border-bottom: 1px solid rgba(179, 153, 76, 0.1);
}
.about-hero-grid {
  display: grid;
  gap: 4rem; /* gap-16 */
  align-items: center;
}
@media (min-width: 1024px) {
  .about-hero-grid { grid-template-columns: 1fr 1fr; }
}
.about-hero-copy {
  display: grid;
  gap: 2rem; /* space-y-8 */
}
.about-hero-copy h1 {
  font-family: var(--font-serif);
  font-size: 3rem; /* text-5xl — ref default */
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1; /* leading-tight */
  margin: 0;
  letter-spacing: -0.01em;
}
@media (min-width: 768px) {
  .about-hero-copy h1 { font-size: 3.75rem; } /* md:text-6xl */
}
.about-hero-line {
  display: block;
}
.about-hero-copy h1 em.about-hero-line {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  color: var(--gold);
}
.about-hero-lead {
  font-size: 1.25rem; /* text-xl */
  line-height: 1.625;
  color: rgba(62, 89, 98, 0.6);
  margin: 0;
}
.about-quote {
  margin: 0;
  padding: 1.5rem; /* p-6 */
  background: rgba(179, 153, 76, 0.05);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
  font-size: 0.875rem;
  font-style: italic;
  line-height: 1.625;
  color: rgba(62, 89, 98, 0.7);
}
.about-hero-visual {
  position: relative;
  padding-bottom: 2rem;
}
@media (min-width: 768px) {
  .about-hero-visual { padding-bottom: 0; }
}
.about-hero-visual img {
  width: 100%;
  border-radius: var(--radius-2xl);
  box-shadow: 0 25px 50px rgba(62, 89, 98, 0.15);
}
.about-stat-card {
  position: absolute;
  bottom: -1.5rem; /* -bottom-6 */
  left: -1.5rem; /* -left-6 */
  max-width: 15rem; /* 240px */
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  background: var(--navy);
  color: #fff;
  border: 1px solid rgba(179, 153, 76, 0.2);
  box-shadow: 0 10px 30px rgba(62, 89, 98, 0.2);
}
.about-stat-value {
  font-family: var(--font-serif);
  font-size: 1.875rem; /* text-3xl */
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 0.25rem;
  line-height: 1;
}
.about-stat-label {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.about-values {
  padding: 6rem 0; /* py-24 */
  background: var(--cream);
}
.about-values-title {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 2.25rem; /* text-4xl */
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 5rem; /* mb-20 */
}
.about-values-grid {
  display: grid;
  gap: 3rem; /* gap-12 */
}
@media (min-width: 768px) {
  .about-values-grid { grid-template-columns: repeat(3, 1fr); }
}
.about-value {
  text-align: center;
  display: grid;
  gap: 1.5rem; /* space-y-6 */
}
.about-value-icon {
  width: 4rem; /* w-16 */
  height: 4rem;
  margin: 0 auto;
  border-radius: var(--radius-2xl);
  background: rgba(179, 153, 76, 0.1);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-value-icon svg {
  width: 1.75rem;
  height: 1.75rem;
}
.about-value h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem; /* text-2xl */
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}
.about-value p {
  margin: 0;
  line-height: 1.625;
  color: rgba(62, 89, 98, 0.6);
}

.about-independence {
  padding: 6rem 0;
  background: var(--navy);
  color: #fff;
}
.about-independence-inner {
  max-width: 56rem; /* max-w-4xl */
  margin: 0 auto;
  text-align: center;
  display: grid;
  gap: 2.5rem; /* space-y-10 */
}
.about-independence h2 {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 700;
  font-style: italic;
  color: #fff;
  margin: 0;
}
.about-independence-copy {
  display: grid;
  gap: 1.5rem;
}
.about-independence-copy p {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.625;
  color: rgba(255, 255, 255, 0.7);
}
.about-independence-copy strong {
  color: var(--gold);
  font-weight: 700;
}
.about-independence-em {
  font-family: var(--font-serif);
  font-size: 1.5rem !important; /* text-2xl */
  font-style: italic;
  color: var(--gold) !important;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 768px) {
  .about-stats { grid-template-columns: repeat(4, 1fr); }
}
.about-stat-num {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 0.25rem;
  line-height: 1;
}
.about-stat-cap {
  margin: 0;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

/* Service pages — ref section structure */
body.page-service,
body.page-services {
  background: var(--cream);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.svc-kicker {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.svc-kicker-light { color: rgba(255, 255, 255, 0.85); }
.svc-section-head {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 3rem;
}
.svc-section-head h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

/* Hero */
.svc-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 5.5rem 0 4.5rem;
  background:
    linear-gradient(105deg, rgba(20, 32, 38, 0.92) 0%, rgba(42, 62, 69, 0.78) 55%, rgba(62, 89, 98, 0.55) 100%),
    var(--svc-hero-bg) center/cover no-repeat;
}
.svc-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 20%, rgba(179, 153, 76, 0.18), transparent 55%);
  pointer-events: none;
}
.svc-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 992px) {
  .svc-hero-grid { grid-template-columns: 1.15fr 0.85fr; gap: 3rem; }
}
.svc-hero-copy { display: grid; gap: 1.15rem; }
.svc-hero-subtitle {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}
.svc-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.12;
}
.svc-hero-lead {
  margin: 0;
  max-width: 38rem;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}
.svc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 0.25rem;
}
.svc-hero-phone {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  background: transparent;
}
.svc-hero-phone:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.svc-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  padding-top: 0.5rem;
}
.svc-hero-badges img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.25));
}
.svc-hero-rating {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
}
.svc-hero-form-card {
  background: #fff;
  color: var(--navy);
  border-radius: var(--radius-2xl);
  padding: 1.75rem;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
  display: grid;
  gap: 0.65rem;
}
.svc-hero-form-eyebrow {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.svc-hero-form-card h2 {
  margin: 0;
  font-size: 1.5rem;
}
.svc-hero-form-card > p {
  margin: 0 0 0.35rem;
  font-size: 0.9375rem;
  color: rgba(62, 89, 98, 0.7);
}
.svc-hero-form {
  display: grid;
  gap: 0.75rem;
}
.svc-hero-form input,
.svc-hero-form textarea {
  width: 100%;
  border: 1px solid rgba(62, 89, 98, 0.18);
  border-radius: var(--radius-lg);
  padding: 0.8rem 0.95rem;
  font: inherit;
  color: var(--navy);
  background: var(--cream);
}
.svc-hero-form input:focus,
.svc-hero-form textarea:focus {
  outline: 2px solid rgba(179, 153, 76, 0.45);
  outline-offset: 1px;
  background: #fff;
}
.svc-hero-form textarea { resize: vertical; min-height: 5.5rem; }
.btn-block { width: 100%; }

/* Logos strip */
.svc-logos {
  background: #fff;
  border-bottom: 1px solid rgba(62, 89, 98, 0.08);
  padding: 1.25rem 0;
}
.svc-logos-track {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.75rem 2.5rem;
}
.svc-logos-track img {
  height: 28px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  opacity: 0.72;
  filter: grayscale(1);
}
@media (min-width: 768px) {
  .svc-logos-track img { height: 34px; }
}

/* Story */
.svc-story {
  padding: 5rem 0;
  background: #fff;
}
.svc-story-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 992px) {
  .svc-story-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}
.svc-story-copy {
  display: grid;
  gap: 1.25rem;
  justify-items: start;
}
.svc-story-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.svc-story-copy h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
}
.svc-story-copy > p {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(62, 89, 98, 0.72);
}
.svc-story-media img {
  width: 100%;
  border-radius: var(--radius-2xl);
  box-shadow: 0 18px 40px rgba(62, 89, 98, 0.12);
}

/* Mid CTA */
.svc-mid-cta {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(120deg, rgba(20, 32, 38, 0.9), rgba(42, 62, 69, 0.82)),
    var(--svc-cta-bg, none) center/cover no-repeat;
}
.svc-mid-cta-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(179, 153, 76, 0.22), transparent 60%);
  pointer-events: none;
}
.svc-mid-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 52rem;
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
  justify-items: center;
}
.svc-mid-cta h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1.25;
}
.svc-mid-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  padding-top: 0.35rem;
}
.svc-btn-on-dark {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  background: transparent;
}
.svc-btn-on-dark:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* Approach cards */
.svc-approach {
  padding: 5rem 0;
  background: var(--cream);
}
.svc-approach-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .svc-approach-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .svc-approach-grid { grid-template-columns: repeat(3, 1fr); }
}
.svc-approach-card {
  background: #fff;
  border: 1px solid rgba(179, 153, 76, 0.18);
  border-radius: var(--radius-2xl);
  padding: 1.75rem 1.5rem;
  display: grid;
  gap: 0.85rem;
  box-shadow: 0 10px 28px rgba(62, 89, 98, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.svc-approach-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(62, 89, 98, 0.1);
}
.svc-approach-icon {
  width: 4rem;
  height: 4rem;
  display: grid;
  place-items: center;
}
.svc-approach-icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}
.svc-approach-card h3 {
  margin: 0;
  font-size: 1.25rem;
}
.svc-approach-card p {
  margin: 0;
  font-size: 0.975rem;
  line-height: 1.65;
  color: rgba(62, 89, 98, 0.7);
}

/* Process */
.svc-process {
  padding: 5rem 0;
  background: #fff;
}
.svc-process-list {
  display: grid;
  gap: 1.25rem;
  max-width: 56rem;
  margin: 0 auto;
  counter-reset: none;
}
.svc-process-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.35rem 1.5rem;
  border: 1px solid rgba(62, 89, 98, 0.1);
  border-radius: var(--radius-xl);
  background: var(--cream);
}
.svc-process-num {
  display: inline-grid;
  place-items: center;
  min-width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1rem;
}
.svc-process-item h3 {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
}
.svc-process-item p {
  margin: 0;
  font-size: 0.975rem;
  line-height: 1.65;
  color: rgba(62, 89, 98, 0.7);
}

/* Discuss band */
.svc-discuss {
  padding: 5rem 0;
  background: var(--navy);
  color: #fff;
}
.svc-discuss-grid {
  display: grid;
  gap: 2rem;
  align-items: stretch;
}
@media (min-width: 992px) {
  .svc-discuss-grid { grid-template-columns: 1.05fr 0.95fr; gap: 3rem; }
}
.svc-discuss-copy {
  display: grid;
  gap: 1.15rem;
  align-content: center;
  justify-items: start;
}
.svc-discuss-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
}
.svc-discuss-copy > p {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
}
.svc-discuss-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 0.35rem;
}
.svc-discuss-media {
  min-height: 280px;
  border-radius: var(--radius-2xl);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.svc-disclaimer-bar {
  padding: 3rem 0;
  background: var(--navy-dark);
  text-align: center;
}
.svc-disclaimer-bar p {
  margin: 0 auto;
  max-width: 48rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1.625;
  color: rgba(255, 255, 255, 0.4);
}

/* Services index groups */
.svc-group {
  padding: 6rem 0;
}
.svc-group-white { background: #fff; }
.svc-group-cream { background: var(--cream); }
.svc-group-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 3rem;
}
.svc-group-rule {
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.svc-group-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .svc-group-grid { grid-template-columns: 1fr 1fr; }
}
.svc-list-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(179, 153, 76, 0.2);
  box-shadow: 0 1px 3px rgba(0,0,0,.06), 0 10px 30px rgba(62, 89, 98, 0.05);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.svc-list-card:hover {
  transform: translateX(10px);
  border-color: rgba(179, 153, 76, 0.4);
}
.svc-list-icon {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-xl);
  background: rgba(179, 153, 76, 0.1);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.svc-list-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}
.svc-list-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 0.5rem;
}
.svc-list-card p {
  margin: 0;
  line-height: 1.625;
  color: rgba(62, 89, 98, 0.6);
}

/* FAQ / Forms / Legal — compact */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 0.75rem; }
.faq-item {
  background: #fff;
  border: 1px solid rgba(179, 153, 76, 0.2);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.faq-item button {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 1.15rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item button::after { content: "+"; color: var(--gold); font-size: 1.25rem; }
.faq-item.open button::after { content: "–"; }
.faq-item .faq-a { display: none; padding: 0 1.25rem 1.2rem; color: rgba(62, 89, 98,.6); }
.faq-item.open .faq-a { display: block; }

/* Contact page — match live ref */
body.page-contact {
  background: var(--cream);
}
.contact-page {
  padding: 5rem 0 8rem;
  background: var(--cream);
}
.contact-layout {
  display: grid;
  gap: 5rem; /* gap-20 */
  align-items: start;
}
@media (min-width: 1024px) {
  .contact-layout { grid-template-columns: 1fr 1fr; }
}
.contact-info {
  display: grid;
  gap: 3rem; /* space-y-12 */
}
.contact-intro {
  display: grid;
  gap: 1.5rem; /* space-y-6 */
}
.contact-intro h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3rem); /* text-5xl */
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin: 0;
}
.contact-h1-line {
  display: block;
}
.contact-intro h1 em.contact-h1-line {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  color: var(--gold);
}
.contact-intro p {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.625;
  color: rgba(62, 89, 98, 0.6);
}
.contact-channels {
  display: grid;
  gap: 2rem; /* space-y-8 */
}
.contact-channel {
  display: flex;
  gap: 1.5rem; /* gap-6 */
  align-items: flex-start;
}
.contact-channel-icon {
  flex-shrink: 0;
  width: 3rem; /* w-12 */
  height: 3rem;
  border-radius: var(--radius-xl);
  background: rgba(179, 153, 76, 0.1);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-channel-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}
.contact-channel h4 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 0.25rem;
}
.contact-channel p {
  margin: 0;
  color: rgba(62, 89, 98, 0.6);
  line-height: 1.5;
}
.contact-channel a {
  color: rgba(62, 89, 98, 0.6);
}
.contact-channel a:hover { color: var(--gold); }
.contact-meta {
  margin-top: 0.25rem !important;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold) !important;
}
.contact-trust {
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: var(--navy);
  color: #fff;
  border: 1px solid rgba(179, 153, 76, 0.15);
  display: grid;
  gap: 1rem;
}
.contact-trust-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gold);
}
.contact-trust-title svg {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}
.contact-trust-title h4 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0;
}
.contact-trust > p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgba(255, 255, 255, 0.6);
}
.contact-trust-fine {
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(179, 153, 76, 0.6) !important;
}

.contact-form-card {
  background: #fff;
  border: 1px solid rgba(179, 153, 76, 0.2);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(62, 89, 98, 0.08);
}
@media (min-width: 768px) {
  .contact-form-card { padding: 3rem; } /* md:p-12 */
}
.contact-form {
  display: grid;
  gap: 1.5rem; /* space-y-6 */
}
.contact-form-row {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .contact-form-row { grid-template-columns: 1fr 1fr; }
}
.contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem; /* space-y-2 */
}
.contact-form .form-group label {
  font-size: 0.75rem; /* text-xs */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--navy);
}
.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem; /* px-4 py-3 */
  border-radius: var(--radius-lg);
  border: 1px solid rgba(179, 153, 76, 0.2);
  background: #fff;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--navy);
  outline: none;
  transition: border-color 0.2s;
}
.contact-form .form-group textarea {
  min-height: 7rem;
  resize: vertical;
}
.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
  border-color: var(--gold);
}
.contact-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: var(--radius-lg);
  background: rgba(179, 153, 76, 0.05);
  border: 1px solid rgba(179, 153, 76, 0.1);
}
.contact-disclaimer input {
  margin-top: 0.2rem;
  flex-shrink: 0;
  accent-color: var(--gold);
}
.contact-disclaimer label {
  font-size: 0.625rem; /* text-[10px] */
  line-height: 1.625;
  color: rgba(62, 89, 98, 0.6);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}
.contact-disclaimer strong {
  color: var(--navy);
  font-weight: 700;
}
.contact-submit {
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1.125rem;
  font-weight: 700;
}

.form-wrap {
  background: #fff;
  border: 1px solid rgba(179, 153, 76, 0.2);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(62, 89, 98, 0.06);
}
.form-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.85rem; font-weight: 600; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(62, 89, 98, 0.12);
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 0.85rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--navy);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid rgba(179, 153, 76, 0.45);
  border-color: var(--gold);
}
.checkbox-grid { display: grid; grid-template-columns: 1fr; gap: 0.55rem; }
@media (min-width: 480px) {
  .checkbox-grid { grid-template-columns: 1fr 1fr; }
}
.checkbox-grid label { display: flex; align-items: center; gap: 0.5rem; font-weight: 400; font-size: 0.9rem; }
.alert { padding: 0.95rem 1.1rem; border-radius: var(--radius-lg); margin-bottom: 1rem; font-size: 0.92rem; }
.alert-error { background: rgba(160,40,40,.08); color: #8a2222; border: 1px solid rgba(160,40,40,.2); }
.contact-aside { display: grid; gap: 1rem; }
.contact-card {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 1.5rem;
}
.contact-card h3 { color: var(--gold); font-size: 1.15rem; }
.contact-card a { color: #fff; }
.contact-card p { color: rgba(255,255,255,.7); margin: 0; }

.legal-content { max-width: 780px; margin: 0 auto; }
.legal-content h2 { font-size: 1.5rem; margin-top: 2rem; }
.legal-content p, .legal-content li { color: rgba(62, 89, 98,.6); }
.legal-content ul { list-style: disc; padding-left: 1.25rem; margin-bottom: 1rem; }

.process-steps { counter-reset: step; display: grid; gap: 1rem; }
.process-steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.15rem;
  background: #fff;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(179, 153, 76,.2);
}
.process-steps li::before {
  content: counter(step);
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-family: var(--font-serif);
  font-weight: 700;
}
/* —— Thank You page (matches live /thank-you) —— */
.thank-page {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0 5rem;
  min-height: calc(100vh - 10rem);
}
.thank-wrap {
  width: 100%;
  max-width: 42rem; /* max-w-2xl */
  margin-inline: auto;
  padding-inline: 1rem;
  text-align: center;
}
.thank-box {
  background: #fff;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(179, 153, 76, 0.2);
  box-shadow: 0 25px 50px -12px rgba(62, 89, 98, 0.25);
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 640px) {
  .thank-box { padding: 3rem; }
}
.thank-logo img {
  width: 14rem;
  height: 5rem;
  object-fit: contain;
  margin-inline: auto;
}
.thank-check {
  width: 6rem;
  height: 6rem;
  border-radius: 9999px;
  background: var(--gold-10);
  color: var(--gold);
  display: grid;
  place-items: center;
}
.thank-check svg {
  width: 3rem;
  height: 3rem;
}
.thank-copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.thank-copy h1 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin: 0;
  line-height: 1.2;
}
.thank-copy h1 em {
  color: var(--gold);
  font-style: italic;
  font-weight: 600;
}
.thank-copy p {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.625;
  color: rgba(62, 89, 98, 0.6);
}
.thank-copy strong {
  color: var(--navy);
  font-weight: 700;
}
.thank-cards {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding-top: 0.5rem;
}
@media (min-width: 640px) {
  .thank-cards { grid-template-columns: 1fr 1fr; }
}
.thank-card {
  text-align: left;
  padding: 1.5rem;
  background: rgba(179, 153, 76, 0.05);
  border: 1px solid rgba(179, 153, 76, 0.1);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.thank-card-icon {
  color: var(--gold);
  width: 1.5rem;
  height: 1.5rem;
}
.thank-card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  display: block;
}
.thank-card h3 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  color: var(--navy);
}
.thank-card p {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.5;
  color: rgba(62, 89, 98, 0.6);
}
.thank-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  width: 100%;
  padding-top: 0.5rem;
}
@media (min-width: 640px) {
  .thank-actions {
    flex-direction: row;
    width: auto;
  }
}
.thank-actions .btn {
  padding: 1rem 2rem;
}
.thank-fine {
  margin: 0;
  width: 100%;
  padding-top: 2rem;
  border-top: 1px solid rgba(62, 89, 98, 0.05);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(62, 89, 98, 0.4);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: var(--gold-10);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
}
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .split { grid-template-columns: 1.05fr 0.95fr; gap: 3.5rem; }
}
.split-visual {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  min-height: 320px;
  background: linear-gradient(145deg, rgba(62, 89, 98,.12), rgba(62, 89, 98,.55)), url("../images/book-mockup.webp") center / cover no-repeat;
  border: 1px solid rgba(179, 153, 76,.2);
  box-shadow: 0 25px 50px rgba(62, 89, 98,.12);
}
.split-badge {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  background: rgba(62, 89, 98, 0.9);
  color: #fff;
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(179, 153, 76, 0.35);
}
.split-badge strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.split-badge p { margin: 0; font-size: 0.88rem; color: rgba(255,255,255,.7); }
.service-tile {
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: #fff;
  border: 1px solid rgba(179, 153, 76,.2);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  height: 100%;
  display: block;
}
.service-tile:hover {
  transform: translateY(-5px);
  border-color: rgba(179, 153, 76,.4);
  box-shadow: 0 20px 40px rgba(62, 89, 98,.1);
}
.btn-gold { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn-outline, .btn-outline-light {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  box-shadow: none;
}

/* —— Get in Touch (premium) —— */
.downform {
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% -5%, rgba(179, 153, 76, 0.16), transparent 58%),
    linear-gradient(180deg, #f7fafb 0%, var(--cream) 48%, #eef3f5 100%);
}
.downform-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.downform-bg::before {
  content: "";
  position: absolute;
  width: 40vmax;
  height: 40vmax;
  left: -12%;
  bottom: -18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(62, 89, 98, 0.08), transparent 68%);
  animation: dnform-orb-a 22s ease-in-out infinite alternate;
}
.downform-bg::after {
  content: "";
  position: absolute;
  width: 34vmax;
  height: 34vmax;
  right: -10%;
  top: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(179, 153, 76, 0.12), transparent 70%);
  animation: dnform-orb-b 18s ease-in-out infinite alternate;
}
.downform-fx {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.75;
}
.downform .container { position: relative; z-index: 1; }

.dnform {
  max-width: 44rem;
  margin-inline: auto;
}
.dnform-head {
  text-align: center;
  margin-bottom: 2.75rem;
}
.dnform-eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.35rem 0.9rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid rgba(179, 153, 76, 0.28);
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 14px rgba(179, 153, 76, 0.08);
}
.dnform-head .main-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.6vw, 2.75rem);
  margin: 0 0 0.85rem;
  color: var(--navy-dark);
  letter-spacing: -0.02em;
}
.dnform-head .main-heading em {
  color: var(--gold);
  font-style: italic;
  font-weight: 600;
}
.dnform-head .main-para {
  margin: 0 auto;
  max-width: 32rem;
  color: rgba(62, 89, 98, 0.68);
  font-size: 1.05rem;
  line-height: 1.7;
}
.dnform-head .main-para a {
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(179, 153, 76, 0.35);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.dnform-head .main-para a:hover {
  color: var(--navy);
  border-color: var(--navy);
}
.dnform-rule {
  display: block;
  width: 4rem;
  height: 2px;
  margin: 1.5rem auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 9999px;
}

.dnform-form {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  gap: 1rem;
  padding: 2rem 1.5rem;
  border-radius: 1.35rem;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.94) 0%, rgba(252, 250, 246, 0.9) 100%);
  border: 1px solid rgba(179, 153, 76, 0.22);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 12px 28px rgba(62, 89, 98, 0.08),
    0 28px 56px rgba(62, 89, 98, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
@media (min-width: 768px) {
  .dnform-form { padding: 2.5rem 2.25rem; gap: 1.1rem; }
}
.dnform-form::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    145deg,
    rgba(179, 153, 76, 0.55),
    rgba(255, 255, 255, 0.4) 40%,
    rgba(62, 89, 98, 0.12) 70%,
    rgba(179, 153, 76, 0.35)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}
.dnform-card-glow {
  position: absolute;
  inset: -40% -20% auto;
  height: 60%;
  background: radial-gradient(ellipse at 50% 0%, rgba(179, 153, 76, 0.16), transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.dnform-form > *:not(.dnform-card-glow):not(.lead-popup-honeypot) {
  position: relative;
  z-index: 2;
}

.dnform-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .dnform-row { grid-template-columns: 1fr 1fr; }
}
.fldst-label {
  display: block;
  margin: 0 0 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(62, 89, 98, 0.55);
}
.dnform-form .fldst input,
.dnform-form .fldst textarea {
  width: 100%;
  border: 1px solid rgba(62, 89, 98, 0.14);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.88);
  padding: 0.9rem 1rem;
  color: var(--navy-dark);
  font: inherit;
  font-size: 0.95rem;
  height: 3.15rem;
  outline: none;
  box-shadow: 0 1px 2px rgba(62, 89, 98, 0.04);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}
.dnform-form .fldst textarea {
  height: 7.5rem;
  resize: vertical;
  min-height: 7.5rem;
  padding-top: 0.9rem;
}
.dnform-form .fldst input::placeholder,
.dnform-form .fldst textarea::placeholder {
  color: rgba(62, 89, 98, 0.4);
}
.dnform-form .fldst input:hover,
.dnform-form .fldst textarea:hover {
  border-color: rgba(179, 153, 76, 0.35);
}
.dnform-form .fldst input:focus,
.dnform-form .fldst textarea:focus {
  border-color: var(--gold);
  background: #fff;
  box-shadow:
    0 0 0 4px rgba(179, 153, 76, 0.14),
    0 8px 18px rgba(179, 153, 76, 0.08);
}
.dnform-submit {
  margin-top: 0.35rem;
  padding: 0.95rem 2rem;
  border-radius: 9999px;
  justify-self: center;
  min-width: 12.5rem;
  gap: 0.5rem;
  box-shadow: 0 10px 24px rgba(179, 153, 76, 0.28);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.dnform-submit svg {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.dnform-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(179, 153, 76, 0.35);
}
.dnform-submit:hover svg {
  transform: translateX(3px);
}

@keyframes dnform-orb-a {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(8%, -6%, 0) scale(1.1); }
}
@keyframes dnform-orb-b {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-7%, 5%, 0) scale(1.12); }
}

@media (prefers-reduced-motion: reduce) {
  .downform-fx { display: none !important; }
  .downform-bg::before,
  .downform-bg::after { animation: none !important; }
  .dnform-submit:hover { transform: none; }
}

/* —— Footer (ref footer-main) —— */
.site-footer {
  background: #000;
  color: rgba(255, 255, 255, 0.75);
  padding: 0;
}
.footer-top {
  padding: 2.5rem 0 1.75rem;
}
.footer-top-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}
@media (min-width: 1024px) {
  .footer-top-grid {
    grid-template-columns: 1.6fr 0.85fr 0.85fr 0.9fr;
    gap: 1.5rem 2rem;
  }
}
.footer-logo {
  width: 13.5rem;
  height: auto;
  object-fit: contain;
}
.footer-brand p {
  margin: 1.1rem 0 1.25rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  max-width: 28rem;
}
.paymentlogos {
  display: block;
  max-width: 280px;
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
  opacity: 0.92;
}
.site-footer h4 {
  font-family: var(--font-sans);
  color: #aaa;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0.6rem 0 0.75rem;
}
.footer-col-spacer {
  display: none;
}
@media (min-width: 1024px) {
  .footer-col-spacer { display: block; visibility: hidden; }
}
.footer-nav {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.footer-nav li {
  position: relative;
  padding-left: 0.85rem;
  font-size: 0.875rem;
  line-height: 1.45;
}
.footer-nav li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}
.footer-nav a {
  color: rgba(255, 255, 255, 0.78);
}
.footer-nav a:hover { color: var(--gold); }

.footer-bottom {
  background: #3e5962;
  padding: 0.75rem 0;
  border-top: none;
}
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  font-size: inherit;
  color: inherit;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
}
.footer-bottom-inner p {
  margin: 0;
  color: #fff;
  font-size: 0.75rem;
  line-height: 1.5;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
}
.footer-nav2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  margin: 0;
  padding: 0;
}
.footer-nav2 li {
  position: relative;
  padding: 0 0.75rem;
}
.footer-nav2 li:first-child { padding-left: 0; }
.footer-nav2 li:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 30%;
  width: 1px;
  height: 13px;
  background: #fff;
}
.footer-nav2 a {
  font-size: 0.8125rem;
  color: #eaeaea;
}
.footer-nav2 a:hover { color: #fff; }
@media (min-width: 768px) {
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  .footer-nav2 { justify-content: flex-end; }
}

.disclaimer-area {
  background: #000;
  padding: 0.75rem 0 1.25rem;
}
.disclaimer {
  margin: 0;
  padding: 0.5rem 0 0;
  font-size: 0.6875rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.55;
}
.disclaimer strong {
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 600;
}

/* —— Lead popup (Get Started) —— */
.lead-popup {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}
.lead-popup.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.lead-popup[hidden] { display: none !important; }
.lead-popup.is-open[hidden] { display: flex !important; }

.lead-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(30, 30, 30, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.lead-popup-dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(92vh, 720px);
  display: grid;
  grid-template-columns: 1fr;
  background: #fff;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(179, 153, 76, 0.2);
  transform: translateY(18px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.lead-popup.is-open .lead-popup-dialog {
  transform: translateY(0) scale(1);
}
@media (min-width: 800px) {
  .lead-popup-dialog {
    grid-template-columns: 0.95fr 1.05fr;
    max-height: none;
  }
}

.lead-popup-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 5;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 9999px;
  background: var(--navy);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, transform 0.2s ease;
}
.lead-popup-close:hover {
  background: var(--gold);
  transform: scale(1.05);
}

.lead-popup-panel {
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(179, 153, 76, 0.28), transparent 55%),
    linear-gradient(155deg, #3e5962 0%, #2a3e45 100%);
  color: #fff;
  padding: 2.25rem 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
@media (min-width: 800px) {
  .lead-popup-panel { padding: 2.75rem 2.25rem; }
}
.lead-popup-eyebrow {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.lead-popup-panel h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  line-height: 1.2;
}
.lead-popup-panel h2 em {
  color: var(--gold);
  font-style: italic;
}
.lead-popup-lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.6;
}
.lead-popup-perks {
  margin: 0.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}
.lead-popup-perks li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.88);
}
.lead-popup-perks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(179, 153, 76, 0.25);
}
.lead-popup-phone {
  margin: 1rem 0 0;
  font-weight: 700;
  font-size: 1.05rem;
}
.lead-popup-phone a { color: var(--gold); }
.lead-popup-phone a:hover { color: #fff; }

.lead-popup-form-wrap {
  padding: 2rem 1.5rem 1.75rem;
  overflow-y: auto;
  background: linear-gradient(180deg, #fff 0%, #f4f7f8 100%);
}
@media (min-width: 800px) {
  .lead-popup-form-wrap { padding: 2.5rem 2.25rem 2rem; }
}
.lead-popup-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.lead-popup-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.lead-popup-field label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(62, 89, 98, 0.7);
}
.lead-popup-field input,
.lead-popup-field textarea {
  width: 100%;
  border: 1px solid rgba(62, 89, 98, 0.15);
  border-radius: 0.65rem;
  background: #fff;
  padding: 0.8rem 0.95rem;
  font: inherit;
  color: var(--navy);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.lead-popup-field textarea {
  resize: vertical;
  min-height: 5rem;
}
.lead-popup-field input:focus,
.lead-popup-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(179, 153, 76, 0.18);
}
.lead-popup-field input::placeholder,
.lead-popup-field textarea::placeholder {
  color: rgba(62, 89, 98, 0.4);
}
.lead-popup-submit {
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.95rem 1.5rem;
  font-size: 1.05rem;
}
.lead-popup-fine {
  margin: 0.35rem 0 0;
  text-align: center;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(62, 89, 98, 0.45);
}
body.lead-popup-open { overflow: hidden; }

@media (max-width: 799px) {
  .lead-popup-dialog {
    max-height: 92vh;
    overflow-y: auto;
  }
  .lead-popup-panel { padding-bottom: 1.5rem; }
}

/* Turbo Drive — instant navigation, no visible loader */
.turbo-progress-bar { visibility: hidden !important; height: 0 !important; }

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

/* —— Testimonials (ref client-testimonials) —— */
.client-testimonials-sec {
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0 4.5rem;
  background:
    radial-gradient(ellipse 70% 50% at 10% 0%, rgba(62, 89, 98, 0.08), transparent 55%),
    radial-gradient(ellipse 60% 45% at 90% 100%, rgba(179, 153, 76, 0.08), transparent 50%),
    #f7f9fa;
}
.client-testimonials-sec .ct-header {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 2rem;
}
.client-testimonials-sec .ct-eyebrow,
.client-testimonials-sec .section-head p.ct-eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.35rem 0.9rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid rgba(179, 153, 76, 0.28);
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.65);
  line-height: 1.4;
}
.client-testimonials-sec .main-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.6vw, 2.75rem);
  margin: 0 0 0.85rem;
  color: var(--navy-dark);
  letter-spacing: -0.02em;
}
.page-testimonials-hero .main-heading {
  font-size: clamp(2.1rem, 4vw, 3rem);
}
.client-testimonials-sec h1.main-heading {
  font-weight: 700;
  line-height: 1.2;
}

/* Testimonials page CTA */
.testimonials-cta {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0;
  background:
    radial-gradient(ellipse 70% 60% at 20% 0%, rgba(179, 153, 76, 0.18), transparent 55%),
    linear-gradient(145deg, #2a3e45 0%, var(--navy) 55%, #24363c 100%);
  color: #fff;
}
.testimonials-cta-inner {
  max-width: 44rem;
  margin: 0 auto;
  text-align: center;
}
.testimonials-cta-eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.3rem 0.8rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid rgba(179, 153, 76, 0.35);
  border-radius: 9999px;
  background: rgba(179, 153, 76, 0.1);
}
.testimonials-cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.2vw, 2.4rem);
  line-height: 1.25;
  margin: 0 0 1.75rem;
  color: #fff;
}
.testimonials-cta h2 em {
  color: var(--gold);
  font-style: italic;
}
.testimonials-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}
.testimonials-cta .btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.testimonials-cta .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}
.client-testimonials-sec .main-heading em {
  color: var(--gold);
  font-style: italic;
  font-weight: 600;
}
.client-testimonials-sec .main-para {
  margin: 0;
  color: rgba(62, 89, 98, 0.68);
  font-size: 1.05rem;
  line-height: 1.7;
}
.client-testimonials-sec .ct-rule {
  display: block;
  width: 4rem;
  height: 2px;
  margin: 1.5rem auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 9999px;
}

.client-testimonials-slider-wrap {
  position: relative;
  padding: 10px 48px 8px;
  max-width: 1180px;
  margin: 0 auto;
}
.client-testimonials-viewport {
  overflow: hidden;
  padding: 4px 0 8px;
}
.client-testimonials-track {
  display: flex;
  transition: transform 0.65s ease;
  will-change: transform;
}
.ct-slide {
  flex: 0 0 auto;
  padding: 18px 12px 28px;
  box-sizing: border-box;
}
@media (max-width: 991px) {
  .client-testimonials-slider-wrap { padding: 10px 42px 8px; }
  .ct-card { padding: 32px 22px 24px; }
}
@media (max-width: 575px) {
  .client-testimonials-slider-wrap { padding: 8px 40px 8px; }
}

.ct-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  margin: 0;
  padding: 36px 28px 28px;
  background: #fff;
  border: 1px solid rgba(62, 89, 98, 0.08);
  border-radius: 18px;
  box-shadow: 0 14px 36px rgba(30, 30, 30, 0.06);
  text-align: center;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.ct-card::before {
  content: "\201C";
  position: absolute;
  top: 14px;
  left: 22px;
  font-size: 64px;
  line-height: 1;
  color: rgba(62, 89, 98, 0.1);
  font-family: Georgia, "Times New Roman", serif;
  pointer-events: none;
}
.ct-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(30, 30, 30, 0.1);
}
.ct-avatar {
  width: 72px;
  height: 72px;
  margin: 0 auto 14px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 20px rgba(62, 89, 98, 0.28);
  background: linear-gradient(145deg, #3e5962 0%, #2a3e45 100%);
}
.ct-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ct-stars {
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  justify-content: center;
  gap: 3px;
  flex-shrink: 0;
}
.ct-text {
  flex: 0 0 auto;
  margin: 0 0 10px;
  color: #4b4b4b;
  font-size: 15px;
  line-height: 1.7;
  height: calc(1.7em * 5);
  max-height: calc(1.7em * 5);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  position: relative;
  z-index: 1;
}
.ct-readmore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0 auto 18px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  transition: color 0.25s ease, gap 0.25s ease;
}
.ct-readmore::after {
  content: "";
  width: 14px;
  height: 1px;
  background: currentColor;
  transition: width 0.25s ease;
}
.ct-readmore:hover {
  color: var(--gold);
  gap: 10px;
}
.ct-readmore:hover::after { width: 22px; }
.ct-name {
  margin: auto 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(62, 89, 98, 0.1);
  color: #1e1e1e;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.ct-name span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 400;
  color: #999;
}

.ct-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-70%);
  z-index: 5;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  box-shadow: 0 8px 22px rgba(30, 30, 30, 0.12);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.25s ease, color 0.25s ease;
}
.ct-arrow:hover {
  background: var(--navy);
  color: #fff;
}
.ct-prev { left: 0; }
.ct-next { right: 0; }
@media (max-width: 575px) {
  .ct-arrow { width: 40px; height: 40px; }
}

.ct-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}
.ct-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(62, 89, 98, 0.25);
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease, border-radius 0.3s ease;
}
.ct-dots button.is-active {
  width: 28px;
  border-radius: 999px;
  background: var(--navy);
}

/* Testimonial modal */
.ct-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.ct-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.ct-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 28, 32, 0.62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.ct-modal-dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  max-height: min(86vh, 640px);
  overflow: auto;
  padding: 48px 40px 40px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafb 100%);
  border: 1px solid rgba(179, 153, 76, 0.28);
  border-radius: 22px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  text-align: center;
  transform: translateY(28px) scale(0.96);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
}
.ct-modal.is-open .ct-modal-dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.ct-modal-dialog::before {
  content: "";
  position: absolute;
  top: 0;
  left: 40px;
  right: 40px;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.ct-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(62, 89, 98, 0.08);
  color: var(--navy);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.ct-modal-close:hover {
  background: var(--navy);
  color: #fff;
  transform: rotate(90deg);
}
.ct-modal-quote {
  position: absolute;
  top: 28px;
  left: 28px;
  font-size: 72px;
  line-height: 1;
  color: rgba(62, 89, 98, 0.08);
  font-family: Georgia, "Times New Roman", serif;
  pointer-events: none;
}
.ct-modal-avatar {
  width: 84px;
  height: 84px;
  margin: 0 auto 16px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(145deg, #3e5962 0%, #2a3e45 100%);
  box-shadow: 0 10px 24px rgba(62, 89, 98, 0.3);
}
.ct-modal-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ct-modal-stars {
  color: var(--gold);
  display: flex;
  justify-content: center;
  gap: 3px;
  margin-bottom: 16px;
}
.ct-modal-text {
  margin: 0 0 1.25rem;
  color: #4b4b4b;
  font-size: 1.05rem;
  line-height: 1.75;
}
.ct-modal-name {
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(62, 89, 98, 0.1);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-dark);
}
.ct-modal-name span {
  display: block;
  margin-top: 4px;
  font-size: 0.85rem;
  font-weight: 400;
  color: #999;
}
body.ct-modal-open { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  .client-testimonials-track { transition: none; }
}

/* —— Portfolio / Works (premium) —— */
.portfolio-sec {
  position: relative;
  overflow: hidden;
  padding: 5.75rem 0 5.25rem;
  background:
    radial-gradient(ellipse 65% 45% at 50% -5%, rgba(179, 153, 76, 0.14), transparent 60%),
    linear-gradient(180deg, #fff 0%, #f5f8f9 55%, #eef3f5 100%);
}
.portfolio-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(62, 89, 98, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(62, 89, 98, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 40%, #000 15%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 40%, #000 15%, transparent 75%);
}
.portfolio-sec .container { position: relative; z-index: 1; }

.portfolio-head {
  text-align: center;
  max-width: 46rem;
  margin: 0 auto 2.5rem;
}
.portfolio-eyebrow,
p.portfolio-eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.35rem 0.9rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid rgba(179, 153, 76, 0.28);
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.65);
  line-height: 1.4;
}
.portfolio-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3.4vw, 2.65rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--navy-dark);
  margin: 0 0 1rem;
}
.portfolio-head h2 em {
  color: var(--gold);
  font-style: italic;
  font-weight: 600;
}
.portfolio-head > p:not(.portfolio-eyebrow) {
  margin: 0;
  color: rgba(62, 89, 98, 0.68);
  font-size: 1.05rem;
  line-height: 1.7;
}
.portfolio-head > p.portfolio-eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.35rem 0.9rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid rgba(179, 153, 76, 0.28);
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.65);
  line-height: 1.4;
}
.portfolio-rule {
  display: block;
  width: 4.25rem;
  height: 2px;
  margin: 1.5rem auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 9999px;
}

.portfolio-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem 0.35rem;
  max-width: 52rem;
  margin: 0 auto 2.25rem;
  padding: 0.35rem;
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(179, 153, 76, 0.18);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 8px 20px rgba(62, 89, 98, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.portfolio-tab {
  appearance: none;
  border: 1px solid transparent;
  background: transparent;
  color: rgba(42, 62, 69, 0.78);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2;
  padding: 0.35rem 0.7rem;
  border-radius: 9999px;
  cursor: pointer;
  transition:
    background 0.28s ease,
    color 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    transform 0.28s ease;
}
.portfolio-tab:hover {
  color: var(--navy-dark);
  background: rgba(62, 89, 98, 0.06);
}
.portfolio-tab.is-active {
  color: #fff;
  background: linear-gradient(145deg, #4a6a74, var(--navy));
  border-color: rgba(179, 153, 76, 0.35);
  box-shadow: 0 4px 10px rgba(62, 89, 98, 0.2);
}
.portfolio-tab.is-active:hover {
  color: #fff;
  transform: none;
}

.portfolio-panels { position: relative; }
.portfolio-empty {
  text-align: center;
  color: rgba(62, 89, 98, 0.55);
  margin: 2rem 0;
}
.portfolio-panel {
  display: none;
  animation: portfolio-fade 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.portfolio-panel.is-active { display: block; }

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem 1.25rem;
  align-items: stretch;
}
@media (min-width: 640px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem 1.5rem;
  }
}

.portfolio-card {
  display: flex;
  justify-content: center;
  perspective: 900px;
  animation: portfolio-rise 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(var(--port-i, 0) * 45ms);
}
.portfolio-stack {
  position: relative;
  width: min(100%, 15.5rem);
  aspect-ratio: 2 / 3;
  transform-style: preserve-3d;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.portfolio-card:hover .portfolio-stack {
  transform: translateY(-10px) rotateX(4deg) rotateY(-6deg) scale(1.03);
}
.portfolio-cover,
.portfolio-fan {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.85rem;
  box-shadow:
    0 14px 32px rgba(30, 30, 30, 0.16),
    0 2px 0 rgba(255, 255, 255, 0.15) inset;
}
.portfolio-cover {
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.portfolio-fan {
  z-index: 1;
  filter: brightness(0.92) saturate(0.95);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
}
.portfolio-fan-a {
  transform: translate(-12%, 4%) rotate(-8deg) scale(0.94);
  opacity: 0.78;
}
.portfolio-fan-b {
  transform: translate(12%, 4%) rotate(8deg) scale(0.94);
  opacity: 0.78;
}
.portfolio-card:hover .portfolio-fan-a {
  transform: translate(-18%, 2%) rotate(-12deg) scale(0.93);
  opacity: 0.9;
}
.portfolio-card:hover .portfolio-fan-b {
  transform: translate(18%, 2%) rotate(12deg) scale(0.93);
  opacity: 0.9;
}
.portfolio-stack::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: -12%;
  height: 18%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(42, 62, 69, 0.28), transparent 70%);
  z-index: 0;
  filter: blur(6px);
  opacity: 0.7;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.portfolio-card:hover .portfolio-stack::after {
  opacity: 1;
  transform: scaleX(1.08);
}

@keyframes portfolio-fade {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes portfolio-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .portfolio-panel,
  .portfolio-card { animation: none; }
  .portfolio-card:hover .portfolio-stack,
  .portfolio-card:hover .portfolio-fan-a,
  .portfolio-card:hover .portfolio-fan-b { transform: none; }
}

/* —— Responsive polish (mobile / tablet) —— */
@media (max-width: 1023px) {
  .section,
  .home-services,
  .why-section,
  .portfolio-sec,
  .client-testimonials-sec,
  .downform-sec,
  .svc-story,
  .svc-approach,
  .svc-process,
  .svc-discuss {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
  .svc-hero { padding: 3.5rem 0 3rem; }
  .svc-mid-cta { padding: 3rem 0; }
  .contact-page { padding: 3rem 0 4rem; }
  .contact-layout { gap: 2.5rem; }
  .why-panel { padding: 1.75rem 1.35rem; }
  .svc-hero-badges img { width: 48px; height: 48px; }
  .svc-hero-actions .btn,
  .svc-mid-cta-actions .btn,
  .svc-discuss-actions .btn,
  .svc-story-actions .btn,
  .testimonials-cta-actions .btn {
    white-space: normal;
  }
  .nav-list > li > a { padding: 0.85rem 0.15rem; }
}

@media (max-width: 767px) {
  .section,
  .home-services,
  .why-section,
  .portfolio-sec,
  .client-testimonials-sec,
  .downform-sec {
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }
  .hero { padding: 2rem 0 3rem; }
  .hero-visual { max-width: 14rem; }
  .why-title,
  .about-hero-copy h1,
  .cta-section h2,
  .svc-banner h1,
  .page-hero h1 {
    font-size: clamp(1.75rem, 7vw, 2.35rem) !important;
    line-height: 1.15;
  }
  .svc-hero h1 { font-size: clamp(1.7rem, 6.5vw, 2.4rem); }
  .svc-section-head h2,
  .svc-story-copy h2,
  .svc-discuss-copy h2,
  .svc-mid-cta h2 {
    font-size: clamp(1.45rem, 5.5vw, 2rem);
  }
  .footer-top { padding: 2rem 0 1.25rem; }
  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }
  .footer-nav2 {
    flex-wrap: wrap;
    row-gap: 0.35rem;
  }
  .footer-nav2 li + li::before { display: none; }
  .footer-nav2 li { padding-left: 0; margin-right: 0.85rem; }
  .dnform-form input,
  .dnform-form textarea,
  .svc-hero-form input,
  .svc-hero-form textarea,
  .lead-popup-form input,
  .lead-popup-form textarea,
  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    font-size: 1rem;
  }
  .lead-popup-dialog {
    max-height: 92vh;
    margin: 0.5rem;
  }
  .lead-popup-panel,
  .lead-popup-form-wrap {
    padding: 1.25rem !important;
  }
  .ct-modal-dialog {
    padding: 1.5rem 1.25rem 1.25rem !important;
    margin: 0.75rem;
  }
  .ct-modal-quote { font-size: 3rem; }
  .client-testimonials-slider-wrap { padding-left: 0.5rem; padding-right: 0.5rem; }
  .portfolio-tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 0.5rem;
    padding-bottom: 0.35rem;
    scrollbar-width: thin;
  }
  .portfolio-tabs button,
  .portfolio-tab {
    flex: 0 0 auto;
    white-space: nowrap;
  }
  .svc-process-item {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }
  .svc-discuss-media { min-height: 200px; }
  .thank-actions {
    flex-direction: column;
    width: 100%;
  }
  .thank-actions .btn { width: 100%; }
  .svc-banner-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .svc-banner-actions .btn { width: 100%; }
  .testimonials-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .testimonials-cta-actions .btn { width: 100%; }
}

@media (max-width: 480px) {
  .container { padding-inline: 0.9rem; }
  .btn-lg { padding: 0.85rem 1.25rem; font-size: 1rem; }
  .svc-hero-badges { gap: 0.45rem; }
  .svc-hero-badges img { width: 40px; height: 40px; }
  .disclaimer-bar {
    font-size: 8px;
    letter-spacing: 0.02em;
    padding: 0.35rem 0.5rem;
  }
}

@media (hover: none) {
  .svc-list-card:hover { transform: none; }
  .svc-approach-card:hover { transform: none; }
}

