/* =========================================================
   PRESTIGE TAX & ADVISORY — DESIGN TOKENS
========================================================= */
:root {
  --navy-deep: #0B1F3D;
  --navy-mid: #152A4D;
  --gold: #C9A24B;
  --gold-tint: #E8D9B5;
  --bg-light: #F7F8FA;
  --slate: #3C4658;
  --white: #FFFFFF;

  --font-display: 'Fraunces', serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius: 14px;
  --transition: 0.35s cubic-bezier(.4, 0, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--slate);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}

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

img,
svg,
iframe {
  max-width: 100%;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.section-pad {
  padding: 6.5rem 0;
}

.section-tint {
  background: var(--bg-light);
}

.section-navy {
  background: var(--navy-deep);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--navy-deep);
  margin: 0;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: .9rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}

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

.section-title {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1.3rem;
}

.text-white .section-title,
.section-title.text-white {
  color: var(--white);
}

.section-body {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--slate);
  max-width: 46ch;
}

.section-navy .section-body {
  color: #C7CEDD;
}

.link-arrow {
  font-family: var(--font-mono);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--navy-deep);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.link-arrow .arrow {
  transition: transform var(--transition);
}

.link-arrow:hover {
  border-bottom-color: var(--gold);
}

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

.link-arrow-light {
  color: var(--white);
}

/* =========================================================
   BUTTONS
========================================================= */
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: 999px;
  padding: .85rem 1.8rem;
  transition: var(--transition);
  border: none;
}

.btn-gold-fill {
  background: var(--gold);
  color: var(--navy-deep);
}

.btn-gold-fill:hover {
  background: var(--navy-deep);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-outline-line {
  background: transparent;
  border: 1.5px solid rgba(11, 31, 61, .25);
  color: var(--navy-deep);
}

.btn-outline-line:hover {
  border-color: var(--navy-deep);
  background: var(--navy-deep);
  color: var(--white);
}

.btn-outline-line .arrow {
  transition: transform var(--transition);
  display: inline-block;
}

.btn-outline-line:hover .arrow {
  transform: translateX(4px);
}

.btn-nav-cta {
  background: var(--navy-deep);
  color: var(--white) !important;
  font-size: .88rem;
  padding: .65rem 1.4rem;
}

.btn-nav-cta:hover {
  background: var(--gold);
  color: var(--navy-deep) !important;
}

/* =========================================================
   HEADER / NAV
========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(11, 31, 61, .08);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 8px 24px rgba(11, 31, 61, .08);
}

.site-header.scrolled .navbar {
  padding: .6rem 0;
}

.navbar {
  padding: .9rem 0;
  transition: var(--transition);
}

.brand-logo {
  height: 46px;
  object-fit: contain;
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--navy-deep) !important;
  padding: .5rem 1rem !important;
  position: relative;
}

.nav-link::before {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: .25rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.nav-link:hover::before,
.nav-link.active::before {
  transform: scaleX(1);
}

.navbar-toggler {
  border: none;
  padding: .4rem;
}

.toggler-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy-deep);
  margin: 5px 0;
  transition: var(--transition);
}

/* Dropdown toggle arrow */
.nav-link.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}

.nav-link.dropdown-toggle::after {
  display: inline-block;
  margin-left: .15rem;
  vertical-align: middle;
  content: "";
  border-top: .35em solid;
  border-right: .35em solid transparent;
  border-bottom: 0;
  border-left: .35em solid transparent;
  border-top-color: var(--gold);
  transition: transform var(--transition);
}

.services-dropdown.show .dropdown-toggle::after,
.nav-link.dropdown-toggle.show::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  border: none;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(11, 31, 61, .16);
  padding: .6rem;
  margin-top: .6rem !important;
  min-width: 260px;
}

.dropdown-item {
  font-family: var(--font-body);
  font-size: .92rem;
  color: var(--navy-deep);
  padding: .65rem .9rem;
  border-radius: 8px;
  transition: var(--transition);
}

.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item.active,
.dropdown-item:active {
  background: var(--gold-tint);
  color: var(--navy-deep);
}

@media (min-width: 992px) {
  .services-dropdown .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
    pointer-events: none;
  }

  .services-dropdown.show .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}

/* =========================================================
   HERO
========================================================= */
.hero {
  position: relative;
  padding: 7.5rem 0 5rem;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-light) 100%);
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(11, 31, 61, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 31, 61, .035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 30% 30%, black 0%, transparent 70%);
  pointer-events: none;
}

.hero-title {
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--navy-deep);
  margin-bottom: 1.4rem;
}

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 42ch;
  margin-bottom: 2rem;
  color: var(--slate);
}

