/* =========================
   REBUILD LAYER — FIRST ORB ONLY
========================= */

/* first orb section layout */
.ownership-first-layout,
.orb-layout-centered{
  width: min(1080px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 2rem;
}

.ownership-first-layout .orb{
  position: relative;
  overflow: visible;

  width: min(500px, 78vw);
  aspect-ratio: 1 / 1;
  border-radius: 50%;

  display: grid;
  place-items: center;
  text-align: center;

  padding: 3rem 2.4rem;

  background: radial-gradient(
    circle,
    rgba(255,255,255,0.92) 0%,
    rgba(255,255,255,0.52) 42%,
    rgba(255,255,255,0.14) 68%,
    rgba(255,255,255,0) 82%
  );

  box-shadow: 0 0 80px rgba(255,255,255,0.12);
}

.ownership-first-layout .orb::before{
  content: "";
  position: absolute;
  inset: 12% 14%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255,255,255,0.22) 0%,
    rgba(255,255,255,0.08) 45%,
    rgba(255,255,255,0) 75%
  );
  pointer-events: none;
}

/* =========================
   GLOBAL MINI FOOTER
========================= */

.site-mini-footer{
  width: min(520px, 92vw);
  margin: 1.1rem auto 1.5rem;
  padding: 0.5rem 0.95rem;
  position: relative;
  z-index: 3;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.7rem;

  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(
    180deg,
    rgba(6, 21, 7, 0.52) 40%,
    rgba(48, 58, 49, 0.36) 100%
  );
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  font-size: clamp(0.72rem, 1.5vw, 0.82rem);
  line-height: 1.2;
}

.page-home .site-mini-footer{
  scroll-snap-align: none;
  scroll-snap-stop: normal;
}

.site-mini-footer-text{
  margin: 0;
  color: rgba(241, 241, 241, 0.9);
}

.site-mini-footer-link{
  color: rgba(241, 241, 241, 0.92);
  text-decoration: none;
  border-bottom: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.1rem;
  height: 1.1rem;
  margin-left: 1rem;
  opacity: 0.85;
}

.site-mini-footer-link svg{
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.site-mini-footer-link:hover,
.site-mini-footer-link:focus-visible{
  color: #ffffff;
  opacity: 1;
}

.orb-content-ownership{
  width: min(100%, 420px);
  display: grid;
  justify-items: center;
  transform: translateY(-10px);
}

.orb-core-ownership{
  width: 100%;
  display: grid;
  justify-items: center;
}

.orb-title-ownership{
  position: relative;
  margin: 0;
  max-width: 14ch;
  font-size: clamp(1.6rem, 2.4vw, 2.3rem);
  line-height: 1.02;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: rgba(34, 34, 34, 0.92);
  text-align: center;
  text-wrap: balance;
}

/* ===== OWNERSHIP DRAWER — wider + shorter ===== */

.orb-panel-ownership{
  width: min(1180px, 96vw);
  margin: 0 auto;
  padding: 2.5rem 2.75rem 2.75rem;
  border-radius: 30px;

  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(
    180deg,
    rgba(6, 21, 7, 0.78) 40%,
    rgba(48, 58, 49, 0.62) 100%
  );
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.orb-panel-inner-ownership{
  width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.orb-copy-ownership{
  display: grid;
  gap: 1.4rem;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  text-align: center;
}

.orb-title-panel{
  margin: 0 auto;
  width: 100%;
  max-width: 900px;

  text-align: center;

  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  line-height: 1.15;
  color: #f1f1f1;

  text-wrap: balance; /* keeps it clean instead of stacking awkwardly */
}

.orb-divider-ownership{
  width: 360px;
  max-width: 32vw;
  height: 1px;
  margin: 0.45rem auto 1rem auto;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.32) 18%,
    rgba(255,255,255,0.42) 50%,
    rgba(255,255,255,0.32) 82%,
    rgba(255,255,255,0) 100%
  );
  display: block;
}

.orb-body-wrap{
  width: min(100%, 980px);
  margin: 0 auto 0.6rem; /* adds space below paragraphs */
}

.orb-body-ownership{
  margin: 0;
  color: #f1f1f1;
  text-align: center;
  font-size: 0.98rem;
  line-height: 1.7;
}

.orb-list-ownership{
  width: min(100%, 980px);
  margin: 1.2rem auto 0;
  padding-left: 0;
  list-style-position: inside;
  display: grid;
  gap: 0.75rem;
  color: #f1f1f1;
  text-align: center;
}

.orb-list-ownership li{
  line-height: 1.55;
}

.ownership-first-layout{
  width: 100%;
  max-width: none;
  display: grid;
  justify-content: center;
  justify-items: center;
}

@media (max-width: 900px){
  .orb-panel-ownership{
    width: min(96vw, 96vw);
    padding: 1.35rem 1.25rem;
  }

  .orb-title-panel{
    max-width: 14ch;
  }

  .orb-body-wrap,
  .orb-list-ownership{
    width: min(100%, 760px);
  }
}

/* =========================
   REBUILD LAYER — ORB 2 / OUR PROCESS
   static only, no accordion behavior yet
========================= */

.orb-layout-right.process-layout{
  width: min(1180px, 94vw);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 360px minmax(0, 720px);

  justify-content: center;
  align-items: center;

  column-gap: 5rem;
}

/* orb */
.orb-content-process{
  width: min(100%, 420px);
  display: grid;
  justify-items: center;
  transform: translateY(-10px);
}

.orb-core-process{
  width: 100%;
  display: grid;
  justify-items: center;
}

.orb-title-process{
  position: relative;
  margin: 0;
  max-width: 14ch;
  font-size: clamp(1.6rem, 2.4vw, 2.3rem);
  line-height: 0.98;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: rgba(34, 34, 34, 0.92);
  text-align: center;
  text-wrap: balance;
}

/* drawer shell */
.orb-drawer-process{
  width: 100%;
  max-width: none;
  margin: 0;
  display: block;
  opacity: 1;
  overflow: visible;
  max-height: none;
  pointer-events: auto;

  justify-self: end;
  padding-left: 5rem;
}

.orb-panel-process{
  width: min(700px, 100%);
  margin: 0 0 0 auto;
  padding: 2.35rem 2.5rem 2.5rem;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(
    180deg,
    rgba(6, 21, 7, 0.78) 40%,
    rgba(48, 58, 49, 0.62) 100%
  );
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.orb-panel-inner-process{
  width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.orb-copy-process{
  display: grid;
  gap: 1.35rem;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  text-align: center;
}

.orb-divider-process{
  width: 360px;
  max-width: 32vw;
  height: 1px;
  margin: 0.45rem auto 1rem auto;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.32) 18%,
    rgba(255,255,255,0.42) 50%,
    rgba(255,255,255,0.32) 82%,
    rgba(255,255,255,0) 100%
  );
  display: block;
}

.orb-body-process{
  margin: 0;
  color: #f1f1f1;
  text-align: center;
  font-size: 0.98rem;
  line-height: 1.7;
}

/* static accordion cards */
.process-accordion-static{
  display: grid;
  gap: 0.95rem;
  margin-top: 1.1rem;
}

.service-item-process{
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
  transition: background 0.2s ease, border 0.2s ease;
}

.service-item-process:not(.is-open){
  opacity: 0.85;
}

.service-item-process.is-open{
  opacity: 1;
  background: rgba(255,255,255,0.12);
}

.service-item-process:hover{
  background: rgba(255,255,255,0.10);
}

.service-panel-process{
  display: grid;
  grid-template-rows: 0fr;
  border-top: 1px solid rgba(255,255,255,0.08);
  opacity: 0;
  transition:
    grid-template-rows 0.38s ease,
    opacity 0.28s ease;
}

.service-item-process.is-open .service-panel-process{
  grid-template-rows: 1fr;
  opacity: 1;
}

.service-item-process.is-open .icon-process{
  transform: rotate(180deg);
}

.service-toggle-process{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0.85rem;
  text-align: center;
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

.service-toggle-inner{
  flex: 1;
  max-width: 85%;
  margin: 0 auto;
}

.service-title-process{
  color: #f1f1f1;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
}

.icon-process{
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  line-height: 1;
  flex-shrink: 0;
  margin-left: 0.5rem;
  margin-right: 0.75rem;
  transition:
    transform 0.32s ease,
    opacity 0.24s ease;
}

.service-toggle-process:hover .icon-process{
  opacity: 1;
  transform: translateY(-1px);
}

.service-panel-inner-process{
  overflow: hidden;
  padding: 0 1.5rem;
}

.service-desc-process{
  margin: 0 auto;
  max-width: 500px;
  padding: 1.5rem 0 1.6rem;
  color: rgba(241,241,241,0.94);
  text-align: center;
  font-size: 0.96rem;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(-8px);
  transition:
    opacity 0.24s ease,
    transform 0.32s ease;
}

.service-item-process.is-open .service-desc-process{
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.08s;
}

.service-desc-process br + br{
  display: block;
  margin-top: 0.6rem;
  content: "";
}

@media (max-width: 980px){
  .orb-layout-right.process-layout{
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 1.5rem;
  }

  .orb-panel-process{
    width: min(96vw, 96vw);
    padding: 1.6rem 1.25rem 1.8rem;
  }

  .orb-divider-process{
    width: 260px;
    max-width: 55vw;
  }
}

/* =========================
   ORB 2 FIX — layout + orb match
========================= */

.process-layout .orb.float-left{
  margin-left: 0 !important;
  margin-right: 0 !important;
  justify-self: center;
}
.process-layout .orb{
  position: relative;
  overflow: visible;

  width: min(470px, 74vw);
  aspect-ratio: 1 / 1;
  border-radius: 50%;

  display: grid;
  place-items: center;
  text-align: center;

  padding: 3rem 2.4rem;

  background: radial-gradient(
    circle,
    rgba(255,255,255,0.92) 0%,
    rgba(255,255,255,0.52) 42%,
    rgba(255,255,255,0.14) 68%,
    rgba(255,255,255,0) 82%
  );

  box-shadow: 0 0 80px rgba(255,255,255,0.12);
}

.process-layout .orb::before{
  content: "";
  position: absolute;
  inset: 12% 14%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255,255,255,0.22) 0%,
    rgba(255,255,255,0.08) 45%,
    rgba(255,255,255,0) 75%
  );
  pointer-events: none;
}
.orb-title-process{
  position: relative;
  margin: 0;
  max-width: 10ch;
  font-size: clamp(1.7rem, 2.6vw, 2.5rem);
  line-height: 0.98;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: rgba(34, 34, 34, 0.92);
  text-align: center;
  text-wrap: balance;
}

