@import url("https://fonts.googleapis.com/css2?family=Fraunces:wght@600;700&family=Manrope:wght@500;600;700;800&display=swap");

:root{
  --shell-bg:#f5f1e8;
  --shell-bg-deep:#0f172a;
  --shell-paper:#fffdf8;
  --shell-paper-strong:#ffffff;
  --shell-ink:#0f172a;
  --shell-muted:#5a6578;
  --shell-line:rgba(15,23,42,.12);
  --shell-line-strong:rgba(15,23,42,.2);
  --shell-accent:#db7c26;
  --shell-accent-strong:#c95b11;
  --shell-cool:#145b9a;
  --shell-cool-soft:#d9ebff;
  --shell-shadow:0 24px 60px rgba(15,23,42,.12);
  --shell-radius-xl:28px;
  --shell-radius-lg:20px;
  --shell-radius-md:14px;
  --shell-content:1380px;
  --shell-font-display:"Fraunces","Iowan Old Style","Palatino Linotype","Book Antiqua",Georgia,serif;
  --shell-font-body:"Manrope","Trebuchet MS","Segoe UI Variable Text","Segoe UI",sans-serif;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body.site-shell-body{
  margin:0;
  min-height:100vh;
  color:var(--shell-ink);
  background:
    radial-gradient(circle at top left, rgba(219,124,38,.18), transparent 34%),
    radial-gradient(circle at top right, rgba(20,91,154,.16), transparent 38%),
    linear-gradient(180deg, #f7f0e3 0%, #f6f7fb 32%, #f7fafc 100%);
  font-family:var(--shell-font-body);
}

img{max-width:100%;display:block}
a{color:inherit}

.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

.site-shell-bg{
  position:fixed;
  inset:0;
  pointer-events:none;
  overflow:hidden;
  z-index:-1;
}

.site-shell-bg__orb{
  position:absolute;
  border-radius:50%;
  filter:blur(20px);
  opacity:.7;
}

.site-shell-bg__orb--amber{
  width:28rem;
  height:28rem;
  left:-8rem;
  top:-6rem;
  background:radial-gradient(circle, rgba(219,124,38,.34) 0%, rgba(219,124,38,.06) 62%, transparent 78%);
}

.site-shell-bg__orb--blue{
  width:34rem;
  height:34rem;
  right:-12rem;
  top:3rem;
  background:radial-gradient(circle, rgba(20,91,154,.28) 0%, rgba(20,91,154,.06) 62%, transparent 80%);
}

.site-shell-bg__grid{
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.28) 1px, transparent 1px);
  background-size:48px 48px;
  mask-image:linear-gradient(180deg, rgba(0,0,0,.18), transparent 72%);
}

.site-shell-topbar{
  position:sticky;
  top:0;
  z-index:1200;
  backdrop-filter:blur(18px);
  background:linear-gradient(90deg, rgba(10,18,32,.96), rgba(22,40,68,.92));
  color:#edf4ff;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.site-shell-topbar__inner,
.site-shell-header__inner,
.site-shell-main,
.site-shell-footer{
  width:min(calc(100% - 32px), var(--shell-content));
  margin:0 auto;
}

.site-shell-topbar__inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  min-height:38px;
  font-size:13px;
}

.site-shell-topbar__inner p{margin:0;color:#d7e2f7}
.site-shell-topbar__actions{display:flex;gap:14px;flex-wrap:wrap}
.site-shell-topbar__actions a{text-decoration:none;font-weight:700}

.site-shell-header{
  position:sticky;
  top:42px;
  z-index:1150;
  padding:12px 0 0;
}

.site-shell-header__inner{
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:18px;
  padding:18px 20px;
  border:1px solid rgba(255,255,255,.6);
  border-radius:24px;
  backdrop-filter:blur(18px);
  background:linear-gradient(180deg, rgba(255,252,247,.84), rgba(255,255,255,.72));
  box-shadow:0 26px 64px rgba(15,23,42,.12);
}

.site-shell-header.is-scrolled .site-shell-header__inner{background:rgba(255,255,255,.92)}

.site-shell-brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  min-width:0;
}

