/* =======================================================
   GP Practice Solutions — Shared Stylesheet
   ======================================================= */

:root {
  --burgundy-deep: #3d0b1a;
  --burgundy: #6b1029;
  --burgundy-light: #8c3b4d;
  --burgundy-dark: #3d0b1a;
  --gold: #c9a227;
  --gold-soft: #e4c868;
  --cream: #f5efe6;
  --cream-dim: #e9e1d3;
  --soft-cream: rgba(245, 239, 230, 0.85);
  --ink: #1a0a0e;
  --muted: #5b5148;
  --radius: 20px;
  --shadow: 0 24px 48px -24px rgba(61, 11, 26, 0.28);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
.display {
  font-family: "Archivo Black", sans-serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}
::selection {
  background: var(--gold-soft);
  color: var(--ink);
}

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

/* ---------- PAGE LOADER ---------- */
#pageLoader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--burgundy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 18px;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
}
#pageLoader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
#pageLoader img {
  width: 96px;
  height: auto;
  animation: loaderPulse 1.4s ease-in-out infinite;
}
.loader-bar {
  width: 140px;
  height: 3px;
  border-radius: 999px;
  background: rgba(228, 200, 104, 0.2);
  overflow: hidden;
}
.loader-bar::after {
  content: "";
  display: block;
  width: 40%;
  height: 100%;
  background: var(--gold-soft);
  border-radius: 999px;
  animation: loaderSlide 1.1s ease-in-out infinite;
}
@keyframes loaderPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(0.94);
    opacity: 0.75;
  }
}
@keyframes loaderSlide {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(350%);
  }
}
@media (prefers-reduced-motion: reduce) {
  #pageLoader img,
  .loader-bar::after {
    animation: none;
  }
}

/* ---------- NAV ---------- */
header.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 247, 232, 0.95);
  border-bottom: 1px solid rgba(228, 200, 104, 0.25);
  backdrop-filter: blur(6px);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Archivo Black", sans-serif;
  color: var(--ink);
  font-size: 15px;
  letter-spacing: 0.02em;
}
.brand img {
  height: 40px;
  width: auto;
}
.brand .sub {
  color: var(--burgundy);
}

nav.tabs {
  display: flex;
  gap: 2px;
  flex-wrap: wrap;
}
nav.tabs a {
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 13.5px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--burgundy-dark);
  padding: 10px 14px;
  position: relative;
  transition: color 0.2s ease;
  display: inline-block;
}
nav.tabs a:hover {
  color: var(--gold);
}
nav.tabs a.active {
  color: var(--ink);
}
nav.tabs a.active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 3px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}
.nav-phone {
  font-size: 13px;
  color: var(--cream);
  white-space: nowrap;
  border: 1px solid var(--gold-soft);
  background: var(--burgundy-deep);
  padding: 8px 16px;
  border-radius: 999px;
  display: none;
}
.nav-phone:hover {
  border-color: var(--gold-soft);
  color: var(--gold-soft);
}
.nav-toggle {
  display: none;
}

@media (min-width: 860px) {
  .nav-phone {
    display: inline-block;
  }
}
@media (max-width: 859px) {
  nav.tabs {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--burgundy-deep);
    flex-direction: column;
    padding: 6px 28px 16px;
    border-bottom: 1px solid rgba(228, 200, 104, 0.25);
  }
  nav.tabs.open {
    display: flex;
  }
  nav.tabs a {
    text-align: left;
    padding: 12px 4px;
    color: rgba(245, 239, 230, 0.75);
  }
  nav.tabs a.active {
    color: var(--gold-soft);
  }
  nav.tabs a.active::after {
    bottom: 0;
    left: 0;
    right: auto;
    width: 26px;
    background: var(--gold-soft);
  }
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
  }
  .nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
  }
}

