@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Montserrat:wght@300;400;500;600&display=swap');

:root{
  --navy:#071848;
  --navy-deep:#020b25;
  --gold:#d8b15c;
  --gold-soft:#f1d58c;
  --white:#ffffff;
  --muted:#d7deed;
  --line:rgba(216,177,92,.46);
  --glass:rgba(255,255,255,.075);
}

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}

body{
  min-height:100vh;
  color:var(--white);
  font-family:'Montserrat',Arial,sans-serif;
  background:
    radial-gradient(circle at 50% 12%, rgba(216,177,92,.16), transparent 24%),
    linear-gradient(180deg, rgba(2,9,30,.9), rgba(4,17,55,.97)),
    var(--navy);
  overflow-x:hidden;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:-2;
  opacity:.22;
  background-image:url("data:image/svg+xml,%3Csvg width='1440' height='900' viewBox='0 0 1440 900' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23d8b15c' stroke-width='1' opacity='.42'%3E%3Cpath d='M80 590 C280 390, 520 420, 720 560 S1120 650, 1360 430'/%3E%3Cpath d='M140 430 C360 250, 580 260, 760 420 S1040 650, 1300 300'/%3E%3Cpath d='M250 720 C470 520, 680 520, 910 640 S1200 710, 1390 580'/%3E%3Cpath d='M20 620 C260 700, 500 650, 700 520 S1110 330, 1420 520'/%3E%3C/g%3E%3Cg fill='%23d8b15c' opacity='.7'%3E%3Ccircle cx='155' cy='430' r='3'/%3E%3Ccircle cx='515' cy='412' r='3'/%3E%3Ccircle cx='760' cy='420' r='3'/%3E%3Ccircle cx='1110' cy='330' r='3'/%3E%3Ccircle cx='1300' cy='300' r='3'/%3E%3Ccircle cx='910' cy='640' r='3'/%3E%3C/g%3E%3C/svg%3E");
  background-size:cover;
  background-position:center;
}

body::after{
  content:"";
  position:fixed;
  inset:0;
  z-index:-1;
  background:radial-gradient(ellipse at center, transparent 0%, rgba(2,8,28,.25) 42%, rgba(2,8,28,.82) 100%);
}

a{color:var(--gold-soft);text-decoration:none}
a:hover{color:var(--white)}

.site-shell{
  width:min(1180px,92%);
  margin:0 auto;
  padding:28px 0 32px;
}

.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:10px 0 28px;
}

.brand img{
  width:220px;
  max-width:48vw;
  display:block;
}

.nav{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  gap:16px 22px;
  font-size:13px;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.nav a{
  color:#e6e9f4;
}

.nav a:hover{
  color:var(--gold-soft);
}

.hero{
  min-height:560px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.hero-inner{
  max-width:980px;
}

.eyebrow{
  color:var(--gold-soft);
  font-size:13px;
  letter-spacing:.22em;
  text-transform:uppercase;
  margin-bottom:14px;
}

h1{
  font-family:'Cormorant Garamond',Georgia,serif;
  font-weight:600;
  font-size:clamp(42px,7vw,78px);
  line-height:1.02;
  letter-spacing:.02em;
}

h2{
  font-family:'Cormorant Garamond',Georgia,serif;
  color:var(--gold-soft);
  font-weight:600;
  font-size:30px;
  margin-bottom:12px;
}

.gold-line{
  width:110px;
  height:1px;
  background:linear-gradient(90deg,transparent,var(--gold),transparent);
  margin:26px auto 30px;
}

.mission{
  max-width:900px;
  margin:0 auto;
  font-size:clamp(17px,2vw,21px);
  line-height:1.9;
  color:var(--muted);
  font-weight:300;
}

.status-pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-top:34px;
  padding:12px 18px;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(216,177,92,.1);
  color:#f4dfab;
  font-size:14px;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.pulse{
  width:9px;
  height:9px;
  background:var(--gold);
  border-radius:50%;
  box-shadow:0 0 0 rgba(216,177,92,.8);
  animation:pulse 2s infinite;
}

@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(216,177,92,.7)}
  70%{box-shadow:0 0 0 10px rgba(216,177,92,0)}
  100%{box-shadow:0 0 0 0 rgba(216,177,92,0)}
}

