:root{
  /* Extracted/approximated from your PDF theme */
  --wg-blue: #276297;        /* primary */
  --wg-blue-dark: #143A5A;   /* deep */
  --wg-blue-2: #2C65B1;      /* highlight */
  --wg-accent: #C18358;      /* warm accent */
  --wg-accent-2:#AD8268;     /* softer accent */
  --wg-ink: #1B2430;
  --wg-muted: #5C6B7A;
  --wg-bg: #F2F2F2;
  --wg-card: rgba(255,255,255,0.72);
  --wg-border: rgba(20,58,90,0.14);
  --radius: 18px;
  --shadow: 0 18px 60px rgba(15, 30, 55, 0.14);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--wg-ink);
  background: radial-gradient(1200px 800px at 20% 0%, rgba(44,101,177,0.18), transparent 60%),
              radial-gradient(900px 700px at 90% 20%, rgba(193,131,88,0.14), transparent 55%),
              var(--wg-bg);
  overflow-x:hidden;
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; height:auto; display:block; }

.container{
  width:min(1120px, 92vw);
  margin:0 auto;
}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(14px);
  background: rgba(242,242,242,0.65);
  border-bottom: 1px solid var(--wg-border);
}

.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:14px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  user-select:none;
}
.brand-mark{
  width:44px; height:44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--wg-blue), var(--wg-blue-2));
  display:grid; place-items:center;
  color:white;
  font-weight:800;
  letter-spacing:0.5px;
  box-shadow: 0 12px 28px rgba(39,98,151,0.25);
}
.brand-name{
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
}
.brand-sub{
  font-size: 12px;
  color: var(--wg-muted);
  margin-top: 2px;
}

.nav{
  display:flex;
  align-items:center;
  gap:16px;
}
.nav-link{
  font-weight:600;
  color: #233041;
  opacity:0.92;
  padding:10px 10px;
  border-radius: 12px;
  transition: 200ms ease;
}
.nav-link:hover{
  background: rgba(39,98,151,0.08);
}
.nav-link.active{
  background: rgba(39,98,151,0.12);
  color: var(--wg-blue-dark);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 700;
  border:1px solid transparent;
  cursor:pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.btn:hover{ transform: translateY(-1px); box-shadow: 0 16px 40px rgba(20,58,90,0.18); }
.btn:active{ transform: translateY(0px) scale(0.99); }

.btn-primary{
  color:white;
  background: linear-gradient(135deg, var(--wg-accent), var(--wg-accent-2));
}
.btn-secondary{
  background: rgba(255,255,255,0.72);
  border:1px solid var(--wg-border);
}
.btn-outline{
  background: transparent;
  border:1px solid rgba(193,131,88,0.45);
  color: var(--wg-blue-dark);
}

.hero{
  padding: 62px 0 26px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items:center;
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--wg-border);
  background: rgba(255,255,255,0.55);
  color: var(--wg-blue-dark);
  font-weight:700;
  font-size: 13px;
}
.kicker-dot{
  width:10px; height:10px; border-radius:999px;
  background: var(--wg-accent);
  box-shadow: 0 0 0 6px rgba(193,131,88,0.18);
}
.h1{
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.03;
  margin: 16px 0 12px;
  letter-spacing: -0.6px;
}
.subtitle{
  font-size: 16px;
  color: var(--wg-muted);
  max-width: 54ch;
}
.hero-cta{
  margin-top: 18px;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.hero-card{
  border-radius: var(--radius);
  border:1px solid var(--wg-border);
  background: var(--wg-card);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.hero-media{
  position:relative;
  aspect-ratio: 16 / 11;
  overflow:hidden;
}
.hero-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform: scale(1.02);
}
.hero-media::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(20,58,90,0.00), rgba(20,58,90,0.18));
}

.section{
  padding: 46px 0;
}
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom: 18px;
}
.h2{
  font-family: "Playfair Display", serif;
  font-size: 30px;
  margin:0;
}
.small{
  font-size: 14px;
  color: var(--wg-muted);
  max-width: 60ch;
}

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card{
  border-radius: var(--radius);
  border:1px solid var(--wg-border);
  background: var(--wg-card);
  box-shadow: 0 14px 42px rgba(15, 30, 55, 0.10);
  padding: 18px;
  min-height: 160px;
  position:relative;
  overflow:hidden;
}
.card::before{
  content:"";
  position:absolute;
  top:-70px; right:-90px;
  width:180px; height:180px;
  background: radial-gradient(circle at 30% 30%, rgba(193,131,88,0.30), transparent 60%);
  filter: blur(0px);
}
.card-title{
  font-weight: 800;
  font-size: 16px;
  margin: 6px 0 8px;
}
.card-text{
  color: var(--wg-muted);
  font-size: 14px;
  line-height: 1.6;
}