/* ---------- HERO / AMBIENT CANVAS ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    150deg,
    var(--burgundy-deep) 0%,
    var(--burgundy) 55%,
    var(--burgundy-light) 100%
  );
  color: var(--cream);
  padding: 96px 0 84px;
}
#particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}
.eyebrow {
  font-size: 12.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 600;
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(10px);
  animation: riseIn 0.7s ease forwards;
  animation-delay: 0.1s;
}
.hero h1 {
  font-size: clamp(38px, 6.4vw, 78px);
  line-height: 1.02;
  max-width: 820px;
}
.hero h1 .line {
  display: block;
  overflow: hidden;
}
.hero h1 .line span {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  animation: riseIn 0.75s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.hero h1 .line:nth-child(1) span {
  animation-delay: 0.22s;
}
.hero h1 .line:nth-child(2) span {
  animation-delay: 0.36s;
}
@keyframes riseIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero p.sub {
  margin-top: 24px;
  max-width: 600px;
  font-size: 19px;
  line-height: 1.6;
  color: var(--soft-cream);
  font-weight: 300;
  opacity: 0;
  animation: riseIn 0.7s ease forwards;
  animation-delay: 0.5s;
}
.hero-ctas {
  margin-top: 34px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: riseIn 0.7s ease forwards;
  animation-delay: 0.65s;
}
.btn {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 999px;
  cursor: pointer;
  border: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary {
  background: var(--gold-soft);
  color: var(--burgundy-deep);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -8px rgba(201, 162, 39, 0.55);
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245, 239, 230, 0.4);
}
.btn-ghost:hover {
  border-color: var(--gold-soft);
  color: var(--gold-soft);
}

/* ---------- JOURNEY (home signature element) ---------- */
.journey {
  margin-top: 80px;
  opacity: 0;
  animation: riseIn 0.9s ease forwards;
  animation-delay: 0.85s;
}
.journey-track {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  position: relative;
}
.journey-line {
  position: absolute;
  top: 22px;
  left: calc(0.6%);
  right: calc(10.6%);
  height: 2px;
  background: rgba(228, 200, 104, 0.25);
}
.journey-line-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--gold-soft);
  transition: width 1.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.journey-node {
  position: relative;
  padding-top: 0;
  text-align: left;
}
.journey-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--burgundy-deep);
  border: 2px solid var(--gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Archivo Black", sans-serif;
  color: var(--gold-soft);
  font-size: 15px;
  position: relative;
  z-index: 2;
}
.journey-node h3 {
  margin-top: 16px;
  font-size: 17px;
  color: var(--cream);
}
.journey-node p {
  margin-top: 6px;
  font-size: 17px;
  color: var(--gold-soft);
  max-width: 250px;
  line-height: 1.5;
  font-weight: 300;
}

@media (max-width: 700px) {
  .journey-track {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .journey-line {
    display: none;
  }
}

/* ---------- SECTION SCAFFOLDING ---------- */
section {
  padding: 88px 0;
}
.section-head {
  max-width: 640px;
  margin-bottom: 52px;
}
.section-head .eyebrow {
  color: var(--burgundy);
  opacity: 1;
  animation: none;
}
.section-head h2 {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--ink);
  margin-top: 14px;
}
.section-head p {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.65;
  color: #4a4038;
  font-weight: 300;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- PILLARS ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.pillar-card {
  background: #fff;
  border: 1px solid #e9e1d3;
  border-radius: 20px;
  padding: 32px 28px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -24px rgba(61, 11, 26, 0.28);
  border-color: var(--gold-soft);
}
.pillar-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
}
.pillar-card h3 {
  font-size: 20px;
  color: var(--burgundy-deep);
}
.pillar-card p {
  margin-top: 10px;
  font-size: 14.5px;
  line-height: 1.6;
  color: #5b5148;
  font-weight: 300;
}
.pillar-card .go {
  margin-top: 18px;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--burgundy);
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pillar-card .go:hover {
  color: var(--gold);
}

@media (max-width: 820px) {
  .pillars {
    grid-template-columns: 1fr;
  }
}