.info-strip{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin:0 0 42px;
}

.info-item{
  display:flex;
  align-items:center;
  gap:16px;
  padding:20px;
  border:1px solid rgba(216,177,92,.34);
  border-radius:16px;
  background:rgba(255,255,255,.055);
}

.mini-icon{
  width:46px;
  height:46px;
  color:var(--gold);
  flex:0 0 auto;
}

.mini-icon svg,
.icon svg{
  width:100%;
  height:100%;
  fill:none;
  stroke:currentColor;
  stroke-width:2.2;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.info-item h3{
  color:var(--gold-soft);
  font-size:15px;
  margin-bottom:4px;
  text-transform:uppercase;
  letter-spacing:.09em;
}

.info-item p{
  color:var(--muted);
  line-height:1.5;
  font-size:14px;
}

.services{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin:42px 0 42px;
}

.service-card{
  padding:32px 26px;
  min-height:260px;
  border:1px solid var(--line);
  background:linear-gradient(180deg,rgba(255,255,255,.095),rgba(255,255,255,.045));
  border-radius:18px;
  box-shadow:0 18px 55px rgba(0,0,0,.18);
  backdrop-filter:blur(6px);
  text-align:center;
}

.icon{
  width:64px;
  height:64px;
  margin:0 auto 18px;
  color:var(--gold);
}

.service-card p,
.page-card p,
.page-card li{
  color:var(--muted);
  line-height:1.8;
  font-size:16px;
}

.principles{
  margin:10px auto 42px;
  padding:28px;
  border-top:1px solid rgba(216,177,92,.28);
  border-bottom:1px solid rgba(216,177,92,.28);
  text-align:center;
}

.principle-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}

.principle-grid div{
  padding:14px 10px;
  background:rgba(255,255,255,.045);
  border-radius:12px;
  color:var(--muted);
}

.principle-grid span{
  color:var(--gold);
  margin-right:8px;
}

.content-page{
  min-height:560px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:36px 0 54px;
}

.page-card{
  width:100%;
  max-width:920px;
  padding:44px;
  border:1px solid var(--line);
  border-radius:22px;
  background:linear-gradient(180deg,rgba(255,255,255,.09),rgba(255,255,255,.045));
  box-shadow:0 18px 55px rgba(0,0,0,.2);
}

.page-card h1{
  font-size:clamp(42px,6vw,66px);
}

.page-card p{
  margin-bottom:16px;
}

.page-card ul{
  list-style:none;
  display:grid;
  gap:12px;
}

.page-card li::before{
  content:"✓";
  color:var(--gold);
  margin-right:10px;
}

.text-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
  margin-top:12px;
}

.text-grid div{
  padding:22px;
  border:1px solid rgba(216,177,92,.25);
  border-radius:14px;
  background:rgba(255,255,255,.04);
}

.contact-list p{
  font-size:18px;
}

.soft-note{
  padding-top:14px;
  color:#f2dca3 !important;
}

.footer{
  padding-top:24px;
  border-top:1px solid rgba(216,177,92,.25);
}

.footer-grid{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:16px 28px;
  color:#dce3f3;
  font-size:14px;
}

.footer-icon{
  color:var(--gold);
}

@media(max-width:920px){
  .topbar{
    flex-direction:column;
  }
  .nav{
    justify-content:center;
  }
  .info-strip,
  .services,
  .text-grid{
    grid-template-columns:1fr;
  }
  .principle-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:560px){
  .site-shell{padding-top:18px}
  .brand img{width:210px;max-width:80vw}
  .nav{font-size:12px;gap:12px}
  .hero{min-height:520px}
  .eyebrow{font-size:11px;letter-spacing:.14em}
  .mission{line-height:1.75}
  .page-card{padding:28px 22px}
  .principle-grid{grid-template-columns:1fr}
  .footer-grid{flex-direction:column;align-items:center;text-align:center}
}