.hero-trust {
  font-family: var(--font-mono);
}

.trust-item {
  display: flex;
  flex-direction: column;
}

.trust-num {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy-deep);
}

.trust-label {
  font-size: .72rem;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: .04em;
  max-width: 12ch;
}

.hero-visual {
  position: relative;
  height: 420px;
}

.arrow-chart {
  position: relative;
  width: 100%;
  height: 100%;
}

.arrow-svg {
  width: 100%;
  height: 100%;
}

.hero-image-visual {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(11, 31, 61, .14);
}

.hero-image-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#growthPath {
  stroke-dasharray: 700;
  stroke-dashoffset: 700;
  animation: drawPath 2s ease forwards .3s;
}

@keyframes drawPath {
  to {
    stroke-dashoffset: 0;
  }
}

.chart-dot {
  opacity: 0;
  animation: dotPop .4s ease forwards;
}

@keyframes dotPop {
  to {
    opacity: 1;
  }
}

.chart-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(11, 31, 61, .12);
  padding: .8rem 1.1rem;
  display: flex;
  flex-direction: column;
  opacity: 0;
  animation: cardFloat .6s ease forwards;
}

.card-a {
  top: 8%;
  left: 2%;
  animation-delay: 1.4s;
}

.card-b {
  bottom: 10%;
  right: 0%;
  animation-delay: 1.8s;
}

@keyframes cardFloat {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chart-card-label {
  font-family: var(--font-mono);
  font-size: .65rem;
  letter-spacing: .08em;
  color: var(--gold);
  font-weight: 600;
}

.chart-card-val {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy-deep);
  font-weight: 600;
}

/* =========================================================
   PAGE BANNER (inner pages)
========================================================= */
.page-banner {
  position: relative;
  padding: 7.5rem 0 4.5rem;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-light) 100%);
  overflow: hidden;
}

.page-title {
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy-deep);
  margin-bottom: 1.2rem;
}

.page-lede {
  font-size: 1.1rem;
  line-height: 1.75;
  max-width: 56ch;
  color: var(--slate);
}

/* =========================================================
   FOUNDER STORY (About page)
========================================================= */
.founder-frame-lg {
  max-width: 420px;
  margin: 0 auto;
}

.founder-frame-lg .founder-photo {
  aspect-ratio: 3/4;
}

.founder-body {
  max-width: 58ch;
}

.cred-chip {
  background: var(--bg-light);
  border-left: 3px solid var(--gold);
  border-radius: 10px;
  padding: .9rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: .2rem;
  height: 100%;
}

.cred-mono {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--navy-deep);
  font-size: .85rem;
}

.cred-chip span:last-child {
  font-size: .85rem;
  color: var(--slate);
}

.membership-card {
  margin: 1.5rem 0 1.4rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(11, 31, 61, .1);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  background: var(--white);
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 16px 40px rgba(11, 31, 61, .06);
}

.membership-card img {
  width: 150px;
  max-height: 62px;
  object-fit: contain;
  flex: 0 0 auto;
}

.membership-card p {
  margin: 0;
  color: var(--slate);
  font-size: .92rem;
  line-height: 1.6;
}

@media (max-width: 575px) {
  .membership-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* =========================================================
   VALUES (About page)
========================================================= */
.value-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  padding: 2.4rem 2rem;
  height: 100%;
  transition: var(--transition);
}

.value-card:hover {
  background: rgba(255, 255, 255, .08);
  border-color: var(--gold);
  transform: translateY(-6px);
}

.value-icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
  margin-bottom: 1rem;
}

.value-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-num {
  font-family: var(--font-mono);
  color: var(--gold);
  font-size: 1rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 1.2rem;
}

.value-card h3 {
  color: var(--white);
  font-size: 1.35rem;
  margin-bottom: .8rem;
}

.value-card p {
  color: #B9C2D6;
  font-size: .95rem;
  line-height: 1.7;
  margin: 0;
}

/* =========================================================
   MISSION / VISION (About page)
========================================================= */
.mv-card {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 2.6rem;
  height: 100%;
  position: relative;
  border-top: 3px solid var(--gold);
}

.mv-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  color: var(--gold);
  margin-bottom: 1.4rem;
}

.mv-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mv-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* =========================================================
   REASON LIST (About page — "Why Clients Choose Us")
========================================================= */
.reason-list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.reason-item {
  display: flex;
  gap: 1.3rem;
  align-items: flex-start;
}

.reason-mark {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy-deep);
  background: var(--gold-tint);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.reason-item h4 {
  font-family: var(--font-display);
  color: var(--navy-deep);
  font-size: 1.1rem;
  margin: 0 0 .4rem;
  font-weight: 600;
}