/* ---------- CREDENTIAL RIBBON ---------- */
.ribbon {
  background: var(--burgundy-deep);
  color: var(--cream);
  padding: 34px 0;
}
.ribbon-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 34px;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-weight: 500;
}
.ribbon-inner span {
  color: var(--gold-soft);
}
.ribbon-dot {
  opacity: 0.35;
}

/* ---------- STATS ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}
.stat-num {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(38px, 5vw, 58px);
  color: var(--burgundy-deep);
}
.stat-label {
  margin-top: 8px;
  font-size: 13.5px;
  color: #5b5148;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
@media (max-width: 700px) {
  .stats {
    grid-template-columns: 1fr;
  }
}

/* ---------- DETAIL PANELS (service page content) ---------- */
.detail-hero {
  background: var(--burgundy);
  color: var(--cream);
  padding: 64px 0 56px;
}
.detail-hero .eyebrow {
  opacity: 1;
  animation: none;
}
.detail-hero h1 {
  font-size: clamp(30px, 4.5vw, 52px);
  margin-top: 14px;
  max-width: 680px;
}
.detail-hero p {
  margin-top: 18px;
  max-width: 560px;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(245, 239, 230, 0.85);
  font-weight: 300;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: #fff;
  border: 1px solid #e9e1d3;
  border-radius: 18px;
  padding: 26px 24px;
}
.feature-card .num {
  font-family: "Archivo Black", sans-serif;
  color: var(--gold);
  font-size: 14px;
}
.feature-card h4 {
  font-family: "Archivo Black", sans-serif;
  font-size: 17px;
  margin-top: 10px;
  color: var(--burgundy-deep);
}
.feature-card p {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: #5b5148;
  font-weight: 300;
}
@media (max-width: 820px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

.role-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.role-chip {
  background: #fff;
  border: 1px solid #e9e1d3;
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--burgundy-deep);
  display: flex;
  align-items: center;
  gap: 8px;
}
.role-chip .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.quote-block {
  border-left: 3px solid var(--gold);
  padding-left: 22px;
  margin-top: 36px;
  max-width: 620px;
}
.quote-block p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--burgundy-deep);
  font-style: italic;
  font-weight: 300;
}

/* ---------- TEAM ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: start;
}
.about-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 24px;
  background: linear-gradient(
    150deg,
    var(--burgundy-deep),
    var(--burgundy-light)
  );
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-photo img {
  width: 60%;
}
.credential-list {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
}
.credential-list li {
  list-style: none;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14.5px;
  color: #4a4038;
  line-height: 1.5;
  font-weight: 300;
}
.credential-list li::before {
  content: "";
  flex: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 7px;
}
.credential-list b {
  color: var(--ink);
  font-weight: 500;
}
@media (max-width: 760px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-photo {
    max-width: 220px;
  }
}

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.contact-info h2 {
  font-size: 22px;
  color: var(--burgundy-deep);
}
.contact-line {
  margin-top: 18px;
  font-size: 15px;
  color: #4a4038;
}
.contact-line a {
  color: var(--burgundy);
  font-weight: 500;
}
.contact-line a:hover {
  color: var(--gold);
}
.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.area-chips span {
  background: var(--cream-dim);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  color: var(--burgundy-deep);
  font-weight: 500;
}
form.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
form.contact-form input,
form.contact-form textarea {
  font-family: "Oswald", sans-serif;
  font-size: 14.5px;
  border: 1px solid #d9d0c2;
  border-radius: 12px;
  padding: 14px 16px;
  background: #fff;
  color: var(--ink);
  resize: vertical;
}
form.contact-form input:focus,
form.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}
form.contact-form label {
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #5b5148;
  margin-bottom: -8px;
}
@media (max-width: 760px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- CTA BAND ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--burgundy-deep), var(--burgundy));
  color: var(--cream);
  text-align: center;
  padding: 76px 0;
}
.cta-band h2 {
  font-size: clamp(26px, 4vw, 40px);
  max-width: 640px;
  margin: 0 auto;
}
.cta-band .btn-primary {
  margin-top: 28px;
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--burgundy-deep);
  color: rgba(245, 239, 230, 0.65);
  padding: 68px 0 32px;
  font-size: 13px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px 32px;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-logo-box {
  background: #fff;
  border-radius: 18px;
  padding: 20px 26px;
  display: inline-flex;
  align-items: center;
}
.footer-logo-box img {
  height: 64px;
  width: auto;
}
.footer-tagline {
  margin-top: 22px;
  max-width: 340px;
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(245, 239, 230, 0.7);
  font-weight: 300;
}

.footer-col h3 {
  font-family: "Archivo Black", sans-serif;
  font-size: 17px;
  color: var(--cream);
  margin-bottom: 20px;
}
.footer-col nav.footer-links {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-col nav.footer-links a {
  font-size: 14.5px;
  color: rgba(245, 239, 230, 0.72);
  font-weight: 300;
  transition: color 0.2s ease;
}
.footer-col nav.footer-links a:hover {
  color: var(--gold-soft);
}
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-contact-list a,
.footer-contact-list span {
  font-size: 14.5px;
  color: rgba(245, 239, 230, 0.72);
  font-weight: 300;
  line-height: 1.5;
}
.footer-contact-list a:hover {
  color: var(--gold-soft);
}

@media (max-width: 820px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand-col {
    grid-column: 1 / -1;
  }
}
@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-ack {
  margin-top: 48px;
  font-style: italic;
  max-width: 640px;
  line-height: 1.6;
  font-weight: 300;
}
.footer-bottom {
  margin-top: 24px;
  border-top: 1px solid rgba(245, 239, 230, 0.12);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- SECTION VARIANT ---------- */