.site-shell-brand__mark{
  display:grid;
  place-items:center;
  width:52px;
  height:52px;
  border-radius:18px;
  background:
    linear-gradient(145deg, rgba(219,124,38,.9), rgba(201,91,17,.95)),
    linear-gradient(180deg, rgba(255,255,255,.24), transparent);
  color:#fff7ef;
  font:800 18px/1 var(--shell-font-body);
  letter-spacing:.08em;
  box-shadow:0 16px 30px rgba(201,91,17,.28);
}

.site-shell-brand__copy{
  display:grid;
  gap:2px;
}

.site-shell-brand__copy strong{
  font:700 clamp(18px, 1.9vw, 22px)/1 var(--shell-font-display);
  letter-spacing:.02em;
}

.site-shell-brand__copy small{
  color:var(--shell-muted);
  font-size:12px;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.site-shell-nav{
  display:flex;
  justify-content:center;
  gap:8px;
  flex-wrap:wrap;
  align-items:center;
}

.site-shell-nav__item{
  position:relative;
}

.site-shell-nav__link,
.site-shell-nav__trigger,
.site-shell-pill,
.site-shell-toggle{
  border-radius:999px;
  text-decoration:none;
  font-weight:800;
}

.site-shell-nav__link,
.site-shell-nav__trigger{
  padding:11px 15px;
  color:#203048;
  transition:background-color .25s ease,color .25s ease,transform .25s ease;
}

.site-shell-nav__link{
  display:inline-flex;
  align-items:center;
}

.site-shell-nav__trigger{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:38px;
  border:0;
  background:transparent;
  cursor:pointer;
  padding-inline:12px;
}

.site-shell-nav__trigger-icon{
  width:10px;
  height:10px;
  border-right:2px solid currentColor;
  border-bottom:2px solid currentColor;
  transform:rotate(45deg) translateY(-1px);
  transition:transform .25s ease;
}

.site-shell-nav__item.is-open .site-shell-nav__trigger-icon{
  transform:rotate(225deg) translateY(-1px);
}

.site-shell-nav__link:hover,
.site-shell-nav__link.is-active,
.site-shell-nav__trigger:hover,
.site-shell-nav__trigger.is-active,
.site-shell-nav__item.is-open > .site-shell-nav__link,
.site-shell-nav__item.is-open > .site-shell-nav__trigger{
  background:rgba(20,91,154,.11);
  color:var(--shell-cool);
  transform:translateY(-1px);
}

.site-shell-nav__item.is-active > .site-shell-nav__link,
.site-shell-nav__item.is-active > .site-shell-nav__trigger{
  background:rgba(20,91,154,.09);
  color:var(--shell-cool);
}

.site-shell-submenu{
  position:absolute;
  left:0;
  top:calc(100% + 14px);
  min-width:320px;
  max-width:420px;
  padding:18px;
  border:1px solid rgba(255,255,255,.72);
  border-radius:22px;
  background:rgba(255,252,247,.96);
  backdrop-filter:blur(18px);
  box-shadow:0 24px 56px rgba(15,23,42,.18);
  opacity:0;
  visibility:hidden;
  transform:translateY(8px);
  pointer-events:none;
  transition:opacity .22s ease,transform .22s ease,visibility .22s ease;
}

.site-shell-nav__item.is-open > .site-shell-submenu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
  pointer-events:auto;
}

.site-shell-submenu__intro{
  padding-bottom:12px;
  border-bottom:1px solid var(--shell-line);
}

.site-shell-submenu__eyebrow{
  margin:0 0 6px;
  color:var(--shell-cool);
  font-size:11px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.site-shell-submenu__summary{
  margin:0;
  color:var(--shell-muted);
  font-size:14px;
  line-height:1.55;
}

.site-shell-submenu__links{
  display:grid;
  gap:8px;
  padding-top:12px;
}

.site-shell-submenu__links a{
  display:flex;
  align-items:center;
  min-height:44px;
  padding:10px 14px;
  border-radius:16px;
  border:1px solid transparent;
  color:#233149;
  text-decoration:none;
  font-weight:700;
  transition:border-color .22s ease,background-color .22s ease,transform .22s ease,color .22s ease;
}

.site-shell-submenu__links a:hover,
.site-shell-submenu__links a.is-active{
  border-color:rgba(20,91,154,.12);
  background:rgba(20,91,154,.08);
  color:var(--shell-cool);
  transform:translateX(2px);
}

.site-shell-cta{
  display:flex;
  gap:10px;
  justify-content:flex-end;
  flex-wrap:wrap;
}

.site-shell-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:11px 16px;
  border:1px solid transparent;
}

