:root {
  --navy:      #0B1829;
  --navy-mid:  #122236;
  --teal:      #1B8FA0;
  --teal-lt:   #3BB3C8;
  --teal-glow: rgba(27,143,160,.18);
  --gold:      #C9984A;
  --gold-lt:   #E8B86D;
  --rust:      #B94030;
  --off-white: #EFF3F7;
  --muted:     #8A9BB0;
  --white:     #FFFFFF;
  --serif:     'Cormorant Garamond', Georgia, serif;
  --sans:      'DM Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--navy);
  color: var(--off-white);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── SCROLLBAR ───────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 3px; }

/* ─── NAV ─────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 5vw;
  background: rgba(11,24,41,.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--white);
}
.nav-logo span { color: var(--teal-lt); }
.nav-links { display: flex; gap: 2.2rem; list-style: none; }
.nav-links a {
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  transition: color .25s;
}
.nav-links a:hover { color: var(--gold-lt); }
.nav-cta {
  background: var(--teal);
  color: var(--white) !important;
  padding: .45rem 1.2rem;
  border-radius: 2px;
  transition: background .25s !important;
}
.nav-cta:hover { background: var(--teal-lt) !important; color: var(--navy) !important; }

/* ─── HERO ────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding: 8rem 5vw 4rem;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(27,143,160,.12) 0%, transparent 65%),
              radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201,152,74,.07) 0%, transparent 60%);
}

/* concentric rings */
.rings {
  position: absolute;
  right: -8vw; top: 50%; transform: translateY(-50%);
  width: 54vw; height: 54vw;
  pointer-events: none;
}
.ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(27,143,160,.22);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation: pulse 6s ease-in-out infinite;
}
.ring:nth-child(1){ width:22%; height:22%; background: rgba(27,143,160,.18); border-color: var(--teal); animation-delay:0s;}
.ring:nth-child(2){ width:42%; height:42%; animation-delay:.8s;}
.ring:nth-child(3){ width:62%; height:62%; animation-delay:1.6s;}
.ring:nth-child(4){ width:82%; height:82%; animation-delay:2.4s;}
.ring:nth-child(5){ width:100%;height:100%; animation-delay:3.2s;}
@keyframes pulse {
  0%,100% { opacity:.35; }
  50%      { opacity:.8; }
}

.ring-label {
  position: absolute;
  font-family: var(--serif);
  font-size: clamp(.9rem,1.5vw,1.2rem);
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--teal-lt);
}
.rl-t { top:50%; right:52%; transform:translateY(-50%); }
.rl-a1{ left:50%; top:20%; transform:translateX(-50%); }
.rl-r { left:56%; top:50%; transform:translateY(-50%); }
.rl-a2{ left:50%; bottom:17%; transform:translateX(-50%); }

.hero-content { position: relative; z-index: 2; max-width: 52rem; }
.hero-tag {
  display: inline-block;
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,152,74,.4);
  padding: .3rem .9rem; border-radius: 2px;
  margin-bottom: 1.6rem;
  animation: fadeUp .8s ease both;
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -.01em;
  color: var(--white);
  animation: fadeUp .8s .15s ease both;
}
.hero-headline em { font-style: italic; color: var(--teal-lt); }
.hero-headline strong { font-weight: 600; }
.hero-sub {
  margin-top: 1.6rem;
  font-size: clamp(1rem,1.5vw,1.15rem);
  color: var(--muted);
  max-width: 38rem;
  animation: fadeUp .8s .3s ease both;
}
.hero-actions {
  margin-top: 2.8rem;
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeUp .8s .45s ease both;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
  padding: .85rem 2.2rem;
  border: none; cursor: pointer;
  font-family: var(--sans); font-size: .85rem; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  text-decoration: none; border-radius: 2px;
  transition: background .25s, transform .2s;
}
.btn-primary:hover { background: var(--teal-lt); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--off-white);
  padding: .85rem 2.2rem;
  border: 1px solid rgba(255,255,255,.22);
  cursor: pointer;
  font-family: var(--sans); font-size: .85rem; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  text-decoration: none; border-radius: 2px;
  transition: border-color .25s, color .25s;
}
.btn-outline:hover { border-color: var(--teal-lt); color: var(--teal-lt); }