section.alt{
  background: var(--cream-dim);
}

/* ---------- GENERIC GRIDS ---------- */
.grid-2{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:22px;
}
.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
@media (max-width:820px){
  .grid-2, .grid-3{ grid-template-columns:1fr; }
}

/* ---------- GENERIC CARD ---------- */
.card{
  background:#fff;
  border:1px solid var(--cream-dim);
  border-radius:var(--radius);
  padding:32px 28px;
}

/* ---------- SERVICE PATH CARDS ---------- */
.service-path{
  position:relative;
  overflow:hidden;
}
.service-path::before{
  content:"";
  position:absolute;
  inset:0 0 auto 0;
  height:5px;
  background:linear-gradient(90deg, var(--burgundy), var(--gold));
}
.card-number{
  display:inline-block;
  font-family:'Archivo Black', sans-serif;
  color:var(--gold);
  font-size:14px;
}
.service-path h3{
  margin-top:14px;
  font-size:20px;
  color:var(--burgundy-deep);
}
.service-path > p{
  margin-top:10px;
  font-size:14.5px;
  line-height:1.6;
  color:var(--muted);
  font-weight:300;
}
.check-list{
  display:grid;
  gap:12px;
  padding:0;
  margin:24px 0 0;
}
.check-list li{
  list-style:none;
  position:relative;
  padding-left:28px;
  color:var(--muted);
  font-size:14px;
  line-height:1.5;
  font-weight:300;
}
.check-list li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:var(--burgundy);
  font-weight:900;
}