.reason-item p {
  font-size: .92rem;
  color: var(--slate);
  line-height: 1.65;
  margin: 0;
}

/* =========================================================
   SERVICES PAGE — STICKY SUB-NAV
========================================================= */
.services-subnav {
  position: sticky;
  top: 73px;
  z-index: 900;
  background: rgba(247, 248, 250, .95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(11, 31, 61, .08);
}

.services-subnav.is-fixed {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
}

.subnav-list {
  list-style: none;
  display: flex;
  gap: .5rem;
  margin: 0;
  padding: .9rem 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.subnav-list::-webkit-scrollbar {
  display: none;
}

.subnav-link {
  font-family: var(--font-mono);
  font-size: .8rem;
  font-weight: 600;
  white-space: nowrap;
  color: var(--slate);
  padding: .55rem 1rem;
  border-radius: 999px;
  transition: var(--transition);
  display: inline-block;
}

.subnav-link:hover {
  color: var(--navy-deep);
  background: rgba(11, 31, 61, .06);
}

.subnav-link.active {
  color: var(--navy-deep);
  background: var(--gold-tint);
}

/* =========================================================
   SERVICE BLOCKS (Services page)
========================================================= */
.service-block {
  padding: 5.5rem 0;
  scroll-margin-top: 150px;
}

.service-block-tint {
  background: var(--bg-light);
}

.included-block {
  margin: 1.8rem 0;
}

.included-label {
  font-family: var(--font-mono);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--navy-deep);
  display: block;
  margin-bottom: .8rem;
}

.included-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.included-list li {
  position: relative;
  padding-left: 1.7rem;
  font-size: .96rem;
  color: var(--slate);
  line-height: 1.5;
}

.included-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .35rem;
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--gold);
  border-radius: 4px;
  background: var(--gold-tint);
}

.included-list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: .58rem;
  width: 7px;
  height: 4px;
  border-left: 1.5px solid var(--navy-deep);
  border-bottom: 1.5px solid var(--navy-deep);
  transform: rotate(-45deg);
}

.best-for-pill {
  font-family: var(--font-mono);
  font-size: .78rem;
  color: var(--navy-deep);
  background: var(--bg-light);
  border: 1px solid rgba(11, 31, 61, .12);
  padding: .5rem 1rem;
  border-radius: 999px;
}

.service-block-tint .best-for-pill {
  background: var(--white);
}

.service-visual {
  position: relative;
  background: linear-gradient(150deg, var(--navy-deep), var(--navy-mid));
  border-radius: 22px;
  aspect-ratio: 1/0.72;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.service-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(201, 162, 75, .18) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  opacity: .5;
}

.sv-icon {
  width: 34%;
  max-width: 130px;
  color: var(--gold);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
  position: relative;
  z-index: 1;
}

.sv-tag {
  position: absolute;
  bottom: 1.4rem;
  right: 1.6rem;
  font-family: var(--font-mono);
  font-size: 2.2rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .12);
  z-index: 1;
}

/* =========================================================
   HOW IT WORKS (process cards)
========================================================= */
.process-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.2rem 1.7rem;
  height: 100%;
  position: relative;
  box-shadow: 0 10px 30px rgba(11, 31, 61, .06);
  transition: var(--transition);
}

.process-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(11, 31, 61, .1);
}

.process-num {
  font-family: var(--font-mono);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-tint);
  display: block;
  margin-bottom: .6rem;
  -webkit-text-stroke: 1px var(--gold);
  color: transparent;
}

.process-card h3 {
  font-size: 1.15rem;
  margin-bottom: .6rem;
}

.process-card p {
  font-size: .92rem;
  color: var(--slate);
  line-height: 1.6;
  margin: 0;
}

/* =========================================================
   INDUSTRIES WE SERVE
========================================================= */
.industry-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  padding: 0;
  text-align: center;
  height: 100%;
  min-height: 162px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.industry-card:hover {
  background: rgba(255, 255, 255, .08);
  border-color: var(--gold);
  transform: translateY(-4px);
}

.industry-photo {
  width: 100%;
  height: 96px;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid rgba(201, 162, 75, .35);
  background: rgba(255, 255, 255, .06);
}

.industry-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.industry-card span {
  font-size: .85rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-height: 66px;
  padding: .85rem .8rem 1rem;
}

/* =========================================================
   QUICK ENQUIRY FORM (Home)
========================================================= */
.quick-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 1.8rem;
}

.qc-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.qc-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--gold-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-deep);
}