/* =========================
   REBUILD LAYER — ORB 3 / FOUNDATIONS
   static cards first, no carousel motion yet
========================= */

.orb-layout-left.foundations-layout{
  width: min(1280px, 96vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 820px) 320px;
  justify-content: center;
  align-items: center;
  column-gap: 4.5rem;
}

/* orb */
.foundations-layout .orb.float-right{
  margin-left: 0 !important;
  margin-right: 0 !important;
  justify-self: center;
}

.foundations-layout .orb{
  position: relative;
  overflow: visible;

  width: min(470px, 74vw);
  aspect-ratio: 1 / 1;
  border-radius: 50%;

  display: grid;
  place-items: center;
  text-align: center;

  padding: 3rem 2.4rem;

  background: radial-gradient(
    circle,
    rgba(255,255,255,0.92) 0%,
    rgba(255,255,255,0.52) 42%,
    rgba(255,255,255,0.14) 68%,
    rgba(255,255,255,0) 82%
  );

  box-shadow: 0 0 80px rgba(255,255,255,0.12);
}

.foundations-layout .orb::before{
  content: "";
  position: absolute;
  inset: 12% 14%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255,255,255,0.22) 0%,
    rgba(255,255,255,0.08) 45%,
    rgba(255,255,255,0) 75%
  );
  pointer-events: none;
}

.orb-content-foundations{
  width: min(100%, 420px);
  display: grid;
  justify-items: center;
  transform: translateY(-8px);
}

.orb-core-foundations{
  width: 100%;
  display: grid;
  justify-items: center;
}

.orb-title-foundations{
  position: relative;
  margin: 0;
  max-width: 14ch;
  font-size: clamp(1.6rem, 2.4vw, 2.3rem);
  line-height: 1.02;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: rgba(34, 34, 34, 0.92);
  text-align: center;
  text-wrap: balance;
}

/* drawer */
.orb-drawer-foundations{
  width: 100%;
  max-width: none;
  margin: 0;
  display: block;
  opacity: 1;
  overflow: hidden;
  max-height: none;
  pointer-events: auto;
  padding-right: 3rem;
  justify-self: start;
}

.orb-panel-foundations{
  width: 100%;
  margin: 0 auto 0 0;
  padding: 2.15rem 2rem 2.3rem;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(
    180deg,
    rgba(6, 21, 7, 0.78) 40%,
    rgba(48, 58, 49, 0.62) 100%
  );
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.orb-panel-inner-foundations{
  width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.orb-copy-foundations{
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  text-align: center;
}

.orb-copy-foundations .orb-body-wrap{
  width: 100%;
  max-width: 700px;
  margin: 0 auto 0.1rem;
}

.orb-divider-foundations{
  width: 360px;
  max-width: 32vw;
  height: 1px;
  margin: 0.45rem auto 1rem auto;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.32) 18%,
    rgba(255,255,255,0.42) 50%,
    rgba(255,255,255,0.32) 82%,
    rgba(255,255,255,0) 100%
  );
  display: block;
}

.orb-panel-foundations .orb-title-panel{
  max-width: none;
  width: 100%;

  font-size: clamp(1.7rem, 2.5vw, 2.35rem);
  line-height: 1.15;

  white-space: nowrap;
}

@media (max-width: 900px){
  .orb-panel-foundations .orb-title-panel{
    white-space: normal; /* allow wrap on mobile */
  }
}

.orb-body-foundations{
  margin: 0 auto;
  max-width: 560px;
  color: #f1f1f1;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.92;
}

.orb-body-foundations + .orb-body-foundations{
  margin-top: 0.85rem;
}

.orb-note-foundations{
  font-size: 0.84rem;
  line-height: 1.55;
  opacity: 0.68;
}

