/* =========================================================================
   SERVICE PAGES — shared components
   Used by Wealth Management and International Real Estate, plus the floating
   section navigation that runs on every long service page.
   ========================================================================= */

/* ══════════════════════════════════════════ FLOATING SECTION NAVIGATION */
.snav {
  position: fixed;
  right: clamp(.8rem, 1.8vw, 1.9rem);
  top: 50%;
  z-index: 800;
  transform: translateY(-50%) translateX(14px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.snav.is-on { opacity: 1; transform: translateY(-50%); pointer-events: auto; }

.snav__inner {
  display: flex; flex-direction: column; gap: .1rem;
  padding: .7rem .55rem;
  background: rgba(9,20,32,.82);
  border: 1px solid var(--ink-08);
  backdrop-filter: blur(9px); -webkit-backdrop-filter: blur(9px);
}
.snav__item {
  position: relative;
  display: flex; align-items: center; justify-content: flex-end; gap: .6rem;
  padding: .38rem .4rem;
  text-decoration: none; cursor: pointer;
  border-right: 1px solid transparent;
  transition: border-color .4s var(--ease);
}
.snav__label {
  font-family: var(--sans);
  font-size: .58rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  white-space: nowrap;
  color: rgba(245,240,232,.5);
  max-width: 0; overflow: hidden;
  opacity: 0;
  transition: max-width .55s var(--ease), opacity .4s var(--ease), color .35s var(--ease);
}
.snav__dot {
  flex: none;
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(245,240,232,.3);
  transition: background .4s var(--ease), transform .4s var(--ease);
}
/* Reveal labels when the rail is hovered, or for the active item. */
.snav:hover .snav__label { max-width: 15rem; opacity: 1; }
.snav__item:hover .snav__label { color: var(--ivory); }
.snav__item:hover .snav__dot { background: var(--gold-light); transform: scale(1.4); }
.snav__item.is-active .snav__dot { background: var(--gold); transform: scale(1.5); }
.snav__item.is-active .snav__label { max-width: 15rem; opacity: 1; color: var(--gold); }
.snav__item.is-active { border-right-color: var(--gold); }
.snav__item:focus-visible { outline: 1px solid var(--gold); outline-offset: -2px; }

/* Small screens: a horizontal strip pinned under the nav bar instead. */
@media (max-width: 900px) {
  .snav {
    right: 0; left: 0; top: auto; bottom: 0;
    transform: translateY(100%);
  }
  .snav.is-on { transform: none; }
  .snav__inner {
    flex-direction: row; gap: 0;
    overflow-x: auto; scrollbar-width: none;
    border-left: 0; border-right: 0; border-bottom: 0;
    padding: 0;
  }
  .snav__inner::-webkit-scrollbar { display: none; }
  .snav__item {
    flex: 0 0 auto; padding: .8rem .9rem;
    border-right: 0; border-bottom: 2px solid transparent;
  }
  .snav__dot { display: none; }
  .snav__label { max-width: none; opacity: 1; }
  .snav__item.is-active { border-right-color: transparent; border-bottom-color: var(--gold); }
}
@media (prefers-reduced-motion: reduce) {
  .snav, .snav__label, .snav__dot { transition-duration: .01ms !important; }
}

/* ═══════════════════════════════════════════════ SHARED TYPE & BLOCKS */
.sv-eye {
  display: block;
  font-family: var(--sans); font-size: .6rem; font-weight: 600;
  letter-spacing: .3em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.1rem;
}
.sv-h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.8rem, 3.5vw, 2.9rem);
  line-height: 1.1; color: var(--ivory); margin: 0;
}
.sv-h2 .g { color: var(--gold); }
.sv-h4 {
  font-family: var(--sans); font-size: .58rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: var(--gold);
  margin: 0 0 1rem;
}
.sv-lede {
  margin-top: 1.2rem; max-width: 66ch;
  color: var(--ink-40); font-size: clamp(1rem, 1.35vw, 1.1rem); line-height: 1.7;
}
.sv-lede-dark {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem); line-height: 1.7;
  color: rgba(13,27,42,.86); margin-bottom: 1.1rem;
}
.sv-note { font-size: .82rem; line-height: 1.7; color: rgba(13,27,42,.6); max-width: 92ch; margin: 0; }
.sv-source { font-size: .72rem; line-height: 1.6; color: rgba(245,240,232,.4); margin-top: 1.4rem; }
.sv-notice {
  margin: clamp(2.4rem, 4vw, 3.4rem) 0 0; padding-top: 1.5rem;
  border-top: 1px solid var(--ink-12);
  font-size: .74rem; line-height: 1.7; color: rgba(245,240,232,.45); max-width: 96ch;
}