.qc-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.qc-label {
  display: block;
  font-family: var(--font-mono);
  font-size: .72rem;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.qc-value {
  display: block;
  font-weight: 600;
  color: var(--navy-deep);
  font-size: .98rem;
}

.enquiry-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.4rem;
  box-shadow: 0 20px 50px rgba(11, 31, 61, .08);
  position: relative;
}

.enquiry-form .form-label {
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--navy-deep);
  margin-bottom: .4rem;
}

.enquiry-form .form-control,
.enquiry-form .form-select {
  border: 1.5px solid rgba(11, 31, 61, .15);
  border-radius: 10px;
  padding: .7rem .9rem;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--navy-deep);
  transition: var(--transition);
}

.enquiry-form .form-control:focus,
.enquiry-form .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 75, .18);
}

.form-note {
  font-family: var(--font-mono);
  font-size: .72rem;
  color: var(--slate);
  opacity: .7;
  margin: .9rem 0 0;
}

.enquiry-success {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
}

.enquiry-success.show {
  display: block;
}

.enquiry-card.submitted .enquiry-form {
  display: none;
}

.success-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.2rem;
  color: var(--gold);
  display: block;
}

.success-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.enquiry-success h3 {
  font-size: 1.4rem;
  margin-bottom: .6rem;
}

.enquiry-success p {
  color: var(--slate);
  font-size: .95rem;
}

/* Contact Form 7 compatibility */
.wpcf7 form {
  margin: 0;
}

.wpcf7 .wpcf7-form-control-wrap {
  display: block;
}

.wpcf7 .wpcf7-not-valid-tip {
  margin-top: .35rem;
  font-size: .78rem;
  color: #B42318;
}

.wpcf7 form .wpcf7-response-output {
  margin: 1.2rem 0 0;
  padding: .9rem 1rem;
  border-radius: 10px;
  font-size: .88rem;
  border-width: 1px;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: rgba(47, 125, 91, .35);
  color: #2F7D5B;
  background: rgba(47, 125, 91, .08);
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border-color: rgba(180, 35, 24, .3);
  color: #B42318;
  background: rgba(180, 35, 24, .06);
}

.wpcf7 .ajax-loader,
.wpcf7 .wpcf7-spinner {
  margin-left: .75rem;
}

.enquiry-form .wpcf7-list-item {
  margin: 0;
}

.enquiry-form .wpcf7-list-item label {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  font-family: var(--font-body);
  font-size: .88rem;
  color: var(--slate);
  text-transform: none;
  letter-spacing: 0;
}

.enquiry-form .wpcf7-list-item input {
  margin-top: .2rem;
  accent-color: var(--gold);
}

.newsletter-form .wpcf7-form-control-wrap {
  flex: 1 1 240px;
}

.newsletter-form .wpcf7-email {
  width: 100%;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .06);
  color: var(--white);
  padding: .8rem 1rem;
}

.newsletter-form .wpcf7-email::placeholder {
  color: #8D97AC;
}

.newsletter-form .wpcf7-email:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 75, .2);
  background: rgba(255, 255, 255, .1);
  outline: 0;
}

.newsletter-form .wpcf7-submit {
  border: 0;
}

/* =========================================================
   BLOG LISTING
========================================================= */
.blog-filter-bar {
  padding: 2rem 0 0;
}

.filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(11, 31, 61, .08);
}

.filter-btn {
  font-family: var(--font-mono);
  font-size: .8rem;
  font-weight: 600;
  color: var(--slate);
  background: var(--bg-light);
  border: 1px solid rgba(11, 31, 61, .12);
  border-radius: 999px;
  padding: .55rem 1.2rem;
  transition: var(--transition);
  cursor: pointer;
}

.filter-btn:hover {
  border-color: var(--gold);
  color: var(--navy-deep);
}

.filter-btn.active {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
  color: var(--white);
}

.blog-card-img img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.blog-tag {
  font-family: var(--font-mono);
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--navy-deep);
  background: var(--gold-tint);
  padding: .25rem .7rem;
  border-radius: 999px;
  display: inline-block;
  margin-right: .6rem;
}

.blog-grid-item {
  transition: opacity .3s ease, transform .3s ease;
}

.blog-grid-item.hidden {
  display: none;
}

.blog-empty-state {
  text-align: center;
  font-family: var(--font-mono);
  color: var(--slate);
  padding: 3rem 0;
}

.blog-pagination {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 3rem;
}

.page-btn {
  font-family: var(--font-mono);
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy-deep);
  border: 1px solid rgba(11, 31, 61, .15);
  border-radius: 10px;
  padding: .6rem 1rem;
  min-width: 42px;
  text-align: center;
  transition: var(--transition);
}

.page-btn:hover {
  border-color: var(--gold);
  background: var(--bg-light);
}