.site-shell-pill--soft{
  background:#fff;
  border-color:var(--shell-line);
}

.site-shell-pill--accent{
  color:#fff8f3;
  background:linear-gradient(135deg, var(--shell-accent), var(--shell-accent-strong));
  box-shadow:0 14px 26px rgba(201,91,17,.22);
}

.site-shell-toggle{
  display:none;
  border:1px solid var(--shell-line);
  background:#fff;
  color:var(--shell-ink);
  padding:10px 14px;
  font:800 14px/1 var(--shell-font-body);
}

.site-shell-main{
  position:relative;
  padding:20px 0 10px;
}

.site-shell-footer{
  padding:28px 0 32px;
}

.site-shell-footer__band{
  display:flex;
  justify-content:space-between;
  gap:18px;
  align-items:center;
  padding:24px 26px;
  border-radius:30px;
  background:linear-gradient(135deg, #122038, #26456d);
  color:#eaf1fd;
  box-shadow:0 30px 60px rgba(15,23,42,.2);
}

.site-shell-footer__band h2{
  margin:6px 0 0;
  max-width:740px;
  font-size:clamp(26px, 3vw, 40px);
  font-family:var(--shell-font-display);
}

.site-shell-footer__eyebrow{
  margin:0;
  color:#a3d2ff;
  font-size:12px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.site-shell-footer__actions{display:flex;gap:10px;flex-wrap:wrap}

.site-shell-footer__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:11px 16px;
  border-radius:999px;
  text-decoration:none;
  font-weight:800;
}

.site-shell-footer__btn--call{background:#fff;color:#0f172a}
.site-shell-footer__btn--wa{background:linear-gradient(135deg, #25b45e, #147c43);color:#fff}

.site-shell-footer__grid{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr;
  gap:16px;
  padding:18px 2px 0;
}

.site-shell-footer__card{
  padding:18px;
  border-radius:22px;
  border:1px solid var(--shell-line);
  background:rgba(255,255,255,.72);
  box-shadow:0 16px 30px rgba(15,23,42,.06);
}

.site-shell-footer__grid h3{
  margin:0 0 10px;
  font-family:var(--shell-font-display);
  font-size:24px;
}

.site-shell-footer__grid p,
.site-shell-footer__grid li,
.site-shell-footer__grid a{color:#314155}

.site-shell-footer__grid ul{list-style:none;padding:0;margin:0;display:grid;gap:8px}

@media (max-width:980px){
  .site-shell-header__inner{
    grid-template-columns:auto auto;
    grid-template-areas:
      "brand toggle"
      "nav nav"
      "cta cta";
  }

  .site-shell-brand{grid-area:brand}
  .site-shell-toggle{display:inline-flex;grid-area:toggle;justify-self:end}
  .site-shell-nav{
    grid-area:nav;
    display:none;
    justify-content:flex-start;
    flex-direction:column;
    align-items:stretch;
    padding-top:6px;
  }
  .site-shell-nav.is-open{display:flex}
  .site-shell-nav__item{
    display:grid;
    grid-template-columns:1fr auto;
    align-items:start;
  }
  .site-shell-nav__link,
  .site-shell-nav__trigger{
    width:100%;
    min-height:46px;
    justify-content:flex-start;
  }
  .site-shell-nav__trigger{
    width:auto;
    justify-content:center;
  }
  .site-shell-submenu{
    position:static;
    min-width:0;
    max-width:none;
    margin-top:8px;
    padding:14px;
    opacity:1;
    visibility:visible;
    transform:none;
    pointer-events:auto;
    display:none;
    grid-column:1 / -1;
  }
  .site-shell-nav__item.is-open > .site-shell-submenu{display:block}
  .site-shell-cta{grid-area:cta;justify-content:flex-start}
}

@media (max-width:760px){
  .site-shell-topbar{position:relative}
  .site-shell-header{top:0}
  .site-shell-topbar__inner{
    flex-direction:column;
    align-items:flex-start;
    padding:10px 0;
  }
  .site-shell-main,
  .site-shell-topbar__inner,
  .site-shell-header__inner,
  .site-shell-footer{
    width:min(calc(100% - 20px), var(--shell-content));
  }
  .site-shell-footer__band{flex-direction:column;align-items:flex-start}
  .site-shell-footer__grid{grid-template-columns:1fr}
}