.sv-list { list-style: none; margin: 0; padding: 0; }
.sv-list li {
  position: relative; padding-left: 1.05rem; margin-bottom: .58rem;
  font-size: .88rem; line-height: 1.62; color: rgba(245,240,232,.76);
}
.sv-list li::before {
  content: ""; position: absolute; left: 0; top: .68em;
  width: 5px; height: 1px; background: rgba(201,168,76,.75);
}
.sv-list--split { columns: 2; column-gap: clamp(1.6rem, 3.5vw, 3.4rem); }
.sv-list--split li { break-inside: avoid; }

.sv-band { background: var(--navy); padding-block: clamp(4rem, 8vw, 7rem); }
.sv-band--deep { background: var(--navy-deep); }
.sv-band__head { max-width: 70ch; margin-bottom: clamp(2.2rem, 4vw, 3.4rem); }

.sv-quote {
  margin: clamp(2.4rem, 4vw, 3.6rem) auto 0;
  max-width: 40ch; text-align: center;
  font-family: var(--serif); font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  line-height: 1.35; color: var(--gold-light);
}

.sv-two { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.8rem, 4vw, 4rem); margin-top: clamp(2rem, 3.5vw, 3rem); }

/* ─────────────────────────────────────────────── Definition split (light) */
.sv-def {
  display: grid; grid-template-columns: minmax(0,.85fr) minmax(0,1.15fr);
  gap: clamp(1.8rem, 4vw, 4.5rem);
  align-items: start;
  margin-bottom: clamp(2.6rem, 5vw, 4.2rem);
}
.sv-def__copy p { color: rgba(13,27,42,.72); line-height: 1.75; margin-bottom: 1rem; }
.sv-def__copy p:last-child { margin-bottom: 0; }

/* ───────────────────────────────────────────────── Why cards (light) */
.sv-why { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.8rem); }
.sv-why__card { border-top: 1px solid rgba(13,27,42,.14); padding-top: 1.3rem; }
.sv-why__n {
  display: block; font-family: var(--sans); font-size: .54rem; font-weight: 600;
  letter-spacing: .22em; color: var(--gold-deep); margin-bottom: .85rem;
}
.sv-why__card h3 { font-family: var(--serif); font-size: clamp(1.05rem, 1.55vw, 1.25rem); color: var(--navy); margin: 0 0 .6rem; }
.sv-why__card p { margin: 0; font-size: .87rem; line-height: 1.65; color: rgba(13,27,42,.7); }

/* ─────────────────────────────────────────────────────── Boutique grid */
.sv-boutique { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.2rem, 2.5vw, 2.4rem); }
.sv-boutique__item {
  border-left: 1px solid var(--ink-12);
  padding-left: clamp(1.1rem, 2vw, 1.8rem);
  transition: border-color .5s var(--ease);
}
.sv-boutique__item:hover { border-left-color: var(--gold); }
.sv-boutique__item h3 { font-family: var(--serif); font-size: clamp(1.1rem, 1.7vw, 1.4rem); color: var(--ivory); margin: 0 0 .7rem; }
.sv-boutique__item p { margin: 0; font-size: .89rem; line-height: 1.68; color: rgba(245,240,232,.7); }