.page-btn.active {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
  color: var(--white);
}

.page-btn.disabled {
  opacity: .4;
  pointer-events: none;
}

/* =========================================================
   NEWSLETTER
========================================================= */
.newsletter-form {
  display: flex;
  gap: .8rem;
  max-width: 460px;
  margin: 2rem auto 0;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form .form-control {
  flex: 1 1 240px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .06);
  color: var(--white);
  padding: .8rem 1.3rem;
}

.newsletter-form .form-control::placeholder {
  color: #8D97AC;
}

.newsletter-form .form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 75, .2);
  background: rgba(255, 255, 255, .1);
}

.newsletter-success {
  font-family: var(--font-mono);
  color: var(--gold);
  margin-top: 1.2rem;
  font-size: .9rem;
}

/* =========================================================
   BLOG POST TEMPLATE
========================================================= */
.post-banner {
  padding-bottom: 3rem;
}

.back-link {
  margin-bottom: 1rem;
}

.post-meta {
  font-family: var(--font-mono);
  font-size: .82rem;
  color: var(--slate);
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  align-items: center;
  margin-top: 1.2rem;
}

.post-meta-divider {
  opacity: .5;
}

.post-featured-img {
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: -1.5rem;
  box-shadow: 0 25px 60px rgba(11, 31, 61, .15);
}

.post-featured-img img {
  width: 100%;
  height: auto;
  display: block;
}

.post-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--slate);
}

.post-lead {
  font-size: 1.2rem;
  color: var(--navy-deep);
  font-weight: 500;
  margin-bottom: 2rem;
}

.post-body h2 {
  font-size: 1.5rem;
  margin: 2.4rem 0 1rem;
  color: var(--navy-deep);
}

.post-body p {
  margin-bottom: 1.3rem;
}

.post-body ul {
  margin: 0 0 1.5rem;
  padding-left: 1.4rem;
}

.post-body ul li {
  margin-bottom: .6rem;
}

.post-cta-inline {
  background: var(--bg-light);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 2rem;
  margin: 3rem 0;
}

.post-cta-inline h3 {
  font-size: 1.25rem;
  margin-bottom: .5rem;
}

.post-cta-inline p {
  color: var(--slate);
  margin-bottom: 1.3rem;
}

.post-share {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(11, 31, 61, .1);
}

.post-share-label {
  font-family: var(--font-mono);
  font-size: .78rem;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.post-share-icons {
  display: flex;
  gap: .6rem;
}

.post-share-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(11, 31, 61, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-deep);
  transition: var(--transition);
}

.post-share-icons a:hover {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
  color: var(--white);
}

.post-share-icons svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  stroke: none;
}

/* =========================================================
   CONTACT PAGE
========================================================= */
.contact-info-strip {
  padding: 1rem 0 2rem;
}

.contact-info-card {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  text-align: center;
  height: 100%;
  border-top: 3px solid var(--gold);
  transition: var(--transition);
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(11, 31, 61, .08);
}

.cic-icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 1.1rem;
  color: var(--gold);
  display: block;
}

.cic-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-info-card h3 {
  font-size: 1.15rem;
  margin-bottom: .5rem;
}

.cic-value {
  display: block;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: .4rem;
}

.contact-info-card p {
  font-size: .85rem;
  color: var(--slate);
  margin: 0;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.6rem;
  box-shadow: 0 20px 50px rgba(11, 31, 61, .08);
}

.contact-side-card {
  background: var(--navy-deep);
  border-radius: var(--radius);
  padding: 2.4rem;
  color: #C7CEDD;
  margin-bottom: 1.5rem;
}

.contact-side-card .section-title {
  color: var(--white);
  font-size: 1.4rem;
}

.contact-side-card .section-body {
  color: #C7CEDD;
  max-width: none;
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: .92rem;
}

.hours-list li span:first-child {
  color: #C7CEDD;
}

.hours-list li span:last-child {
  font-family: var(--font-mono);
  color: var(--gold);
  font-weight: 600;
}

.side-divider {
  border-color: rgba(255, 255, 255, .12);
  margin: 1.6rem 0;
}

.contact-side-card .link-arrow {
  color: var(--gold);
}

.map-embed-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  height: 260px;
  box-shadow: 0 16px 34px rgba(11, 31, 61, .1);
}

.map-embed-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* =========================================================
   TRUST STRIP
========================================================= */
.trust-strip {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(11, 31, 61, .08);
  border-bottom: 1px solid rgba(11, 31, 61, .08);
}

.trust-strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
}