.icon{
  width:44px; height:44px;
  border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(39,98,151,0.10);
  border:1px solid rgba(39,98,151,0.18);
}
.icon svg{ width:22px; height:22px; }

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items:center;
}
.media{
  border-radius: var(--radius);
  border:1px solid var(--wg-border);
  overflow:hidden;
  background: #fff;
  box-shadow: var(--shadow);
}
.media img{
  width:100%;
  height:100%;
  object-fit: cover;
}

.ribbon{
  border-radius: 24px;
  border:1px solid rgba(193,131,88,0.28);
  background: linear-gradient(135deg, rgba(193,131,88,0.14), rgba(39,98,151,0.10));
  padding: 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
}

.form{
  display:grid;
  gap: 12px;
}
.input{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border:1px solid rgba(20,58,90,0.18);
  background: rgba(255,255,255,0.75);
  outline:none;
  transition: 180ms ease;
}
.input:focus{
  border-color: rgba(39,98,151,0.45);
  box-shadow: 0 0 0 6px rgba(39,98,151,0.10);
}
textarea.input{ min-height: 110px; resize: vertical; }

.site-footer{
  margin-top: 40px;
  padding: 34px 0 18px;
  border-top: 1px solid var(--wg-border);
  background: rgba(242,242,242,0.7);
  backdrop-filter: blur(12px);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.3fr 0.7fr 0.9fr;
  gap: 18px;
  padding-bottom: 16px;
}
.footer-title{
  font-weight: 900;
  margin-bottom: 8px;
}
.footer-links{ display:grid; gap: 8px; }
.footer-links a{ color: var(--wg-muted); }
.footer-links a:hover{ color: var(--wg-blue-dark); }
.footer-bottom{
  display:flex;
  justify-content:space-between;
  gap: 12px;
  border-top: 1px solid var(--wg-border);
  padding-top: 14px;
}
.muted{ color: var(--wg-muted); }

.bg-orb{
  position:fixed;
  inset:auto auto auto auto;
  width: 560px; height: 560px;
  border-radius: 999px;
  filter: blur(50px);
  opacity: 0.32;
  pointer-events:none;
  z-index:-1;
}
.orb-1{
  left: -180px;
  top: -120px;
  background: radial-gradient(circle at 30% 30%, rgba(44,101,177,0.55), transparent 58%);
}
.orb-2{
  right: -220px;
  top: 120px;
  background: radial-gradient(circle at 30% 30%, rgba(193,131,88,0.55), transparent 58%);
}

/* Mobile nav */
.nav-toggle{
  display:none;
  width:46px; height:46px;
  border-radius: 14px;
  border:1px solid var(--wg-border);
  background: rgba(255,255,255,0.65);
  cursor:pointer;
}
.nav-toggle span{
  display:block;
  width:20px;
  height:2px;
  background: #233041;
  margin: 5px auto;
  border-radius: 2px;
}

/* Responsive */
@media (max-width: 920px){
  .hero-grid{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .nav-toggle{ display:inline-block; }
  .nav{
    position:fixed;
    top:74px;
    right: 12px;
    left: 12px;
    display:none;
    flex-direction:column;
    padding: 14px;
    border-radius: 18px;
    border:1px solid var(--wg-border);
    background: rgba(242,242,242,0.92);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
  }
  .nav.open{ display:flex; }
}

sup {
  font-size: 0.95em;   /* increase from default */
  vertical-align: super;
  margin-left: 2px;
  font-weight: 600;
}

.service-details{
  border-top: 1px dashed rgba(20,58,90,0.2);
}

.service-details ul{
  margin: 0;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--wg-muted);
}

/* Typical Outcomes – Each outcome in a box */
.outcomes-cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.outcome-card{
  border-radius: var(--radius);
  border: 1px solid var(--wg-border);
  background: var(--wg-card);
  box-shadow: 0 14px 42px rgba(15,30,55,0.10);
  padding: 16px;
  position: relative;
  overflow: hidden;
}

.outcome-card::before{
  content:"";
  position:absolute;
  top:-70px; right:-80px;
  width:160px; height:160px;
  background: radial-gradient(circle at 30% 30%, rgba(193,131,88,0.22), transparent 60%);
}

.outcome-title{
  font-weight: 900;
  font-size: 15px;
  color: var(--wg-blue-dark);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.outcome-text{
  font-size: 14px;
  line-height: 1.6;
  color: var(--wg-muted);
  position: relative;
  z-index: 1;
}

@media (max-width: 920px){
  .outcomes-cards{
    grid-template-columns: 1fr;
  }
}