/* ──────────────────────────────────────────────────── Methodology steps */
.sv-method { background: var(--navy-deep); padding-block: clamp(4rem, 8vw, 7rem); }
.sv-steps { display: flex; flex-direction: column; gap: clamp(1rem, 2vw, 1.6rem); }
.sv-step {
  display: grid; grid-template-columns: minmax(0,.8fr) minmax(0,1.6fr);
  gap: clamp(1.4rem, 3vw, 3rem);
  align-items: center;
  border: 1px solid var(--ink-08);
  padding: clamp(1rem, 1.8vw, 1.5rem);
  transition: border-color .5s var(--ease), background .5s var(--ease);
}
.sv-step:hover { border-color: rgba(201,168,76,.4); background: rgba(201,168,76,.03); }
.sv-step:nth-child(even) { direction: rtl; }
.sv-step:nth-child(even) > * { direction: ltr; }
.sv-step__media { position: relative; overflow: hidden; aspect-ratio: 16 / 10; }
.sv-step__media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.78) brightness(.72);
  transition: transform 1.2s var(--ease);
}
.sv-step:hover .sv-step__media img { transform: scale(1.05); }
.sv-step__n {
  position: absolute; left: 0; bottom: 0;
  padding: .5rem .9rem;
  background: rgba(9,20,32,.86);
  font-family: var(--serif); font-size: 1.5rem; color: var(--gold);
  line-height: 1;
}
.sv-step__body h3 { font-family: var(--serif); font-size: clamp(1.25rem, 2vw, 1.7rem); color: var(--ivory); margin: 0 0 .7rem; }
.sv-step__d { font-size: .92rem; line-height: 1.68; color: rgba(245,240,232,.72); margin: 0 0 1.2rem; max-width: 62ch; }

/* ────────────────────────────────────────────────────────── Partner band */
.sv-partner { position: relative; padding-block: clamp(4rem, 8vw, 7rem); overflow: hidden; }
.sv-partner__bg { position: absolute; inset: 0; }
.sv-partner__bg img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.65) brightness(.32); }
.sv-partner__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(102deg, rgba(9,20,32,.95) 0%, rgba(9,20,32,.8) 58%, rgba(9,20,32,.55) 100%);
}
.sv-partner__inner { position: relative; z-index: 1; }
.sv-partner__inner .sv-list { margin-top: clamp(1.6rem, 3vw, 2.4rem); }

/* ────────────────────────────────────────────────────────── Philosophy */
.sv-phil { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.8rem); }
.sv-phil__card {
  border: 1px solid var(--ink-08);
  padding: clamp(1.4rem, 2.4vw, 2.1rem);
  transition: border-color .5s var(--ease), transform .55s var(--ease);
}
.sv-phil__card:hover { border-color: rgba(201,168,76,.45); transform: translateY(-3px); }
.sv-phil__n { display: block; font-family: var(--sans); font-size: .54rem; font-weight: 600; letter-spacing: .22em; color: var(--gold); margin-bottom: 1rem; }
.sv-phil__card h3 { font-family: var(--serif); font-size: clamp(1.2rem, 1.9vw, 1.5rem); color: var(--ivory); margin: 0 0 .3rem; }
.sv-phil__sub { display: block; font-size: .74rem; color: var(--gold-light); margin-bottom: .9rem; }
.sv-phil__card > p { font-size: .88rem; line-height: 1.66; color: rgba(245,240,232,.7); margin: 0 0 1.2rem; }

/* ─────────────────────────────────────────────────── Portfolio mandates */
.sv-ports { display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(.7rem, 1.4vw, 1.2rem); }
.sv-port {
  background: var(--navy);
  padding: clamp(1.2rem, 2vw, 1.7rem);
  display: flex; flex-direction: column;
  transition: transform .55s var(--ease);
}
.sv-port:hover { transform: translateY(-4px); }
.sv-port__head { margin-bottom: 1rem; }
.sv-port__n { display: block; font-family: var(--sans); font-size: .52rem; font-weight: 600; letter-spacing: .22em; color: var(--gold); margin-bottom: .55rem; }
.sv-port__head h3 { font-family: var(--serif); font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--ivory); margin: 0 0 .3rem; }
.sv-port__risk { font-size: .68rem; color: rgba(245,240,232,.55); }
.sv-port__bar { height: 3px; background: rgba(245,240,232,.12); margin-bottom: 1.1rem; }
.sv-port__bar span { display: block; height: 100%; background: linear-gradient(90deg, var(--gold-deep), var(--gold-light)); }
.sv-port__meta { margin-bottom: .9rem; }
.sv-port__meta span { display: block; margin-bottom: .55rem; }
.sv-port__meta i {
  display: block; font-style: normal; font-family: var(--sans);
  font-size: .5rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(245,240,232,.4); margin-bottom: .2rem;
}
.sv-port__meta b { font-family: var(--serif); font-weight: 400; font-size: .92rem; color: var(--gold-light); line-height: 1.3; }
.sv-port__focus { margin: 0; font-size: .78rem; line-height: 1.6; color: rgba(245,240,232,.62); }