.ts-icon {
  width: 30px;
  height: 30px;
  stroke: var(--gold);
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-strip-item span {
  font-family: var(--font-mono);
  font-size: .78rem;
  font-weight: 600;
  color: var(--navy-deep);
  text-transform: uppercase;
  letter-spacing: .03em;
}

/* =========================================================
   ABOUT SNAPSHOT
========================================================= */
.founder-frame {
  position: relative;
  max-width: 360px;
}

.founder-photo {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.founder-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: .9rem 1.2rem;
  box-shadow: 0 16px 34px rgba(11, 31, 61, .15);
  display: flex;
  flex-direction: column;
}

.fb-line1 {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--navy-deep);
  font-size: .85rem;
}

.fb-line2 {
  font-size: .78rem;
  color: var(--slate);
}

/* =========================================================
   SERVICES OVERVIEW
========================================================= */
.service-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  height: 100%;
  position: relative;
  transition: var(--transition);
  display: block;
}

.service-card:hover {
  background: rgba(255, 255, 255, .08);
  border-color: var(--gold);
  transform: translateY(-6px);
}

.service-num {
  font-family: var(--font-mono);
  color: var(--gold);
  font-size: .8rem;
  font-weight: 600;
}

.service-icon {
  width: 46px;
  height: 46px;
  margin: 1.1rem 0 1rem;
  color: var(--gold);
}

.service-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: .6rem;
}

.service-card p {
  color: #B9C2D6;
  font-size: .92rem;
  line-height: 1.6;
  margin: 0;
}

.service-card-cta {
  background: linear-gradient(150deg, var(--gold), #a5813a);
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card-cta h3 {
  color: var(--navy-deep);
}

.service-card-cta p {
  color: rgba(11, 31, 61, .75);
}

.service-card-cta .link-arrow-light {
  color: var(--navy-deep);
}

/* =========================================================
   WHY US / STATS
========================================================= */
.stat-block {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 1.8rem;
  height: 100%;
  border-left: 3px solid var(--gold);
}

.stat-num {
  font-family: var(--font-mono);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--navy-deep);
}

.stat-suffix {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold);
  margin-left: .2rem;
}

.stat-block p {
  margin: .6rem 0 0;
  font-size: .92rem;
  color: var(--slate);
  line-height: 1.5;
}

/* =========================================================
   TESTIMONIALS
========================================================= */
.testimonial-swiper {
  padding-bottom: 1rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.6rem 2.2rem;
  box-shadow: 0 20px 50px rgba(11, 31, 61, .08);
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .5rem;
}

.testimonial-card p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--navy-deep);
  margin-bottom: 1.4rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
}

.ta-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-tint);
}

.ta-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.ta-name {
  font-weight: 700;
  color: var(--navy-deep);
}

.ta-role {
  font-family: var(--font-mono);
  font-size: .78rem;
  color: var(--slate);
}

.swiper-pagination-bullet {
  background: var(--navy-deep);
  opacity: .25;
}

.swiper-pagination-bullet-active {
  background: var(--gold);
  opacity: 1;
}

.swiper-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(11, 31, 61, .2);
  background: transparent;
  color: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  cursor: pointer;
}

.swiper-btn:hover {
  background: var(--navy-deep);
  color: var(--white);
  border-color: var(--navy-deep);
}

/* =========================================================
   SERVICE AREAS / MAP
========================================================= */
.area-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.area-list li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--slate);
  font-size: .98rem;
}

.area-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45rem;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.nz-map-card {
  position: relative;
  background: var(--navy-deep);
  border-radius: var(--radius);
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.nz-outline {
  width: 46%;
  height: 92%;
  fill: rgba(201, 162, 75, .18);
  stroke: var(--gold);
  stroke-width: 1.5;
}

.map-pin {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
}

.pin-auckland {
  top: 20%;
  left: 58%;
}

.pin-wellington {
  top: 52%;
  left: 45%;
}

.pin-christchurch {
  top: 68%;
  left: 38%;
}

.pin-dot {
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(201, 162, 75, .22);
  animation: pinPulse 2s ease-in-out infinite;
}

.pin-dot-lg {
  width: 14px;
  height: 14px;
  box-shadow: 0 0 0 6px rgba(201, 162, 75, .28);
}

@keyframes pinPulse {

  0%,
  100% {
    box-shadow: 0 0 0 5px rgba(201, 162, 75, .22);
  }

  50% {
    box-shadow: 0 0 0 9px rgba(201, 162, 75, .1);
  }
}

.pin-label {
  font-family: var(--font-mono);
  font-size: .68rem;
  color: var(--white);
  background: rgba(255, 255, 255, .1);
  padding: .2rem .55rem;
  border-radius: 999px;
  white-space: nowrap;
}

/* =========================================================
   FAQ / ACCORDION
========================================================= */
.prestige-accordion .accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(11, 31, 61, .12);
}