@keyframes fadeUp {
  from { opacity:0; transform: translateY(22px); }
  to   { opacity:1; transform: translateY(0); }
}

/* ─── SECTION COMMONS ─────────────────────────────── */
section { padding: 7rem 5vw; }
.section-tag {
  font-size: .7rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300; line-height: 1.2;
  color: var(--white);
}
.section-title em { font-style: italic; color: var(--teal-lt); }
.section-body {
  font-size: 1rem; color: var(--muted);
  max-width: 42rem; margin-top: 1.2rem; line-height: 1.8;
}
.divider {
  width: 3rem; height: 2px;
  background: linear-gradient(90deg, var(--teal), transparent);
  margin: 2rem 0;
}

/* ─── NUMBERS STRIP ───────────────────────────────── */
#numbers {
  padding: 4rem 5vw;
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat-value {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--teal-lt);
  display: block;
}
.stat-label { font-size: .8rem; color: var(--muted); letter-spacing: .05em; }
.stat-note  { font-size: .72rem; color: rgba(138,155,176,.6); margin-top: .3rem; }

/* ─── PROBLEM ─────────────────────────────────────── */
#problem { background: var(--navy); }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.problem-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 4px;
  padding: 2rem 1.8rem;
  position: relative;
  transition: border-color .3s, background .3s;
}
.problem-card:hover {
  border-color: rgba(27,143,160,.4);
  background: rgba(27,143,160,.05);
}
.problem-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--rust);
  border-radius: 4px 0 0 4px;
}
.problem-card h3 {
  font-family: var(--serif);
  font-size: 1.25rem; font-weight: 600;
  color: var(--white); margin-bottom: .7rem;
}
.problem-card p { font-size: .9rem; color: var(--muted); line-height: 1.7; }

/* ─── FRAMEWORK ───────────────────────────────────── */
#framework {
  background: var(--navy-mid);
  position: relative; overflow: hidden;
}
#framework::before {
  content: 'T.A.R.A';
  position: absolute;
  font-family: var(--serif);
  font-size: clamp(8rem, 18vw, 16rem);
  font-weight: 700;
  color: rgba(255,255,255,.025);
  right: -2vw; top: 50%; transform: translateY(-50%);
  letter-spacing: .08em;
  pointer-events: none;
}
.framework-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-top: 3.5rem;
}
.framework-pillars { display: flex; flex-direction: column; gap: 1.8rem; }
.pillar {
  display: flex; gap: 1.4rem; align-items: flex-start;
  padding: 1.6rem;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 4px;
  transition: border-color .3s;
}
.pillar:hover { border-color: var(--teal); }
.pillar-letter {
  font-family: var(--serif);
  font-size: 2.8rem; font-weight: 700;
  color: var(--teal);
  line-height: 1; flex-shrink: 0; width: 2.5rem;
}
.pillar-text h3 {
  font-family: var(--serif);
  font-size: 1.2rem; font-weight: 600;
  color: var(--white); margin-bottom: .4rem;
}
.pillar-text p { font-size: .88rem; color: var(--muted); line-height: 1.7; }

.framework-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 400px;
}
.fw-rings-wrap {
  position: relative; width: 340px; height: 340px;
}
.fw-ring {
  position: absolute; border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  border: 1.5px solid rgba(27,143,160,.3);
  display: flex; align-items: center; justify-content: center;
}
.fw-ring:nth-child(1){ width:90px;  height:90px;  background:rgba(27,143,160,.25); border-color:var(--teal);}
.fw-ring:nth-child(2){ width:160px; height:160px; background:rgba(27,143,160,.08);}
.fw-ring:nth-child(3){ width:240px; height:240px; background:rgba(27,143,160,.04);}
.fw-ring:nth-child(4){ width:320px; height:320px; background:rgba(27,143,160,.02);}
.fw-core {
  font-family: var(--serif); font-size: 1.1rem; font-weight: 700;
  color: var(--white); letter-spacing: .1em;
  position: absolute; text-align: center;
}
.fw-path {
  position: absolute;
  font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--teal-lt); opacity: .7;
}
.fw-path-1 { top: 32%; left: 18%; }
.fw-path-2 { bottom: 28%; right: 14%; }