/* ──────────────────────────────────────────────────── Preservation band */
.sv-preserve { background: var(--navy); padding-block: clamp(4rem, 8vw, 7rem); }
.sv-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 2rem); margin-bottom: clamp(2rem, 3.5vw, 3rem); }
.sv-stats--inline { margin-bottom: clamp(2.4rem, 4vw, 3.4rem); }
.sv-stat { border-top: 1px solid var(--ink-12); padding-top: 1.2rem; }
.sv-stat__n {
  display: block; font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1; color: var(--gold);
  margin-bottom: .7rem;
}
.sv-stat__l { display: block; font-size: .84rem; line-height: 1.55; color: rgba(245,240,232,.66); max-width: 30ch; }

.sv-preserve__copy { max-width: 78ch; margin-bottom: clamp(2.2rem, 4vw, 3.2rem); }
.sv-preserve__copy p { color: rgba(245,240,232,.76); line-height: 1.75; margin-bottom: 1rem; }

.sv-struct { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.8rem); }
.sv-struct__card { border-top: 1px solid var(--gold); padding-top: 1.3rem; }
.sv-struct__sub { display: block; font-family: var(--sans); font-size: .54rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: .7rem; }
.sv-struct__card h3 { font-family: var(--serif); font-size: clamp(1.15rem, 1.8vw, 1.45rem); color: var(--ivory); margin: 0 0 .8rem; }
.sv-struct__card p { margin: 0; font-size: .87rem; line-height: 1.66; color: rgba(245,240,232,.7); }

.sv-sixstep { margin-top: clamp(2.4rem, 4vw, 3.4rem); border-top: 1px solid var(--ink-12); padding-top: 1.8rem; }
.sv-sixstep ol { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem clamp(1.2rem, 2.5vw, 2.4rem); counter-reset: six; }
.sv-sixstep li {
  counter-increment: six; position: relative; padding-left: 2rem;
  font-size: .88rem; line-height: 1.6; color: rgba(245,240,232,.74);
}
.sv-sixstep li::before {
  content: "0" counter(six);
  position: absolute; left: 0; top: .05em;
  font-family: var(--sans); font-size: .58rem; font-weight: 600;
  letter-spacing: .1em; color: var(--gold);
}

/* ══════════════════════════════════════════════════ REAL ESTATE ONLY */
.sv-markets { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.6rem); }
.sv-market { position: relative; display: block; overflow: hidden; min-height: clamp(260px, 26vw, 340px); border: 1px solid var(--ink-08); }
.sv-market__img { position: absolute; inset: 0; }
.sv-market__img img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.72) brightness(.5); transition: transform 1.3s var(--ease); }
.sv-market:hover .sv-market__img img { transform: scale(1.06); }
.sv-market__img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(9,20,32,.2) 30%, rgba(9,20,32,.92) 100%); }
.sv-market__body { position: absolute; inset: auto 0 0 0; z-index: 1; padding: clamp(1.2rem, 2vw, 1.8rem); }
.sv-market__t { display: block; font-family: var(--serif); font-size: clamp(1.4rem, 2.3vw, 1.9rem); color: var(--ivory); margin-bottom: .5rem; }
.sv-market__d { display: block; font-size: .84rem; line-height: 1.6; color: rgba(245,240,232,.72); }