.prestige-accordion .accordion-button {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--navy-deep);
  background: transparent;
  padding: 1.4rem 0;
  box-shadow: none;
}

.prestige-accordion .accordion-button:not(.collapsed) {
  color: var(--gold);
  background: transparent;
}

.prestige-accordion .accordion-button::after {
  background-image: none;
  content: "+";
  font-family: var(--font-mono);
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform var(--transition);
}

.prestige-accordion .accordion-button:not(.collapsed)::after {
  content: "–";
  transform: rotate(180deg);
}

.prestige-accordion .accordion-body {
  padding: 0 0 1.5rem;
  color: var(--slate);
  line-height: 1.7;
}

/* =========================================================
   BLOG PREVIEW
========================================================= */
.blog-card {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-light);
  transition: var(--transition);
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(11, 31, 61, .12);
}

.blog-card-img {
  height: 190px;
  background: linear-gradient(150deg, var(--navy-deep), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card-img span {
  font-family: var(--font-mono);
  color: var(--gold);
  font-size: 1.3rem;
  letter-spacing: .12em;
}

.blog-card-body {
  padding: 1.6rem;
}

.blog-date {
  font-family: var(--font-mono);
  font-size: .75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.blog-card-body h3 {
  font-size: 1.15rem;
  margin: .6rem 0 1rem;
  line-height: 1.4;
}

/* =========================================================
   DEFAULT WP PAGES / SEARCH / 404
========================================================= */
.site-search-form {
  display: flex;
  gap: .75rem;
  max-width: 620px;
  margin-top: 1.8rem;
}

.site-search-form .form-control {
  min-height: 48px;
  border-color: rgba(11, 31, 61, .14);
}

.site-search-form-centered {
  margin-left: auto;
  margin-right: auto;
}

.empty-panel {
  background: var(--bg-light);
  border: 1px solid rgba(11, 31, 61, .08);
  border-radius: var(--radius);
  padding: 2.2rem;
}

.empty-panel h2 {
  color: var(--navy-deep);
  margin-bottom: .7rem;
}

.empty-panel p {
  color: var(--slate);
  margin-bottom: 1.4rem;
}

.page-links {
  margin-top: 2rem;
  font-family: var(--font-mono);
  font-size: .85rem;
  color: var(--slate);
}

.page-links a,
.page-links .post-page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  margin-left: .35rem;
  border: 1px solid rgba(11, 31, 61, .12);
  border-radius: 999px;
}

.page-links .current {
  background: var(--navy-deep);
  color: var(--white);
}

.comments-area {
  background: var(--bg-light);
}

.comment-list {
  list-style: none;
  margin: 1.5rem 0 2rem;
  padding: 0;
}

.comment-list .comment-body {
  background: var(--white);
  border: 1px solid rgba(11, 31, 61, .08);
  border-radius: var(--radius);
  padding: 1.2rem;
  margin-bottom: 1rem;
}

.comment-reply-link {
  color: var(--gold-dark);
  font-weight: 600;
}

.comment-form input:not([type="submit"]),
.comment-form textarea {
  width: 100%;
  border: 1.5px solid rgba(11, 31, 61, .15);
  border-radius: 10px;
  padding: .7rem .9rem;
}

.comment-form input:focus,
.comment-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 75, .18);
  outline: 0;
}

.comment-form .submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy-deep);
  font-weight: 700;
  padding: .8rem 1.2rem;
}

.widget-area .widget {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 1.2rem;
  margin-bottom: 1.2rem;
}

.widget-title {
  font-size: 1.1rem;
  color: var(--navy-deep);
}

@media (max-width: 575px) {
  .site-search-form {
    flex-direction: column;
  }
}

/* =========================================================
   FOOTER CTA
========================================================= */
.footer-cta {
  padding: 0 0 6rem;
}

.cta-box {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-mid));
  border-radius: 24px;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(201, 162, 75, .25), transparent 55%);
}

.cta-box h2 {
  color: var(--white);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-bottom: .8rem;
  position: relative;
}

.cta-box p {
  color: #C7CEDD;
  max-width: 44ch;
  margin: 0 auto 2rem;
  position: relative;
}

.cta-box .btn {
  position: relative;
}

/* =========================================================
   FOOTER
========================================================= */
.site-footer {
  background: var(--navy-deep);
  color: #C7CEDD;
  padding: 5rem 0 2rem;
}

.footer-logo {
  height: 42px;
  filter: brightness(0) invert(1);
  object-fit: contain;
}

.footer-text {
  font-size: .92rem;
  line-height: 1.7;
  max-width: 34ch;
}