/* ─── WHO IT'S FOR ─────────────────────────────────── */
#for { background: var(--navy); }
.segments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem;
  margin-top: 3.5rem;
}
.segment-card {
  padding: 1.8rem 1.4rem;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 4px;
  text-align: center;
  transition: border-color .3s, transform .3s;
  cursor: default;
}
.segment-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.seg-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--teal-glow);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.1rem;
  font-size: 1.3rem;
}
.segment-card h3 {
  font-family: var(--serif); font-size: 1.05rem; font-weight: 600;
  color: var(--white); margin-bottom: .5rem;
}
.segment-card p { font-size: .82rem; color: var(--muted); line-height: 1.6; }

/* ─── OFFERINGS ───────────────────────────────────── */
#offerings { background: var(--navy-mid); }
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 3.5rem;
}
@media (max-width: 900px) { .offerings-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .offerings-grid { grid-template-columns: 1fr; } }

.offering-card {
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 4px;
  padding: 2rem 1.6rem;
  position: relative;
  overflow: hidden;
  transition: border-color .3s;
}
.offering-card:hover { border-color: var(--teal); }
.offering-card.featured {
  border-color: var(--gold);
  background: rgba(201,152,74,.06);
}
.offer-badge {
  font-size: .66rem; letter-spacing: .16em; text-transform: uppercase;
  background: var(--teal);
  color: var(--white);
  padding: .2rem .6rem; border-radius: 2px;
  display: inline-block; margin-bottom: 1rem;
}
.offer-badge.gold { background: var(--gold); }
.offer-badge.rust { background: var(--rust); }
.offering-card h3 {
  font-family: var(--serif); font-size: 1.2rem; font-weight: 600;
  color: var(--white); margin-bottom: .6rem;
}
.offering-card p { font-size: .86rem; color: var(--muted); line-height: 1.7; }
.offer-detail {
  margin-top: 1.2rem;
  font-size: .78rem; color: var(--teal-lt);
  letter-spacing: .04em;
}

/* ─── PROCESS ─────────────────────────────────────── */
#process { background: var(--navy); }
.process-steps {
  display: flex;
  gap: 0;
  margin-top: 3.5rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 2rem; left: 2.5rem; right: 2.5rem;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--gold), var(--teal));
  opacity: .3;
}
.step {
  flex: 1; padding: 0 1rem;
  text-align: center; position: relative; z-index: 1;
}
.step-num {
  width: 4rem; height: 4rem; border-radius: 50%;
  background: var(--navy-mid);
  border: 2px solid var(--teal);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
  font-family: var(--serif); font-size: 1.2rem; font-weight: 700;
  color: var(--teal);
}
.step h3 {
  font-family: var(--serif); font-size: 1rem; font-weight: 600;
  color: var(--white); margin-bottom: .4rem;
}
.step p { font-size: .8rem; color: var(--muted); line-height: 1.6; }

/* ─── TESTIMONIALS ─────────────────────────────────── */
#testimonials { background: var(--navy-mid); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.6rem;
  margin-top: 3.5rem;
}
.testi-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 4px;
  padding: 2rem;
  position: relative;
}
.testi-card::before {
  content: '\201C';
  font-family: var(--serif);
  font-size: 4rem; font-weight: 700;
  color: var(--teal); opacity: .35;
  position: absolute; top: .5rem; left: 1.2rem;
  line-height: 1;
}
.testi-text {
  font-size: .9rem; color: var(--off-white);
  line-height: 1.75; font-style: italic;
  font-family: var(--serif);
  margin-top: 1.5rem;
}
.testi-org {
  margin-top: 1.2rem;
  font-size: .75rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold);
}