/* static horizontal cards */
.templates-carousel-foundations{
  width: 100%;
  overflow-x: auto;
  overflow-y: visible;
  margin-top: 0.85rem;
  padding-bottom: 0.4rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.templates-carousel-foundations::-webkit-scrollbar{
  display: none;
}

.templates-track-foundations{
  display: flex;
  gap: 1rem;
  align-items: stretch;
  width: max-content;
}

.template-card-foundations{
  flex: 0 0 260px;
  display: grid;
  align-content: start;
  gap: 0.8rem;
  padding: 1rem;
  min-height: 100%;
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
  scroll-snap-align: start;
}

.template-image-foundations{
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.template-title-foundations{
  margin: 0;
  color: #f1f1f1;
  font-size: 1rem;
  line-height: 1.25;
}

.template-copy-foundations{
  margin: 0;
  color: rgba(241,241,241,0.9);
  font-size: 0.92rem;
  line-height: 1.5;
}

.button-foundations{
  margin-top: 0.35rem;
  justify-self: center;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.16);
  color: #f1f1f1;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.button-foundations:hover{
  background: rgba(255,255,255,0.18);
  transform: translateY(-1px);
}

.template-card-soon{
  flex: 0 0 260px;
  display: grid;
  place-content: center;
  text-align: center;

  padding: 2rem 1.4rem;
  border-radius: 20px;

  background: rgba(255,255,255,0.05);
  border: 1px dashed rgba(255,255,255,0.14);

  backdrop-filter: blur(6px);

  color: #f1f1f1;
  opacity: 0.85;

  scroll-snap-align: start;
}

.template-card-soon::before{
  content: "Coming Soon";
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 0.6rem;
}

.template-image-soon{
  object-fit: contain;
  background: rgba(255,255,255,0.03);
}

@media (max-width: 1100px){
  .orb-layout-left.foundations-layout{
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 1.6rem;
  }

  .orb-drawer-foundations{
    padding-right: 0;
  }

  .orb-panel-foundations{
    width: min(96vw, 96vw);
    margin: 0 auto;
    padding: 1.8rem 1.25rem 2rem;
  }

  .orb-divider-foundations{
    width: 260px;
    max-width: 55vw;
  }
}

/* =========================
   REBUILD LAYER — ORB 4 / OFFERINGS
   static only, no drawer JS yet
========================= */

.orb-layout-centered.orb-layout-offerings{
  width: 100%;
  max-width: none;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: center;
  gap: 2rem;
}

/* orb */
.orb-layout-offerings .orb.float-left{
  margin-left: auto !important;
  margin-right: auto !important;
  justify-self: center;
}

.orb-layout-offerings .orb{
  position: relative;
  overflow: visible;

  width: min(470px, 74vw);
  aspect-ratio: 1 / 1;
  border-radius: 50%;

  display: grid;
  place-items: center;
  text-align: center;

  padding: 3rem 2.4rem;

  background: radial-gradient(
    circle,
    rgba(255,255,255,0.92) 0%,
    rgba(255,255,255,0.52) 42%,
    rgba(255,255,255,0.14) 68%,
    rgba(255,255,255,0) 82%
  );

  box-shadow: 0 0 80px rgba(255,255,255,0.12);
}

.orb-layout-offerings .orb::before{
  content: "";
  position: absolute;
  inset: 12% 14%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255,255,255,0.22) 0%,
    rgba(255,255,255,0.08) 45%,
    rgba(255,255,255,0) 75%
  );
  pointer-events: none;
}

.orb-content-offerings{
  width: min(100%, 420px);
  display: grid;
  justify-items: center;
  transform: translateY(-8px);
}

.orb-core-offerings{
  width: 100%;
  display: grid;
  justify-items: center;
}

.orb-title-offerings{
  position: relative;
  margin: 0;
  max-width: 10ch;
  font-size: clamp(1.7rem, 2.6vw, 2.45rem);
  line-height: 0.98;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: rgba(34, 34, 34, 0.92);
  text-align: center;
  text-wrap: balance;
}

/* drawer shell */
.orb-drawer-offerings{
  width: 100%;
  max-width: none;
  margin: 0;
  display: block;
  opacity: 1;
  overflow: visible;
  max-height: none;
  pointer-events: auto;
}

.orb-panel-offerings{
  width: min(1180px, 96vw);
  margin: 0 auto;
  padding: 2.5rem 2.75rem 2.75rem;
  border-radius: 30px;

  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(
    180deg,
    rgba(6, 21, 7, 0.78) 40%,
    rgba(48, 58, 49, 0.62) 100%
  );
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.orb-panel-inner-offerings{
  width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.orb-copy-offerings{
  display: grid;
  gap: 1.4rem;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  text-align: center;
}

.orb-copy-offerings .orb-title-panel{
  margin: 0 auto;
  width: 100%;
  max-width: 900px;
  text-align: center;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  line-height: 1.15;
  color: #f1f1f1;
}

.orb-divider-offerings{
  width: 360px;
  max-width: 32vw;
  height: 1px;
  margin: 0.45rem auto 1rem auto;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.32) 18%,
    rgba(255,255,255,0.42) 50%,
    rgba(255,255,255,0.32) 82%,
    rgba(255,255,255,0) 100%
  );
  display: block;
}

.orb-copy-offerings .orb-body-wrap{
  width: min(100%, 980px);
  margin: 0 auto 0.6rem;
}

.orb-body-offerings{
  margin: 0;
  color: #f1f1f1;
  text-align: center;
  font-size: 0.98rem;
  line-height: 1.7;
}

/* offerings stack */
.offerings-accordion-static{
  width: min(100%, 980px);
  margin: 1.2rem auto 0;
  display: grid;
  gap: 0.95rem;
}

.service-item-offerings{
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
  transition: background 0.2s ease, border 0.2s ease;
}

.service-item-offerings:not(.is-open){
  opacity: 0.85;
}

.service-item-offerings.is-open{
  opacity: 1;
  background: rgba(255,255,255,0.12);
}

.service-item-offerings:hover{
  background: rgba(255,255,255,0.10);
}