.sv-dubai { position: relative; padding-block: clamp(4rem, 8vw, 7rem); overflow: hidden; }
.sv-dubai__bg { position: absolute; inset: 0; }
.sv-dubai__bg img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.62) brightness(.3); }
.sv-dubai__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(9,20,32,.88) 0%, rgba(9,20,32,.94) 100%); }
.sv-dubai__inner { position: relative; z-index: 1; }
.sv-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.4vw, 2.2rem); }
.sv-benefit { border-top: 1px solid var(--ink-12); padding-top: 1.2rem; }
.sv-benefit h3 { font-family: var(--serif); font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: var(--ivory); margin: 0 0 .6rem; }
.sv-benefit p { margin: 0; font-size: .86rem; line-height: 1.64; color: rgba(245,240,232,.68); }

.sv-devs { background: var(--navy); padding-block: clamp(4rem, 8vw, 7rem); }
.sv-devs__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1rem, 2vw, 1.8rem); }
.sv-dev {
  display: flex; flex-direction: column;
  border: 1px solid var(--ink-08);
  overflow: hidden;
  transition: border-color .5s var(--ease), transform .55s var(--ease);
}
.sv-dev:hover { border-color: rgba(201,168,76,.45); transform: translateY(-4px); }
.sv-dev__media { aspect-ratio: 16 / 9; overflow: hidden; }
.sv-dev__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.78) brightness(.74); transition: transform 1.3s var(--ease); }
.sv-dev:hover .sv-dev__media img { transform: scale(1.06); }
.sv-dev__body { padding: clamp(1.3rem, 2.2vw, 1.9rem); display: flex; flex-direction: column; flex: 1; }
.sv-dev__tag { display: block; font-family: var(--sans); font-size: .54rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: .7rem; }
.sv-dev__name { font-family: var(--serif); font-size: clamp(1.2rem, 1.9vw, 1.55rem); color: var(--ivory); margin: 0 0 .8rem; line-height: 1.15; }
.sv-dev__d { font-size: .87rem; line-height: 1.66; color: rgba(245,240,232,.7); margin: 0 0 1.3rem; }
.sv-dev__facts { margin: 0 0 1.3rem; display: grid; gap: .5rem; }
.sv-dev__facts > div { display: grid; grid-template-columns: 6.5rem 1fr; gap: .8rem; align-items: baseline; }
.sv-dev__facts dt {
  font-family: var(--sans); font-size: .52rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: rgba(245,240,232,.42);
}
.sv-dev__facts dd { margin: 0; font-size: .82rem; line-height: 1.5; color: rgba(245,240,232,.8); }
.sv-dev__cta {
  margin-top: auto; align-self: flex-start;
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--sans); font-size: .6rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: var(--gold);
}
.sv-dev__cta span { transition: transform .45s var(--ease); }
.sv-dev:hover .sv-dev__cta span { transform: translateX(5px); }

/* ─────────────────────────────────────────────────────────────── FAQs */
.sv-faqs { border-top: 1px solid rgba(13,27,42,.14); }
.sv-faq { border-bottom: 1px solid rgba(13,27,42,.14); }
.sv-faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.15rem 0; cursor: pointer; list-style: none;
  font-family: var(--serif); font-size: clamp(1rem, 1.6vw, 1.25rem); color: var(--navy);
  transition: color .35s var(--ease);
}
.sv-faq summary::-webkit-details-marker { display: none; }
.sv-faq summary:hover { color: var(--gold-deep); }
.sv-faq summary:focus-visible { outline: 1px solid var(--gold); outline-offset: -3px; }
.sv-faq__chev { position: relative; flex: none; width: 22px; height: 22px; border: 1px solid rgba(13,27,42,.22); border-radius: 50%; transition: border-color .4s, transform .5s var(--ease); }
.sv-faq__chev::before, .sv-faq__chev::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  background: var(--gold-deep); transform: translate(-50%, -50%);
  transition: opacity .35s var(--ease);
}
.sv-faq__chev::before { width: 8px; height: 1px; }
.sv-faq__chev::after  { width: 1px; height: 8px; }
.sv-faq[open] .sv-faq__chev { border-color: var(--gold); transform: rotate(90deg); }
.sv-faq[open] .sv-faq__chev::after { opacity: 0; }
.sv-faq > p { margin: 0; padding: 0 0 1.4rem; font-size: .92rem; line-height: 1.7; color: rgba(13,27,42,.72); max-width: 78ch; }