/* ---------- SUPPORT STRIP ---------- */
.support-strip{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
  margin-top:26px;
}
.support-item{
  background:#fff;
  border:1px solid rgba(107,16,41,0.1);
  border-radius:16px;
  padding:22px 20px;
}
.support-item h3{
  font-family:'Archivo Black', sans-serif;
  font-size:16.5px;
  color:var(--burgundy-deep);
  margin-bottom:8px;
}
.support-item p{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.55;
  font-weight:300;
}
@media (max-width:980px){
  .support-strip{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:560px){
  .support-strip{ grid-template-columns:1fr; }
}

/* ---------- PROCESS GRID ---------- */
.process-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  counter-reset:step;
}
.process-step{
  background:#fff;
  border-radius:18px;
  padding:26px 24px;
  border:1px solid rgba(107,16,41,0.09);
}
.process-step::before{
  counter-increment:step;
  content:"0" counter(step);
  display:block;
  font-family:'Archivo Black', sans-serif;
  color:var(--burgundy);
  font-weight:900;
  font-size:13px;
  margin-bottom:12px;
}
.process-step h3{
  font-size:18px;
  color:var(--burgundy-deep);
  margin-bottom:8px;
}
.process-step p{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.6;
  font-weight:300;
}
@media (max-width:980px){
  .process-grid{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:560px){
  .process-grid{ grid-template-columns:1fr; }
}

/* ---------- HERO ACTIONS (detail page CTA row) ---------- */
.hero-actions{
  margin-top:26px;
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

/* ---------- TEAM GRID (photo card layout) ---------- */
.team-grid{
  display:grid;
  grid-template-columns:330px 1fr;
  gap:52px;
  align-items:start;
}
.team-photo{
  background:#fff;
  border-radius:var(--radius);
  padding:24px;
  box-shadow:var(--shadow);
}
.team-photo img{
  width:100%;
  height:auto;
}
@media (max-width:760px){
  .team-grid{ grid-template-columns:1fr; }
  .team-photo{ max-width:280px; margin:0 auto; }
}


/* ---------- PRIVACY POLICY ---------- */
.policy-updated{
  margin-top:16px !important;
  font-size:13px !important;
  color:rgba(245,239,230,0.72) !important;
}
.policy-layout{
  display:grid;
  grid-template-columns:minmax(210px, 260px) minmax(0, 1fr);
  gap:56px;
  align-items:start;
}
.policy-toc{
  position:sticky;
  top:96px;
  background:#fff;
  border:1px solid #e9e1d3;
  border-radius:18px;
  padding:24px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.policy-toc h2{
  font-size:18px;
  color:var(--burgundy-deep);
  margin-bottom:6px;
}
.policy-toc a{
  font-size:13.5px;
  line-height:1.4;
  color:#5b5148;
}
.policy-toc a:hover{ color:var(--burgundy); }
.policy-content{ max-width:780px; }
.policy-content > section{
  padding:0 0 38px;
  scroll-margin-top:110px;
}
.policy-content h2{
  font-size:24px;
  color:var(--burgundy-deep);
  margin-bottom:14px;
}
.policy-content p,
.policy-content li{
  font-size:15px;
  line-height:1.75;
  color:#4a4038;
  font-weight:300;
}
.policy-content p{ margin:0 0 14px; }
.policy-content ul{ margin:8px 0 16px; padding-left:24px; }
.policy-content li{ margin:7px 0; }
.policy-content a{
  color:var(--burgundy);
  text-decoration:underline;
  text-underline-offset:3px;
}
.privacy-note{
  margin-top:26px;
  max-width:560px;
  font-size:13.5px;
  line-height:1.65;
  color:#5b5148;
}
.privacy-note a{
  color:var(--burgundy);
  font-weight:500;
  text-decoration:underline;
  text-underline-offset:3px;
}
.footer-bottom a:hover{ color:var(--gold-soft); }
@media (max-width:820px){
  .policy-layout{ grid-template-columns:1fr; gap:34px; }
  .policy-toc{ position:static; }
}


/* WordPress compatibility */
.custom-logo-link { display:flex; align-items:center; }
.custom-logo { height:40px; width:auto; }
.tabs-menu, .footer-menu { list-style:none; margin:0; padding:0; display:flex; }
.tabs-menu { gap:2px; flex-wrap:wrap; }
.tabs-menu li { margin:0; }
nav.tabs .current-menu-item > a, nav.tabs .current_page_item > a { color:var(--ink); }
nav.tabs .current-menu-item > a::after, nav.tabs .current_page_item > a::after { content:""; position:absolute; left:14px; right:14px; bottom:3px; height:2px; background:var(--ink); border-radius:2px; }
.footer-menu { flex-direction:column; gap:8px; }
@media (max-width: 900px) { .tabs-menu { flex-direction:column; width:100%; } }