.service-toggle-offerings{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  min-height: 88px;
  text-align: center;
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

.service-toggle-inner-offerings{
  flex: 1;
  max-width: 82%;
  margin: 0 auto;
  display: grid;
  gap: 0.12rem;
  justify-items: center;
  align-content: center;
}

.service-title-offerings{
  color: #f1f1f1;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
}

.service-price-offerings{
  color: rgba(241,241,241,0.74);
  font-size: 0.9rem;
  line-height: 1.3;
  text-align: center;
}

.icon-offerings{
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  line-height: 1;
  flex-shrink: 0;
  margin-left: 0.5rem;
  margin-right: 0.75rem;
  transition:
    transform 0.32s ease,
    opacity 0.24s ease;
}

.service-toggle-offerings:hover .icon-offerings{
  opacity: 1;
  transform: translateY(-1px);
}

.service-panel-offerings{
  display: grid;
  grid-template-rows: 0fr;
  border-top: 1px solid rgba(255,255,255,0.08);
  opacity: 0;
  transition:
    grid-template-rows 0.38s ease,
    opacity 0.28s ease;
}

.service-item-offerings.is-open .service-panel-offerings{
  grid-template-rows: 1fr;
  opacity: 1;
}

.service-item-offerings.is-open .icon-offerings{
  transform: rotate(180deg);
}

.service-panel-inner-offerings-card{
  overflow: hidden;
  padding: 0 1.75rem;
  transform: translateX(-18px);
}

.heading-3-offerings{
  margin: 1.25rem auto 0.85rem;
  max-width: 36ch;
  color: #f1f1f1;
  text-align: center;
  font-size: 1.02rem;
  line-height: 1.45;
  font-weight: 600;
}

.service-desc-offerings{
  margin: 0 0 0.7rem;
  color: rgba(241,241,241,0.95);
  text-align: center;
  font-size: 0.94rem;
  line-height: 1.45;
}

.list-2-offerings{
  margin: 0 0 1.15rem;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 0.58rem;
  color: rgba(241,241,241,0.92);
  text-align: center;
}

.list-item-offerings{
  line-height: 1.48;
}

.list-item-offerings + .list-item-offerings{
  margin-top: 0.02rem;
}

.paragraph-3-offerings{
  margin: 0 auto 1.35rem;
  max-width: 46ch;
  color: rgba(241,241,241,0.82);
  font-size: 0.92rem;
  line-height: 1.62;
  text-align: center;
}

@media (max-width: 980px){
  .orb-layout-centered.orb-layout-offerings{
  width: min(1080px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 2rem;
}

  .orb-panel-offerings{
    width: min(96vw, 96vw);
    padding: 1.7rem 1.3rem 1.85rem;
  }

  .orb-copy-offerings .orb-title-panel{
    max-width: 14ch;
  }

  .orb-divider-offerings{
    width: min(300px, 56vw);
  }

  .orb-copy-offerings .orb-body-wrap,
  .orb-body-offerings,
  .offerings-accordion-static{
    max-width: 100%;
  }
}

@media (max-width: 900px){
  .orb-panel-offerings{
    width: min(96vw, 96vw);
    padding: 1.35rem 1.25rem;
  }

  .orb-copy-offerings .orb-title-panel{
    max-width: 14ch;
  }

  .orb-copy-offerings .orb-body-wrap,
  .offerings-accordion-static{
    width: min(100%, 760px);
  }

    .service-toggle-offerings{
    padding: 1rem 0.85rem 0.95rem;
  }

  .service-toggle-inner-offerings{
    max-width: 84%;
  }

  .service-panel-inner-offerings-card{
    padding: 0 1.1rem;
  }

  .heading-3-offerings{
    margin-top: 1rem;
    max-width: 30ch;
  }

  .paragraph-3-offerings{
    margin-bottom: 1.1rem;
  }
}

/* =========================
   REBUILD LAYER — ORB 5 / CONTACT
   static only, preserve Netlify form
========================= */

.orb-layout-right.contact-layout{
  width: min(1180px, 94vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 360px minmax(0, 720px);
  justify-content: center;
  align-items: center;
  column-gap: 5rem;
}

/* orb */
.contact-layout .orb.float-right{
  margin-left: 0 !important;
  margin-right: 0 !important;
  justify-self: center;
}

.contact-layout .orb{
  position: relative;
  overflow: visible;

  width: min(470px, 74vw);
  aspect-ratio: 1 / 1;
  border-radius: 50%;

  display: grid;
  place-items: center;
  text-align: center;

  padding: 3rem 2.4rem;

  background: radial-gradient(
    circle,
    rgba(255,255,255,0.92) 0%,
    rgba(255,255,255,0.52) 42%,
    rgba(255,255,255,0.14) 68%,
    rgba(255,255,255,0) 82%
  );

  box-shadow: 0 0 80px rgba(255,255,255,0.12);
}

.contact-layout .orb::before{
  content: "";
  position: absolute;
  inset: 12% 14%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255,255,255,0.22) 0%,
    rgba(255,255,255,0.08) 45%,
    rgba(255,255,255,0) 75%
  );
  pointer-events: none;
}

.orb-content-contact{
  width: min(100%, 420px);
  display: grid;
  justify-items: center;
  transform: translateY(-8px);
}

.orb-core-contact{
  width: 100%;
  display: grid;
  justify-items: center;
}

.orb-title-contact{
  position: relative;
  margin: 0;
  max-width: 10ch;
  font-size: clamp(1.7rem, 2.6vw, 2.45rem);
  line-height: 0.98;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: rgba(34, 34, 34, 0.92);
  text-align: center;
  text-wrap: balance;
}

/* drawer */
.orb-drawer-contact{
  width: 100%;
  max-width: none;
  margin: 0;
  display: block;
  opacity: 1;
  overflow: visible;
  max-height: none;
  pointer-events: auto;
  justify-self: end;
  padding-left: 5rem;
}

.orb-panel-contact{
  width: min(700px, 100%);
  margin: 0 0 0 auto;
  padding: 2.35rem 2.5rem 2.5rem;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(
    180deg,
    rgba(6, 21, 7, 0.78) 40%,
    rgba(48, 58, 49, 0.62) 100%
  );
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.orb-panel-inner-contact{
  width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.orb-copy-contact{
  display: grid;
  gap: 1.65rem;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  text-align: center;
}

.orb-divider-contact{
  width: 360px;
  max-width: 32vw;
  height: 1px;
  margin: 0.45rem auto 1rem auto;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.32) 18%,
    rgba(255,255,255,0.42) 50%,
    rgba(255,255,255,0.32) 82%,
    rgba(255,255,255,0) 100%
  );
  display: block;
}

.orb-body-contact{
  margin: 0.4rem auto 0.9rem;
  max-width: 52ch;
  color: #f1f1f1;
  text-align: center;
  font-size: 0.98rem;
  line-height: 1.85;
}

/* form */
.contact-form-orb{
  width: 100%;
  max-width: 560px;
  margin: 0.4rem auto 0;
  display: grid;
  gap: 1.35rem;
}

.contact-form-orb .form-row{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-form-orb .form-field{
  display: grid;
  gap: 0.55rem;
  text-align: left;
}

.contact-form-orb .custom-select-field{
  position: relative;
}

.contact-form-orb .custom-select-hidden{
  position: absolute;
  inset: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-form-orb .custom-select-trigger{
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.08);
  color: #f1f1f1;
  font: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  cursor: pointer;
}

.contact-form-orb .custom-select-value{
  color: #f1f1f1;
}

.contact-form-orb .custom-select-arrow{
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.28s ease;
}

.contact-form-orb .custom-select-field.is-open .custom-select-arrow{
  transform: rotate(180deg);
}

.contact-form-orb .custom-select-menu{
  position: absolute;
  top: calc(100% + 0.45rem);
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  gap: 0.25rem;
  padding: 0.45rem;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(15, 27, 18, 0.96);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.contact-form-orb .custom-select-field.is-open .custom-select-menu{
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.contact-form-orb .custom-select-option{
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #f1f1f1;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.contact-form-orb .custom-select-option:hover,
.contact-form-orb .custom-select-option.is-selected{
  background: rgba(177, 218, 190, 0.22);
}

.contact-form-orb .custom-select-field.is-invalid .custom-select-trigger{
  border-color: rgba(255,255,255,0.28);
}

.contact-form-orb .form-field:has(select)::after{
  content: "▾";
  position: absolute;
  right: 1rem;
  top: calc(50% + 0.8rem);
  transform: translateY(-50%);
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  line-height: 1;
  pointer-events: none;
}

.contact-form-orb label,
.contact-form-orb .form-note{
  color: #f1f1f1;
}

.contact-form-orb input,
.contact-form-orb textarea{
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.08);
  color: #f1f1f1;
  font: inherit;
}

.contact-form-orb input::placeholder,
.contact-form-orb textarea::placeholder{
  color: rgba(241,241,241,0.58);
}

.contact-form-orb textarea{
  resize: vertical;
  min-height: 140px;
}

.contact-form-orb .form-actions{
  display: flex;
  justify-content: center;
  margin-top: 0.2rem;
}

.contact-form-orb .form-note{
  margin: 0.15rem auto 0;
  max-width: 44ch;
  text-align: center;
  font-size: 0.92rem;
  line-height: 1.55;
}



@media (max-width: 980px){
  .orb-layout-right.contact-layout{
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 1.5rem;
  }

  .orb-drawer-contact{
    padding-left: 0;
  }

  .orb-panel-contact{
    width: min(96vw, 96vw);
    margin: 0 auto;
    padding: 1.6rem 1.25rem 1.8rem;
  }

  .orb-divider-contact{
    width: 260px;
    max-width: 55vw;
  }
}

@media (max-width: 768px){
  .contact-form-orb .form-row{
    grid-template-columns: 1fr;
  }
}

/* =========================
   REBUILD OVERRIDE — HERO LOGO + VEIL SOFTEN
========================= */

.nav-panel.transparent .hero-logo{
  width: min(1050px, 86vw) !important;
  max-width: none !important;
  height: auto !important;
  display: block !important;
  transform: translateY(-8vh) !important;
}

.nav-panel.transparent .hero-veil{
  padding: 22px 26px !important;
}

.nav-panel.transparent .hero-veil::before{
  inset: -110% !important;
  background: radial-gradient(
    ellipse at center,
    rgba(189, 248, 228, 0.20) 0%,
    rgba(240,236,230,0.10) 24%,
    rgba(240,236,230,0.04) 46%,
    rgba(240,236,230,0.00) 72%
  ) !important;
  filter: blur(42px) !important;
  opacity: 0.45 !important;
}

@media (max-width: 768px){
  .nav-panel.transparent .hero-logo{
    width: min(500px, 86vw) !important;
    transform: translateY(-0.25vh) !important;
  }

  .nav-panel.transparent .hero-veil{
    padding: 16px 18px !important;
  }
}

/* =========================
   REBUILD OVERRIDE — HERO SCROLL CUE
========================= */

.nav-panel.transparent .scroll-cue{
  position: relative !important;
  top: -30vh !important;
}

/* =========================
   MOBILE ONLY — SCALING, STACKING, SPACING
   Desktop styles above remain unchanged.
========================= */

@media (max-width: 768px){
  .page-home,
  .page-home .home-snap{
    overflow-x: hidden !important;
  }

  .page-home .nav-panel{
    width: 100%;
    min-height: 100svh !important;
    min-height: 100dvh !important;
    padding: clamp(2.5rem, 8vw, 4rem) 1rem !important;
    overflow: visible !important;
  }

  .page-home .nav-panel:last-child{
    padding-bottom: clamp(2.5rem, 8vw, 4rem) !important;
  }

  .page-home .nav-panel.neutral{
    display: grid;
    place-items: center;
  }

  .ownership-first-layout,
  .orb-layout-right.process-layout,
  .orb-layout-left.foundations-layout,
  .orb-layout-centered.orb-layout-offerings,
  .orb-layout-right.contact-layout{
    width: min(100%, 94vw) !important;
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    align-items: center !important;
    gap: clamp(1.1rem, 4.5vw, 1.75rem) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    column-gap: 0 !important;
  }

  .float-left,
  .float-center,
  .float-right,
  .process-layout .orb.float-left,
  .foundations-layout .orb.float-right,
  .orb-layout-offerings .orb.float-left,
  .contact-layout .orb.float-right{
    margin-left: auto !important;
    margin-right: auto !important;
    justify-self: center !important;
  }

    /* Force every mobile section to flow: orb first, drawer second */
  .ownership-first-layout,
  .orb-layout-right.process-layout,
  .orb-layout-left.foundations-layout,
  .orb-layout-centered.orb-layout-offerings,
  .orb-layout-right.contact-layout{
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .ownership-first-layout > .orb,
  .process-layout > .orb,
  .foundations-layout > .orb,
  .orb-layout-offerings > .orb,
  .contact-layout > .orb{
    order: 1 !important;
  }

  .ownership-first-layout > .orb-drawer-ownership,
  .process-layout > .orb-drawer-process,
  .foundations-layout > .orb-drawer-foundations,
  .orb-layout-offerings > .orb-drawer-offerings,
  .contact-layout > .orb-drawer-contact{
    order: 2 !important;
    width: 100% !important;
    margin-top: 1rem !important;
  }

  .ownership-first-layout .orb,
  .process-layout .orb,
  .foundations-layout .orb,
  .orb-layout-offerings .orb,
  .contact-layout .orb{
    width: min(330px, 76vw) !important;
    max-width: 76vw !important;
    aspect-ratio: 1 / 1 !important;
    padding: clamp(1.7rem, 6vw, 2.3rem) clamp(1.35rem, 5vw, 1.9rem) !important;
    border-radius: 50% !important;
    background: radial-gradient(
      circle,
      rgba(255,255,255,0.92) 0%,
      rgba(255,255,255,0.52) 42%,
      rgba(255,255,255,0.14) 68%,
      rgba(255,255,255,0) 82%
    ) !important;
    box-shadow: 0 0 80px rgba(255,255,255,0.12) !important;
    overflow: visible !important;
    -webkit-mask-image: none !important;
    mask-image: none !important;
  }

  .ownership-first-layout .orb::before,
  .process-layout .orb::before,
  .foundations-layout .orb::before,
  .orb-layout-offerings .orb::before,
  .contact-layout .orb::before{
    content: "" !important;
    position: absolute !important;
    inset: 12% 14% !important;
    border-radius: 50% !important;
    background: radial-gradient(
      circle,
      rgba(255,255,255,0.22) 0%,
      rgba(255,255,255,0.08) 45%,
      rgba(255,255,255,0) 75%
    ) !important;
    filter: none !important;
    opacity: 1 !important;
    pointer-events: none !important;
  }

  .ownership-first-layout .orb::after,
  .process-layout .orb::after,
  .foundations-layout .orb::after,
  .orb-layout-offerings .orb::after,
  .contact-layout .orb::after{
    content: none !important;
  }

  .orb-content-ownership,
  .orb-content-process,
  .orb-content-foundations,
  .orb-content-offerings,
  .orb-content-contact{
    width: min(100%, 300px) !important;
    transform: translateY(-4px) !important;
  }

  .orb-title-ownership,
  .orb-title-process,
  .orb-title-foundations,
  .orb-title-offerings,
  .orb-title-contact{
    font-size: clamp(1.45rem, 7vw, 2rem) !important;
    line-height: 1 !important;
    letter-spacing: 0 !important;
  }

  .orb-drawer-static,
  .orb-drawer-ownership,
  .orb-drawer-process,
  .orb-drawer-foundations,
  .orb-drawer-offerings,
  .orb-drawer-contact{
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    justify-self: center !important;
    overflow: visible !important;
  }

    .orb-panel-ownership,
  .orb-panel-process,
  .orb-panel-foundations,
  .orb-panel-offerings,
  .orb-panel-contact{
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: clamp(1.25rem, 5vw, 1.7rem) clamp(1.35rem, 6vw, 1.8rem) !important;
    padding-right: calc(clamp(1.35rem, 6vw, 1.8rem) + 10px) !important;
    border-radius: 24px !important;
    overflow-x: hidden !important;
    scrollbar-gutter: stable !important;
    scrollbar-width: thin !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .orb-panel-inner-ownership,
  .orb-panel-inner-process,
  .orb-panel-inner-foundations,
  .orb-panel-inner-offerings,
  .orb-panel-inner-contact,
  .orb-copy-ownership,
  .orb-copy-process,
  .orb-copy-foundations,
  .orb-copy-offerings,
  .orb-copy-contact{
    width: 100% !important;
    max-width: 100% !important;
  }

  .orb-copy-ownership,
  .orb-copy-process,
  .orb-copy-foundations,
  .orb-copy-offerings,
  .orb-copy-contact{
    gap: 1rem !important;
  }

  .orb-title-panel,
  .orb-copy-offerings .orb-title-panel,
  .orb-panel-foundations .orb-title-panel{
    width: 100% !important;
    max-width: min(100%, 42ch) !important;
    font-size: clamp(1.35rem, 7vw, 1.85rem) !important;
    line-height: 1.12 !important;
    white-space: normal !important;
    letter-spacing: 0 !important;
  }

  .orb-panel-foundations .orb-title-panel{
    max-width: none !important;
    text-wrap: normal !important;
  }

  .orb-panel-foundations .orb-title-panel{
    font-size: 0 !important;
  }

  .orb-panel-foundations .orb-title-panel::before{
    content: "Beautiful Websites- Ready to Launch";
    font-size: clamp(1.35rem, 7vw, 1.85rem) !important;
    line-height: 1.12 !important;
  }

  .orb-divider-ownership,
  .orb-divider-process,
  .orb-divider-foundations,
  .orb-divider-offerings,
  .orb-divider-contact{
    width: min(240px, 56vw) !important;
    max-width: 56vw !important;
    margin: 0.25rem auto 0.75rem !important;
  }

  .orb-body-wrap,
  .orb-copy-foundations .orb-body-wrap,
  .orb-copy-offerings .orb-body-wrap,
  .orb-body-ownership,
  .orb-body-process,
  .orb-body-foundations,
  .orb-body-offerings,
  .orb-body-contact,
  .orb-list-ownership,
  .process-accordion-static,
  .offerings-accordion-static,
  .contact-form-orb{
    width: 100% !important;
    max-width: 100% !important;
  }

  .orb-body-ownership,
  .orb-body-process,
  .orb-body-foundations,
  .orb-body-offerings,
  .orb-body-contact,
  .orb-list-ownership,
  .service-desc-process,
  .service-desc-offerings,
  .paragraph-3-offerings,
  .contact-form-orb label,
  .contact-form-orb .form-note{
    font-size: clamp(0.9rem, 3.7vw, 0.98rem) !important;
    line-height: 1.62 !important;
  }

  .orb-list-ownership{
    padding-left: 1.1rem !important;
    text-align: left !important;
  }

  .orb-copy-ownership .orb-list-ownership{
    padding-left: 0 !important;
    list-style-position: inside !important;
    text-align: center !important;
  }

  .templates-track-foundations{
    gap: 0.8rem !important;
  }

  .template-card-foundations,
  .template-card-soon{
    flex-basis: min(250px, 76vw) !important;
    border-radius: 18px !important;
  }

  .service-toggle-process,
  .service-toggle-offerings{
    min-height: auto !important;
    padding: 0.95rem 0.75rem !important;
  }

  .service-title-process,
  .service-title-offerings,
  .service-price-offerings{
    letter-spacing: 0 !important;
  }

  .service-panel-inner-process,
  .service-panel-inner-offerings-card{
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    transform: none !important;
  }

  .contact-form-orb{
    gap: 1rem !important;
  }

  .contact-form-orb .form-row{
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .contact-form-orb input,
  .contact-form-orb textarea,
  .contact-form-orb .custom-select-trigger{
    padding: 0.85rem 0.9rem !important;
    border-radius: 14px !important;
  }

  .nav-panel.transparent .hero-logo{
    width: min(1280px, 172vw) !important;
    max-width: 172vw !important;
    transform: translate(-2vw, -4vh) !important;
  }

  .nav-panel.transparent .scroll-cue{
    top: 0 !important;
    margin-top: clamp(0.45rem, 2vh, 1.25rem) !important;
  }

      .page-home .orb-drawer-static.is-open{
    max-height: 62dvh !important;
  }

  .page-home .orb-panel-ownership,
  .page-home .orb-panel-process,
  .page-home .orb-panel-foundations,
  .page-home .orb-panel-offerings,
  .page-home .orb-panel-contact{
    max-height: 62dvh !important;
    overflow-y: auto !important;
  }
}

/* ===== LEGAL PAGE ===== */

.legal-wrapper{
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6vh 4vw;
}

@media (max-width: 768px){
  body.legal-page{
    min-height: 100svh;
    min-height: 100dvh;
  }

  .legal-wrapper{
    min-height: 100svh;
    min-height: 100dvh;
    align-items: flex-start;
    padding: clamp(1.5rem, 6vw, 2.25rem) 1rem;
  }

  .legal-panel{
    width: min(900px, 100%);
    padding: 1.6rem 1.25rem 1.8rem;
    border-radius: 24px;
  }
}

.legal-panel{
  width: min(900px, 100%);
  padding: 2.35rem 2.5rem 2.5rem;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(
    180deg,
    rgba(6, 21, 7, 0.78) 40%,
    rgba(48, 58, 49, 0.62) 100%
  );
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #f1f1f1;
  line-height: 1.7;
}

@media (max-width: 768px){
  .legal-panel{
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;

    /* slightly more opaque so it still feels glassy without true blur */
    background: linear-gradient(
      180deg,
      rgba(6, 21, 7, 0.88) 40%,
      rgba(48, 58, 49, 0.78) 100%
    ) !important;
  }
}

.back-link{
  display: block;
  width: fit-content;

  margin-bottom: 24px;

  text-align: left;

  opacity: 0.7;
  text-decoration: none;
  color: #cfe8d5;
}

.back-link:hover{
  opacity: 1;
}

.legal-panel h1{
  text-align: center;
  margin: 20px 0 40px;
  font-size: clamp(1.8rem, 2.7vw, 2.4rem);
  line-height: 1.1;
  color: #f1f1f1;
}

.legal-intro{
  margin: 0;
  color: rgba(241,241,241,0.82);
  line-height: 1.7;
}

.legal-panel h2{
  margin-top: 28px;
  margin-bottom: 10px;
  color: #f1f1f1;
  font-size: 1.08rem;
  line-height: 1.3;
}

.legal-panel p{
  color: rgba(241,241,241,0.88);
  margin: 0 0 12px;
}

.legal-panel ul{
  padding-left: 18px;
  margin: 0 0 16px;
  color: rgba(241,241,241,0.88);
}

.legal-panel li{
  margin-bottom: 6px;
}

.legal-panel hr{
  border: none;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 24px 0;
}

/* =========================
   REBUILD — CONTACT LEGAL LINK
========================= */

.legal-links{
  font-size: 0.78rem;
  color: rgba(241, 241, 241, 0.75);
  text-align: center;
  margin-top: 18px;
  line-height: 1.4;
}

.legal-links a{
  color: #cfe8d5;
  text-decoration: underline;
  opacity: 0.8;
}

.legal-links a:hover{
  opacity: 1;
}

/* =========================
   HOME DRAWERS — INTERNAL SCROLL GUARD
========================= */

.page-home .orb-drawer-foundations,
.page-home .orb-panel-foundations{
  width: 100%;
  max-height: none;
  overflow: visible;
}

.page-home .orb-panel-ownership,
.page-home .orb-panel-process,
.page-home .orb-panel-offerings,
.page-home .orb-panel-contact{
  max-height: min(42rem, calc(100vh - clamp(2.5rem, 7vh, 5rem)));
  max-height: min(42rem, calc(100svh - clamp(2.5rem, 7vh, 5rem)));
  max-height: min(42rem, calc(100dvh - clamp(2.5rem, 7vh, 5rem)));
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: auto;
  scrollbar-gutter: stable;
  scrollbar-color: transparent transparent;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
  transition: scrollbar-color 0.2s ease;
}

.page-home .orb-panel-inner-ownership,
.page-home .orb-panel-inner-process,
.page-home .orb-panel-inner-offerings,
.page-home .orb-panel-inner-contact,
.page-home .orb-copy-ownership,
.page-home .orb-copy-process,
.page-home .orb-copy-offerings,
.page-home .orb-copy-contact,
.page-home .process-accordion-static,
.page-home .offerings-accordion-static{
  min-height: 0;
}

.page-home .orb-panel-ownership::-webkit-scrollbar,
.page-home .orb-panel-process::-webkit-scrollbar,
.page-home .orb-panel-foundations::-webkit-scrollbar,
.page-home .orb-panel-offerings::-webkit-scrollbar,
.page-home .orb-panel-contact::-webkit-scrollbar{
  width: 10px;
}

.page-home .orb-panel-ownership::-webkit-scrollbar-track,
.page-home .orb-panel-process::-webkit-scrollbar-track,
.page-home .orb-panel-foundations::-webkit-scrollbar-track,
.page-home .orb-panel-offerings::-webkit-scrollbar-track,
.page-home .orb-panel-contact::-webkit-scrollbar-track{
  background: transparent;
  border-radius: 999px;
}

.page-home .orb-panel-ownership::-webkit-scrollbar-thumb,
.page-home .orb-panel-process::-webkit-scrollbar-thumb,
.page-home .orb-panel-foundations::-webkit-scrollbar-thumb,
.page-home .orb-panel-offerings::-webkit-scrollbar-thumb,
.page-home .orb-panel-contact::-webkit-scrollbar-thumb{
  background: transparent;
  border-radius: 999px;
  transition: background 0.2s ease;
}

.page-home .orb-panel-ownership.is-scrolling,
.page-home .orb-panel-process.is-scrolling,
.page-home .orb-panel-foundations.is-scrolling,
.page-home .orb-panel-offerings.is-scrolling,
.page-home .orb-panel-contact.is-scrolling{
  scrollbar-color: rgba(241,241,241,0.32) rgba(255,255,255,0.06);
}

.page-home .orb-panel-ownership.is-scrolling::-webkit-scrollbar-track,
.page-home .orb-panel-process.is-scrolling::-webkit-scrollbar-track,
.page-home .orb-panel-foundations.is-scrolling::-webkit-scrollbar-track,
.page-home .orb-panel-offerings.is-scrolling::-webkit-scrollbar-track,
.page-home .orb-panel-contact.is-scrolling::-webkit-scrollbar-track{
  background: rgba(255,255,255,0.06);
}

.page-home .orb-panel-ownership.is-scrolling::-webkit-scrollbar-thumb,
.page-home .orb-panel-process.is-scrolling::-webkit-scrollbar-thumb,
.page-home .orb-panel-foundations.is-scrolling::-webkit-scrollbar-thumb,
.page-home .orb-panel-offerings.is-scrolling::-webkit-scrollbar-thumb,
.page-home .orb-panel-contact.is-scrolling::-webkit-scrollbar-thumb{
  background: rgba(241,241,241,0.32);
}

/* =========================
   HOME ORB DRAWER STATES
========================= */

.page-home .orb{
  cursor: pointer;
  overflow-anchor: none;
}

.page-home .home-snap,
.page-home .nav-panel,
.page-home .orb,
.page-home .orb-drawer-static,
.page-home .orb-panel{
  overflow-anchor: none;
}

.page-home .orb:focus-visible{
  outline: 2px solid rgba(241,241,241,0.85);
  outline-offset: 8px;
}

.page-home .orb[aria-expanded="true"]{
  box-shadow: 0 0 80px rgba(255,255,255,0.16);
}

.page-home .orb-drawer-static{
  transform-origin: center;
  overflow-anchor: none;
  transition:
    max-height 0.42s ease,
    opacity 0.28s ease,
    transform 0.36s ease,
    visibility 0s linear 0.42s;
}

.page-home .orb-drawer-down:not(.is-open){
  max-height: 0 !important;
  opacity: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
  visibility: hidden !important;
}

.page-home .orb-drawer-side{
  max-height: 90vh !important;
  max-height: 90svh !important;
  max-height: 90dvh !important;
  overflow: visible !important;
  transition:
    opacity 0.28s ease,
    transform 0.36s ease,
    visibility 0s linear 0.36s;
}

.page-home .orb-drawer-side:not(.is-open){
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
}

.page-home .orb-drawer-static.is-open{
  max-height: 90vh !important;
  max-height: 90svh !important;
  max-height: 90dvh !important;
  opacity: 1 !important;
  overflow: visible !important;
  pointer-events: auto !important;
  transform: translate(0, 0) !important;
  visibility: visible !important;
  transition:
    max-height 0.42s ease,
    opacity 0.28s ease,
    transform 0.36s ease,
    visibility 0s;
}

.page-home .orb-drawer-ownership:not(.is-open),
.page-home .orb-drawer-offerings:not(.is-open){
  transform: translateY(-18px);
}

.page-home .orb-drawer-process:not(.is-open),
.page-home .orb-drawer-contact:not(.is-open){
  transform: translateX(-26px);
}

.page-home .orb-drawer-foundations:not(.is-open){
  transform: translateX(26px);
}

/* =========================
   LEGAL PAGE — REDWOODS BACKGROUND
========================= */

body.legal-page{
  margin: 0;
  min-height: 100vh;
  background: transparent !important;
}

body.legal-page .legal-wrapper{
  position: relative;
  z-index: 1;
}

/* =========================
   LEGAL — CENTER ALIGN ALL TEXT
========================= */

.legal-panel{
  text-align: center;
}

.legal-panel ul{
  list-style-position: inside;
  padding-left: 0;
}

.legal-panel li{
  text-align: center;
}

@media (max-width: 768px){
  .legal-panel{
    padding: 1.6rem 1.25rem 1.8rem;
    border-radius: 24px;
  }
}

/* =========================
   LEGAL PAGE — MOBILE SCROLL FIX ONLY
========================= */

@media (max-width: 768px){

  .legal-scroll{
    height: 100svh;
    height: 100dvh;
    overflow-y: auto;
    position: relative;
    z-index: 2;
  }

  body.legal-page{
    overflow: hidden; /* CRITICAL: stop body scroll */
  }

}

/* =========================
   FINAL HOME DESKTOP LAYOUT OVERRIDE
   Keep style.css for background only; force orb/drawer rhythm here.
========================= */

@media (min-width: 769px){
  .page-home .ownership-first-layout{
    width: min(1280px, 96vw) !important;
    max-width: min(1280px, 96vw) !important;
    display: grid !important;
    grid-template-columns: minmax(0, 820px) 320px !important;
    grid-auto-flow: column !important;
    justify-content: center !important;
    align-items: center !important;
    justify-items: stretch !important;
    column-gap: 4.5rem !important;
    row-gap: 0 !important;
  }

  .page-home .ownership-first-layout > .orb-drawer-ownership{
    grid-column: 1 !important;
    grid-row: 1 !important;
    justify-self: stretch !important;
    align-self: center !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 3rem 0 0 !important;
  }

  .page-home .ownership-first-layout > .orb.float-right{
    grid-column: 2 !important;
    grid-row: 1 !important;
    justify-self: center !important;
    align-self: center !important;
    margin: 0 !important;
    width: min(470px, 74vw) !important;
  }

  .page-home .ownership-first-layout .orb-panel-ownership{
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
  }

  .page-home .orb-layout-centered.orb-layout-offerings{
    width: min(1180px, 94vw) !important;
    max-width: min(1180px, 94vw) !important;
    display: grid !important;
    grid-template-columns: 360px minmax(0, 720px) !important;
    grid-auto-flow: column !important;
    justify-content: center !important;
    align-items: center !important;
    justify-items: stretch !important;
    column-gap: 5rem !important;
    row-gap: 0 !important;
  }

  .page-home .orb-layout-offerings > .orb.float-left{
    grid-column: 1 !important;
    grid-row: 1 !important;
    justify-self: center !important;
    align-self: center !important;
    margin: 0 !important;
  }

  .page-home .orb-layout-offerings > .orb-drawer-offerings{
    grid-column: 2 !important;
    grid-row: 1 !important;
    justify-self: stretch !important;
    align-self: center !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 0 0 5rem !important;
  }

  .page-home .orb-layout-offerings .orb-panel-offerings{
    width: min(700px, 100%) !important;
    max-width: none !important;
    margin: 0 0 0 auto !important;
  }

  .page-home .orb-layout-right.contact-layout{
    width: min(1180px, 94vw) !important;
    max-width: min(1180px, 94vw) !important;
    display: grid !important;
    grid-template-columns: minmax(0, 720px) 360px !important;
    grid-auto-flow: column !important;
    justify-content: center !important;
    align-items: center !important;
    justify-items: stretch !important;
    column-gap: 5rem !important;
    row-gap: 0 !important;
  }

  .page-home .contact-layout > .orb-drawer-contact{
    grid-column: 1 !important;
    grid-row: 1 !important;
    justify-self: stretch !important;
    align-self: center !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 5rem 0 0 !important;
  }

  .page-home .contact-layout > .orb.float-right{
    grid-column: 2 !important;
    grid-row: 1 !important;
    justify-self: center !important;
    align-self: center !important;
    margin: 0 !important;
  }

  .page-home .contact-layout .orb-panel-contact{
    margin: 0 auto 0 0 !important;
  }
}

/* =========================
   FINAL HOME DESKTOP DRAWER SIZING
   Match every drawer frame to Offerings.
========================= */

@media (min-width: 769px){
  .page-home{
    --rootline-drawer-column: minmax(0, 720px);
    --rootline-orb-column: 360px;
    --rootline-drawer-gap: 5rem;
    --rootline-drawer-height: min(42rem, calc(100vh - clamp(2.5rem, 7vh, 5rem)));
    --rootline-drawer-height: min(42rem, calc(100svh - clamp(2.5rem, 7vh, 5rem)));
    --rootline-drawer-height: min(42rem, calc(100dvh - clamp(2.5rem, 7vh, 5rem)));
  }

  .page-home .ownership-first-layout,
  .page-home .orb-layout-left.foundations-layout{
    width: min(1180px, 94vw) !important;
    max-width: min(1180px, 94vw) !important;
    grid-template-columns: var(--rootline-drawer-column) var(--rootline-orb-column) !important;
    column-gap: var(--rootline-drawer-gap) !important;
  }

  .page-home .orb-layout-right.process-layout,
  .page-home .orb-layout-centered.orb-layout-offerings{
    width: min(1180px, 94vw) !important;
    max-width: min(1180px, 94vw) !important;
    grid-template-columns: var(--rootline-orb-column) var(--rootline-drawer-column) !important;
    column-gap: var(--rootline-drawer-gap) !important;
  }

  .page-home .orb-layout-right.contact-layout{
    width: min(1180px, 94vw) !important;
    max-width: min(1180px, 94vw) !important;
    grid-template-columns: var(--rootline-drawer-column) var(--rootline-orb-column) !important;
    column-gap: var(--rootline-drawer-gap) !important;
  }

  .page-home .process-layout > .orb-drawer-process,
  .page-home .orb-layout-offerings > .orb-drawer-offerings{
    justify-self: stretch !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding-right: 0 !important;
    padding-left: var(--rootline-drawer-gap) !important;
  }

  .page-home .ownership-first-layout > .orb-drawer-ownership,
  .page-home .foundations-layout > .orb-drawer-foundations,
  .page-home .contact-layout > .orb-drawer-contact{
    justify-self: stretch !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding-right: var(--rootline-drawer-gap) !important;
    padding-left: 0 !important;
  }

  .page-home .orb-panel-ownership,
  .page-home .orb-panel-process,
  .page-home .orb-panel-foundations,
  .page-home .orb-panel-offerings,
  .page-home .orb-panel-contact{
    width: 100% !important;
    max-width: none !important;
    height: var(--rootline-drawer-height) !important;
    max-height: var(--rootline-drawer-height) !important;
    margin: 0 !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    overscroll-behavior: auto !important;
    scrollbar-gutter: stable !important;
    scrollbar-color: transparent transparent !important;
    scrollbar-width: thin !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .page-home .orb-copy-foundations .orb-body-wrap,
  .page-home .orb-copy-contact .orb-body-wrap,
  .page-home .orb-copy-ownership .orb-body-wrap,
  .page-home .orb-copy-process .orb-body-wrap,
  .page-home .orb-copy-offerings .orb-body-wrap{
    width: min(100%, 980px) !important;
    max-width: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .page-home .orb-copy-ownership,
  .page-home .orb-copy-process,
  .page-home .orb-copy-foundations,
  .page-home .orb-copy-offerings,
  .page-home .orb-copy-contact{
    gap: 1.4rem !important;
  }

  .page-home .orb-copy-ownership .orb-title-panel,
  .page-home .orb-copy-process .orb-title-panel,
  .page-home .orb-copy-foundations .orb-title-panel,
  .page-home .orb-copy-offerings .orb-title-panel,
  .page-home .orb-copy-contact .orb-title-panel{
    max-width: 900px !important;
  }

  .page-home .orb-body-foundations,
  .page-home .orb-body-contact,
  .page-home .orb-body-ownership,
  .page-home .orb-body-process,
  .page-home .orb-body-offerings{
    width: 100% !important;
    max-width: none !important;
  }

  .page-home .orb-copy-foundations .orb-body-wrap,
  .page-home .orb-copy-contact .orb-body-wrap,
  .page-home .orb-copy-ownership .orb-body-wrap,
  .page-home .orb-copy-process .orb-body-wrap{
    width: min(100%, 860px) !important;
  }

  .page-home .orb-body-foundations,
  .page-home .orb-body-contact,
  .page-home .orb-body-ownership,
  .page-home .orb-body-process,
  .page-home .orb-body-offerings{
    line-height: 2.2 !important;
    letter-spacing: 0.01em !important;
  }

  .page-home .orb-body-foundations + .orb-body-foundations{
    margin-top: 1.05rem !important;
  }

  .page-home .offerings-accordion-static,
  .page-home .process-accordion-static,
  .page-home .contact-form-orb{
    width: min(100%, 980px) !important;
    max-width: none !important;
  }

  .page-home .process-accordion-static{
    gap: 1.1rem !important;
  }

  .page-home .orb-panel-foundations .orb-title-panel{
    white-space: normal !important;
  }

  .page-home .templates-carousel-foundations{
    margin-top: 1.25rem !important;
  }

  .page-home .templates-track-foundations{
    gap: 0.85rem !important;
  }

  .page-home .template-card-foundations{
    flex-basis: 230px !important;
  }
}

@media (max-width: 768px){
  .home-snap{
    scroll-snap-type: none !important;
  }

  .nav-panel{
    scroll-snap-align: none !important;
  }
}

/* =========================
   MOBILE DRAWER NORMALIZATION
========================= */

@media (max-width: 768px){
  .page-home .ownership-first-layout > .orb-drawer-ownership,
  .page-home .process-layout > .orb-drawer-process,
  .page-home .foundations-layout > .orb-drawer-foundations,
  .page-home .orb-layout-offerings > .orb-drawer-offerings,
  .page-home .contact-layout > .orb-drawer-contact{
    width: min(100%, 94vw) !important;
    max-width: min(100%, 94vw) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    transform: none !important;
  }

  .page-home .orb-panel-ownership,
  .page-home .orb-panel-process,
  .page-home .orb-panel-foundations,
  .page-home .orb-panel-offerings,
  .page-home .orb-panel-contact{
    width: 100% !important;
    max-width: 100% !important;
    height: 74dvh !important;
    max-height: 74dvh !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: clamp(1.25rem, 5vw, 1.7rem) clamp(1.35rem, 6vw, 1.8rem) !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    scrollbar-gutter: auto !important;
    scrollbar-width: none !important;
  }

  .page-home .orb-panel-ownership::-webkit-scrollbar,
  .page-home .orb-panel-process::-webkit-scrollbar,
  .page-home .orb-panel-foundations::-webkit-scrollbar,
  .page-home .orb-panel-offerings::-webkit-scrollbar,
  .page-home .orb-panel-contact::-webkit-scrollbar{
    width: 0 !important;
    height: 0 !important;
  }

  .page-home .templates-carousel-foundations{
    --rootline-mobile-template-card: min(250px, 76vw);
    overflow-x: auto !important;
    overflow-y: hidden !important;
    overscroll-behavior-x: contain !important;
    scroll-behavior: smooth !important;
    scroll-padding-inline: calc((100% - var(--rootline-mobile-template-card)) / 2) !important;
    scroll-snap-type: x mandatory !important;
    touch-action: pan-x pan-y !important;
  }

  .page-home .templates-track-foundations{
    gap: 0.85rem !important;
    padding-left: calc((100% - var(--rootline-mobile-template-card)) / 2) !important;
    padding-right: calc((100% - var(--rootline-mobile-template-card)) / 2) !important;
  }

  .page-home .template-card-foundations,
  .page-home .template-card-soon{
    flex: 0 0 var(--rootline-mobile-template-card) !important;
    scroll-snap-align: center !important;
    scroll-snap-stop: always !important;
  }
}