/* ─── ABOUT ───────────────────────────────────────── */
#about {
  background: var(--navy);
  position: relative; overflow: hidden;
}
#about::after {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 45%; height: 100%;
  background: radial-gradient(ellipse at right, rgba(27,143,160,.1) 0%, transparent 70%);
  pointer-events: none;
}
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem; align-items: center;
}
.about-photo-wrap {
  position: relative;
  display: flex; justify-content: center;
}
.about-photo-frame {
  width: 280px; height: 340px;
  border: 2px solid rgba(27,143,160,.4);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(27,143,160,.06);
  position: relative;
  overflow: hidden;
}
.photo-initials {
  font-family: var(--serif);
  font-size: 4rem; font-weight: 300;
  color: var(--teal); letter-spacing: .1em;
}
.about-photo-frame::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(transparent, rgba(11,24,41,.8));
}
.about-corner {
  position: absolute;
  width: 28px; height: 28px;
  border-color: var(--gold); border-style: solid;
}
.ac-tl { top: -6px; left: -6px; border-width: 2px 0 0 2px; }
.ac-br { bottom: -6px; right: -6px; border-width: 0 2px 2px 0; }

.about-creds {
  display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem;
}
.cred {
  display: flex; gap: 1rem; align-items: flex-start;
  font-size: .86rem;
}
.cred-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal); flex-shrink: 0; margin-top: .55rem;
}
.cred span { color: var(--muted); }
.cred strong { color: var(--off-white); }

/* ─── CONTACT ─────────────────────────────────────── */
#contact {
  background: var(--navy-mid);
  position: relative; overflow: hidden;
}
#contact::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(27,143,160,.09) 0%, transparent 70%);
  pointer-events: none;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
}
.contact-steps { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.8rem; }
.contact-step {
  display: flex; gap: 1.4rem; align-items: flex-start;
}
.cs-num {
  width: 2.6rem; height: 2.6rem; border-radius: 50%;
  background: var(--teal-glow);
  border: 1.5px solid var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1rem; font-weight: 700;
  color: var(--teal); flex-shrink: 0;
}
.cs-body h4 {
  font-family: var(--serif); font-size: 1.1rem; font-weight: 600;
  color: var(--white); margin-bottom: .3rem;
}
.cs-body p { font-size: .86rem; color: var(--muted); line-height: 1.6; }

.contact-form { position: relative; z-index: 1; }
.contact-form .form-note {
  font-size: .8rem; color: var(--muted);
  margin-bottom: 2rem; line-height: 1.6;
}
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: .5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .8rem 1rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 2px;
  color: var(--off-white);
  font-family: var(--sans); font-size: .9rem;
  transition: border-color .25s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--teal); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select option { background: var(--navy-mid); color: var(--off-white); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ─── FOOTER ──────────────────────────────────────── */
footer {
  background: #070F1B;
  padding: 3rem 5vw;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
  gap: 1.5rem;
}
.footer-brand {
  font-family: var(--serif);
  font-size: 1.2rem; font-weight: 600;
  color: var(--white); letter-spacing: .1em;
}
.footer-brand span { color: var(--teal-lt); }
.footer-links { display: flex; gap: 1.8rem; flex-wrap: wrap; }
.footer-links a {
  font-size: .78rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  transition: color .25s;
}
.footer-links a:hover { color: var(--teal-lt); }
.footer-copy { font-size: .75rem; color: rgba(138,155,176,.5); }

/* ─── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 900px) {
  .framework-layout { grid-template-columns: 1fr; }
  .framework-visual { display: none; }
  .about-layout { grid-template-columns: 1fr; }
  .about-photo-wrap { display: none; }
  .contact-layout { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; }
  .process-steps::before { display: none; }
  .rings { display: none; }
  nav .nav-links { display: none; }
}
@media (max-width: 600px) {
  section { padding: 5rem 6vw; }
  .hero-actions { flex-direction: column; }
}