/* ══════════════════════════════════════════════════════════ RESPONSIVE */
@media (max-width: 1080px) {
  .sv-why, .sv-phil, .sv-benefits, .sv-struct, .sv-markets { grid-template-columns: repeat(2, 1fr); }
  .sv-ports { grid-template-columns: repeat(3, 1fr); }
  .sv-sixstep ol { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .sv-def { grid-template-columns: 1fr; }
  .sv-boutique, .sv-two, .sv-devs__grid { grid-template-columns: 1fr; }
  .sv-step { grid-template-columns: 1fr; }
  .sv-step:nth-child(even) { direction: ltr; }
  .sv-list--split { columns: 1; }
  .snav { /* leave room for the bottom strip */ }
  body:has(.snav) .footer { padding-bottom: 4rem; }
}
@media (max-width: 640px) {
  .sv-why, .sv-phil, .sv-benefits, .sv-struct, .sv-markets, .sv-stats { grid-template-columns: 1fr; }
  .sv-ports { grid-template-columns: 1fr; }
  .sv-sixstep ol { grid-template-columns: 1fr; }
  .sv-dev__facts > div { grid-template-columns: 1fr; gap: .15rem; }
}
/* Service heroes use the supplied location films where the approved page
   material calls for a global context. */
.service-hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Approved brochure hierarchy and readability.
   Service-page titles, subtitles and editorial copy must retain the authority
   they have in the supplied documents, including on dark panels. */
.service-hero .pg-hero__h1 {
  max-width: 17ch;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: .96;
}
.service-hero .pg-hero__sub {
  max-width: 48ch;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  line-height: 1.55;
  color: rgba(245,240,232,.92);
}
.sv-h2 {
  font-size: clamp(2.35rem, 4.6vw, 4.25rem);
  line-height: 1.03;
  max-width: 19ch;
}
.pg-h2 {
  font-size: clamp(2.35rem, 4.6vw, 4.25rem);
  line-height: 1.04;
}
.sv-eye,
.pg-eye {
  font-size: .69rem;
  color: var(--gold-light);
}
.pg-sec--white .pg-eye,
.pg-sec--ivory .pg-eye {
  color: var(--gold-deep);
}
.sv-lede,
.sv-lede-dark,
.sv-def__copy p,
.sv-preserve__copy p {
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
}
.sv-lede,
.sv-list li,
.sv-boutique__item p,
.sv-step__d,
.sv-phil__card > p,
.sv-preserve__copy p,
.sv-struct__card p,
.sv-market__d,
.sv-benefit p,
.sv-dev__d,
.sv-dev__facts dd {
  color: rgba(245,240,232,.86);
}
.sv-list li,
.sv-boutique__item p,
.sv-step__d,
.sv-phil__card > p,
.sv-struct__card p,
.sv-market__d,
.sv-benefit p,
.sv-dev__d {
  font-size: clamp(.96rem, 1.05vw, 1.06rem);
}
.sv-note {
  font-size: .96rem;
  color: rgba(13,27,42,.78);
}
.sv-def__copy p,
.sv-why__card p,
.sv-faq > p {
  color: rgba(13,27,42,.86);
}
.sv-why__card p,
.sv-faq > p {
  font-size: clamp(.96rem, 1.05vw, 1.06rem);
}
.sv-why__card h3,
.sv-boutique__item h3,
.sv-step__body h3,
.sv-phil__card h3,
.sv-struct__card h3,
.sv-benefit h3,
.sv-dev__name {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}
.sv-port__focus {
  font-size: .92rem;
  color: rgba(245,240,232,.82);
}
.sv-port__risk,
.sv-stat__l {
  color: rgba(245,240,232,.82);
}
.service-hero__scroll {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  margin-top: 1.6rem;
  color: var(--gold-light);
  font-family: var(--sans);
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .19em;
  text-transform: uppercase;
}