.site-footer h4 {
  font-family: var(--font-mono);
  color: var(--white);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 1.2rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  font-size: .92rem;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 3rem;
  padding-top: 1.6rem;
  font-size: .82rem;
  color: #8D97AC;
}

.footer-credit {
  flex: 1 1 260px;
  text-align: center;
  color: #AEB8CC;
}

.footer-credit a {
  color: var(--gold);
  font-weight: 600;
}

.footer-credit a:hover {
  color: var(--white);
}

.footer-heart {
  display: inline-block;
  color: #E44D61;
  animation: footer-heartbeat 1.35s ease-in-out infinite;
  transform-origin: center;
}

@keyframes footer-heartbeat {

  0%,
  42%,
  70%,
  100% {
    transform: scale(1);
  }

  18%,
  56% {
    transform: scale(1.22);
  }
}

.footer-legal a {
  margin-left: 1.2rem;
}

.footer-legal a:hover {
  color: var(--gold);
}

.footer-cookie-settings {
  margin-left: 1.2rem;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
}

.footer-cookie-settings:hover {
  color: var(--gold);
}

@media (max-width: 767.98px) {
  .footer-bottom {
    flex-direction: column;
    justify-content: center !important;
    align-items: center !important;
    gap: .45rem;
    text-align: center;
  }

  .footer-bottom > span,
  .footer-credit,
  .footer-legal {
    width: 100%;
  }

  .footer-credit {
    flex: 0 0 auto;
  }

  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .35rem 1rem;
  }

  .footer-legal a,
  .footer-cookie-settings {
    margin-left: 0;
  }
}

/* =========================================================
   COOKIE CONSENT
========================================================= */
.cookie-consent[hidden] {
  display: none;
}

.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1080;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(11, 31, 61, 0), rgba(11, 31, 61, .42));
}

.cookie-consent-panel {
  max-width: 1120px;
  margin: 0 auto;
  background: var(--white);
  color: var(--slate);
  border: 1px solid rgba(11, 31, 61, .12);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(11, 31, 61, .2);
  padding: 1.1rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
}

.cookie-consent-title {
  margin: 0 0 .35rem;
  color: var(--navy-deep);
  font-weight: 700;
}

.cookie-consent-copy p:not(.cookie-consent-title) {
  margin: 0 0 .35rem;
  font-size: .92rem;
  line-height: 1.6;
}

.cookie-consent-copy a {
  color: var(--gold-dark);
  font-weight: 600;
  font-size: .9rem;
}

.cookie-preferences {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  padding-top: .5rem;
  border-top: 1px solid rgba(11, 31, 61, .1);
}

.cookie-preferences[hidden] {
  display: none;
}

.cookie-toggle {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin: 0;
  color: var(--navy-deep);
  font-size: .9rem;
}

.cookie-toggle input {
  accent-color: var(--gold);
}

.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .65rem;
}

.cookie-consent-actions .btn {
  white-space: nowrap;
  padding: .72rem 1rem;
}

@media (max-width: 767px) {
  .cookie-consent-panel {
    grid-template-columns: 1fr;
  }

  .cookie-consent-actions {
    justify-content: stretch;
  }

  .cookie-consent-actions .btn {
    flex: 1 1 100%;
  }

  .hero {
    padding: 2.5rem 0 2rem;
  }
}

/* =========================================================
   SCROLL REVEAL (data-aos lite)
========================================================= */
.aos-enabled [data-aos] {
  opacity: 1;
  transform: none;
  transition: opacity .7s ease, transform .7s ease;
}

.aos-enabled [data-aos="fade-right"] {
  transform: translateX(-30px);
}

.aos-enabled [data-aos="fade-left"] {
  transform: translateX(30px);
}

.aos-enabled [data-aos="zoom-in"] {
  transform: scale(.94);
}

.aos-enabled [data-aos].aos-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 991.98px) {
  .aos-enabled [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 991.98px) {
  .section-pad {
    padding: 4.5rem 0;
  }

  .navbar-collapse {
    background: var(--white);
    margin-top: 1rem;
    padding: 1.2rem;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(11, 31, 61, .12);
  }

  .navbar-collapse .nav-link.dropdown-toggle {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }

  .navbar-collapse .nav-link.dropdown-toggle::after {
    flex: 0 0 auto;
    margin-left: .5rem;
    margin-top: .55rem;
  }

  .btn-nav-cta {
    display: inline-block;
    margin-top: .8rem;
  }
}

@media (max-width: 575px) {
  .founder-frame {
    margin-inline: auto;
  }

  .founder-badge {
    left: .75rem;
    right: .75rem;
    bottom: .75rem;
  }
}
