@font-face {
    font-family: 'PP Neue Montreal';
    src: url('../fonts/PPNeueMontreal-Thin.eot');
    src: url('../fonts/PPNeueMontreal-Thin.eot?#iefix') format('embedded-opentype'),
        url('../fonts/PPNeueMontreal-Thin.woff2') format('woff2'),
        url('../fonts/PPNeueMontreal-Thin.woff') format('woff'),
        url('../fonts/PPNeueMontreal-Thin.ttf') format('truetype'),
        url('../fonts/PPNeueMontreal-Thin.svg#PPNeueMontreal-Thin') format('svg');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}



@font-face {
    font-family: 'PP Neue Montreal';
    src: url('../fonts/PPNeueMontreal-Bold.eot');
    src: url('../fonts/PPNeueMontreal-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/PPNeueMontreal-Bold.woff2') format('woff2'),
        url('../fonts/PPNeueMontreal-Bold.woff') format('woff'),
        url('../fonts/PPNeueMontreal-Bold.ttf') format('truetype'),
        url('../fonts/PPNeueMontreal-Bold.svg#PPNeueMontreal-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PP Neue Montreal';
    src: url('../fonts/PPNeueMontreal-Medium.eot');
    src: url('../fonts/PPNeueMontreal-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/PPNeueMontreal-Medium.woff2') format('woff2'),
        url('../fonts/PPNeueMontreal-Medium.woff') format('woff'),
        url('../fonts/PPNeueMontreal-Medium.ttf') format('truetype'),
        url('../fonts/PPNeueMontreal-Medium.svg#PPNeueMontreal-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'PP Fragment Text';
    src: url('../fonts/PPFragment-TextRegular.eot');
    src: url('../fonts/PPFragment-TextRegular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/PPFragment-TextRegular.woff2') format('woff2'),
        url('../fonts/PPFragment-TextRegular.woff') format('woff'),
        url('../fonts/PPFragment-TextRegular.ttf') format('truetype'),
        url('../fonts/PPFragment-TextRegular.svg#PPFragment-TextRegular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}



/* ---- Design tokens -------------------------------------------------------
   Root font-size is fluid: 10px @ 1920px design width means 1rem == 1px
   of the original PSD at full scale, so component measurements below are
   authored directly from the PSD's pixel bounding boxes (divided by 10).
   ---------------------------------------------------------------------- */
:root {
  --red: #c00000;
  --black: #333333;
  --dark-black: #000000;
  --ink: #2b2b2b;
  --white: #ffffff;
  --off-white: #eaeaea;
  --grey-mid: #666666;
  --grey-line: #dedcd6;
  --grey-bg: #f2f2f2;
  --light-grey-bg: #999999;

  --font-display: "PP Neue Montreal", Arial, sans-serif;
  --font-body: "PP Neue Montreal", Arial, sans-serif;
  --font-caption: "PP Neue Montreal", Arial, sans-serif;
  --font-serif: "PP Neue Montreal", Georgia, serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.65, 0, 0.35, 1);

  font-size: 10px; /* 1rem = 1px @1920 design reference */
}

/* ---- Reset ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html.no-smooth-scroll { scroll-behavior: auto; }
body, h1, h2, h3, h4, p, figure { margin: 0; }
ul { list-style: none; margin: 0; padding: 0; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
img { max-width: 100%; display: block; }
svg { display: block; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: #fff;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1720px;
  margin: 0 auto;
  padding: 0 0rem;
}

header .container {width: 98%; max-width: 1800px;}

section { position: relative; }

/* focus states — accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

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

.skip-link {
  position: absolute;
  top: -4rem; left: 1rem;
  background: var(--black);
  color: var(--white);
  padding: 1rem 1.6rem;
  z-index: 999;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* ---- Eyebrow / label pattern --------------------------------------------- */
.eyebrow {
  font-family: var(--font-caption);
    font-size: clamp(16px, 1.2vw, 20px);
  text-transform: capitalize;
  color: var(--grey-mid);
  text-align: center;
  margin-bottom: 2.7%;
}
.eyebrow--left { text-align: left; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 160;
  height: 10.2rem;
  display: flex;
  align-items: center;
  background: transparent;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
  border-bottom-color: var(--grey-line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header__left {
  display: flex;
  align-items: center;
  gap: 9.6rem;
}
.site-logo {
  display: block;
  width: 20rem; max-width: 157px;
  height: auto;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}
.site-logo img { width: 100%; height: auto; }

.main-nav__list {
  display: flex;
  align-items: center;
  gap: 3.6rem;
}
.main-nav__list a {
  font-family: var(--font-caption);
    font-size: clamp(14px, 1vw, 18px); text-transform: uppercase;
  color: var(--black);
  position: relative;
  padding: 0.4rem 0;
}
.main-nav__list a:hover{    color: var(--red);}

.main-nav__list a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--red);
  transition: right .35s var(--ease);
}
.main-nav__list a:hover::after,
.main-nav__list a:focus-visible::after { right: 0; }

.header-right {
  display: flex;
  align-items: center;
  gap: 3.6rem;
}
.lang-toggle {
  font-family: var(--font-caption);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}

.nav-burger {
  display: none;
  width: 4.4rem; height: 4.4rem;
  align-items: center; justify-content: center;
  position: relative; z-index: 200;
}
.nav-burger span {
  position: absolute;
  width: 2.4rem; height: 1px;
  background: var(--black);
  transition: transform .35s var(--ease), opacity .35s var(--ease), background .3s;
}
.nav-burger span:nth-child(1) { transform: translateY(-0.5rem); }
.nav-burger span:nth-child(2) { transform: translateY(0.5rem); }
.nav-burger.is-open span { background: var(--white); }
.nav-burger.is-open span:nth-child(1) { transform: rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { transform: rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--grey-mid);
  z-index: 150;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 6rem;
  transform: translateY(-100%);
  transition: transform .55s var(--ease-soft);
}
.mobile-nav.is-open { transform: translateY(0); }
.mobile-nav__list a {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--white);
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.mobile-nav.is-open .mobile-nav__list a {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Hero / Banner
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 5rem;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/banner-bg.jpg");
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero__portrait {
  position: absolute;
  top: 0; right: 0;
  width: 50vw;
  max-width: 737px;
  aspect-ratio: 737 / 669;
  z-index: 1;
  will-change: transform;
}
.hero__portrait img {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: top right;
}

.hero__content {
  position: relative;
  z-index: 2;
}
.hero__pretitle {
  font-family: var(--font-body);
 font-size: clamp(28px, 3vw, 48px);
  line-height: 1.15;
  width: 50%;
  margin-bottom: 0rem;font-weight: 100;
}
.hero__title {
  font-family: var(--font-caption);
  font-weight: bold;
     font-size: clamp(40px, 9.5vw, 183px);
  line-height: 0.6;
}
.hero__title .split-line { display: block; }
.hero__title .accent { color: var(--red); }

.hero__desc {
font-family: var(--font-caption);
    font-size: clamp(14px, 1vw, 18px);
    line-height: 1.55;
    max-width: 48%;
    margin-left: auto;
    margin-top: 0;
    text-align: left;
}
.hero__desc strong { font-weight: 700; color: var(--black); }

/* ==========================================================================
   Belief statement
   ========================================================================== */
.belief {
  padding: 14rem 0 12rem;
  text-align: center;
}
.belief__text {
  font-family: var(--font-display);
  font-weight: 500;
font-size: clamp(30px, 3vw, 60px);
  line-height: normal;     width: 77%;
  max-width: 1076px;
  margin: 0 auto;
}

/* ==========================================================================
   Stats / Numbers section
   ========================================================================== */
.stats {
  padding: 4rem 0 16rem;
}

.stats .container { max-width: 1334px; }

.stats__intro {
    font-family: var(--font-caption);
    font-size: clamp(20px, 1.6vw, 30px);
    line-height: 1.5;
    margin-bottom: 6rem;
}
.stats__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px 3px;
  margin: 0 auto;
}
.stat-block {
  position: relative;
  background: var(--red);
  color: var(--white);
  transform: skewX(-12deg);
  min-height: 15.6rem;
}
.stat-block:nth-child(even) { margin-top: 6.4rem; }
.stat-block__inner {
  transform: skewX(12deg);
  padding: 3.4rem 3.2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.stat-block__num {
   font-family: 'PP Fragment Text';
  font-weight: 500;
    font-size: clamp(50px, 4vw, 94px);
  line-height: 1;
}
.stat-block__label {
  font-family: var(--font-caption);
  font-size: clamp(22px, 1.2vw, 28px);
  line-height: 1.3;
}

/* ==========================================================================
   Unified approach statement
   ========================================================================== */
.unified {
  padding: 4rem 0 8rem;
  text-align: center;
}
.unified__text {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 3.6rem;
  line-height: 1.35;
  max-width: 115rem;
  margin: 0 auto;
}

/* ==========================================================================
   Service pillar sections (AI x Human Capital / Business Reform / Marketing / Cyber)
   ========================================================================== */
.pillars-scroll { position: relative; }

.pillar {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 56rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--black);
}
/* later panels stack visually on top as they scroll up over earlier ones */
#pillars .pillar:nth-of-type(1) { z-index: 1; }
#pillars .pillar:nth-of-type(2) { z-index: 2; }
#pillars .pillar:nth-of-type(3) { z-index: 3; }
#pillars .pillar:nth-of-type(4) { z-index: 4; }

.pillar__bg { position: absolute; inset: 0; }
.pillar__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 1.6s var(--ease-soft);
}
.pillar.is-active .pillar__bg img { transform: scale(1); }
.pillar__scrim {
  position: absolute; inset: 0;
  /*background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0.82) 100%);*/
}

.pillar__inner {
  position: relative;
  z-index: 1;
  width: 90%;
  color: var(--white);
}
.pillar__meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-caption);
  font-size: 14px;
  color: var(--light-grey-bg);
  margin-bottom: 3rem;
}
.pillar__meta-list { display: flex; flex-direction: column; gap: 0.4rem; }
.pillar__meta-list li { cursor: pointer; transition: color .25s var(--ease); width: fit-content; }
.pillar__meta-list li:hover { color: var(--white); }
.pillar__meta-list .is-current { color: var(--black); font-weight: 600; }

.pillar__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(60px, 7vw, 175px);
  text-align: center;
  line-height: 1;
  color: var(--dark-black); position: relative; z-index: 2;
  margin: 0 auto;
    width: 70%; max-width: 790px;
}

.pillar__row {
  display: grid;
  grid-template-columns: 1fr 1fr;    align-items: center;
  gap: 6rem;
}
.pillar__desc{
  font-family: var(--font-caption);
    font-size: clamp(20px, 1.5vw, 30px);
  line-height: 1.5;
  max-width: 38rem;
  color: var(--black);
}
.pillar__desc .pillar__tag {
  display: inline-block;
  font-family: var(--font-body);
font-size: clamp(16px, 1vw, 18px);
  color: var(--red);
}
.pillar__aside {
  font-family: var(--font-caption);
    font-size: clamp(14px, 1vw, 18px);
  line-height: 1.5;
  max-width: 34rem;color: var(--black);
  margin-left: auto;
}
.pillar__aside strong { color: var(--red); font-weight: 600; }

/* ==========================================================================
   Seido section
   ========================================================================== */
.seido {
  position: relative;
  padding: 16rem 0 20rem;
  text-align: center;
  overflow: hidden;
  background: var(--white);
}
.seido__eyebrow-text {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 3.4rem;
  line-height: 1.35;
  max-width: 108rem;
  margin: 0 auto 8rem;
}
.seido__mark-wrap {
  position: relative;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 6% 0;
}
.seido__marquee {
  position: absolute;
  left: 0; right: 0;
  white-space: nowrap;
  font-family: var(--font-serif);
  font-weight: 400;
    font-size: clamp(100px, 15vw, 400px);
  color: var(--grey-bg); text-transform: uppercase;
  user-select: none;
}
.seido__marquee--1 { top: 0; }
.seido__marquee--2 { top: 9.5rem; }
.seido__marquee span { display: inline-block; }
.seido__bowl {
  position: relative;
  z-index: 2;
  width: 26rem;
  border-radius: 1.2rem;
  overflow: hidden;

}
.seido__bowl img { width: 100%; }
.seido__caption {
  font-family: var(--font-caption);
font-size: clamp(14px, 1vw, 18px);
  line-height: 1.55;
  max-width: 875px;
  margin: 0 auto;
}
.seido__caption strong { font-weight: 700; }

/* ==========================================================================
   Offices / Map section
   ========================================================================== */
.offices {
  padding: 0;
  text-align: center;
}
.offices__text {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 3.6rem;
  line-height: 1.35;
  max-width: 90rem;
  margin: 0 auto 6rem;
}
.offices__map {
  position: relative;
  max-width: 191rem;
  margin: 0 auto;
}
.offices__map img { width: 100%; opacity: 0.9; }
.map-pin {
  position: absolute;
  width: 50%; max-width: 272px;
  padding: 1.2rem 1.6rem;
  background: var(--white);
  border-radius: 0.6rem;
  box-shadow: 0 1rem 3rem rgba(0,0,0,0.16);
  text-align: left;
  font-family: var(--font-caption);
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.8rem) scale(0.96);
  transform-origin: bottom left;
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
  pointer-events: none;
  z-index: 3;
}
.map-dot:hover + .map-pin,
.map-pin:hover,
.map-pin.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.map-pin__title {
  font-family: var(--font-body);
  font-weight: 400;
    font-size: clamp(18px, 1.7vw, 26px);
  margin-bottom: 0.4rem;
}
.map-pin__desc { font-size: clamp(14px, 1.2vw, 16px); line-height: 1.4; color: var(--grey-mid); }
.map-pin--usa { left: 3%; top: 5%; }
.map-pin--japan { right: 6%; top: 10%; }
.map-pin--india { left: 57%; top: 24%; }
.map-dot {
  position: absolute;
  width: 1rem; height: 1rem;
  border-radius: 50%;
  background: var(--red);
  cursor: pointer;
}
.map-dot::after {
  /* larger invisible hit area for easier hover/tap */
  content: "";
  position: absolute;
  inset: -1rem;
}
.map-dot::before {
  content: "";
  position: absolute; inset: -0.3rem;
  border-radius: 50%;
  border: 1px solid var(--red);
  animation: ping 2.4s ease-out infinite;
}
.map-dot--usa { left: 10%; top: 23%; }
.map-dot--japan { right: 15%; top: 31%; }
.map-dot--india { left: 66%; top: 42%; }

/* ==========================================================================
   Leadership team
   ========================================================================== */
.leadership {
  padding: 14rem 0 4rem;
  text-align: center;
}

.leadership .container, .case-studies .container{ width: 98%;  max-width: inherit;}

.leadership__text {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 3.6rem;
  line-height: 1.35;
  max-width: 76rem;
  margin: 0 auto 8rem;
}
/* ==========================================================================
   Carousel (used by Leadership Team + Case Studies)
   Vanilla JS: swipe, arrows, dots, optional autoplay. See js/carousel.js.
   Per-view count is read from --per-view, set responsively below.
   ========================================================================== */
.carousel {
  position: relative;
  --per-view: 4;
  --gap: 1.1rem;
}
.carousel__viewport {
  overflow: hidden;
}
.carousel__track {
  display: flex;
  gap: var(--gap);
  will-change: transform;
}

.case-studies .carousel__track {}


.carousel__viewport,
.carousel__track {
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  touch-action: pan-y; /* still allows vertical page scroll on touch, blocks horizontal text-select gesture */
}

/* extra safety while actively dragging */
.carousel__track.is-dragging {
  user-select: none;
  -webkit-user-select: none;
}


.carousel__track.is-dragging { transition: none !important; }
.carousel__slide {
  flex: 0 0 calc((100% - (var(--per-view) - 1) * var(--gap)) / var(--per-view));
  min-width: 0;
}
.carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 4.8rem; height: 4.8rem;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--grey-line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--black);
  z-index: 5;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.carousel__arrow:hover { background: var(--black); color: var(--white); border-color: var(--black); }
.carousel__arrow--prev { left: -2.4rem; }
.carousel__arrow--next { right: -2.4rem; }
.carousel__arrow[disabled] { opacity: 0.3; pointer-events: none; }
.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 3rem;
}
.carousel__dots button {
  width: 9px; height: 9px; padding: 0;
  border-radius: 50%;
  background: var(--grey-line);
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.carousel__dots button.is-active { background: var(--red); }

/* Leadership: keep the tall portrait-card look inside each slide */
.team-card {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  background: var(--grey-bg);
}
.team-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter .5s var(--ease);
}
.team-card:hover img { filter: grayscale(0); }
.team-card__caption {
position: absolute;
    left: 0;
    top: 10%;
    right: 0;
    margin: 0 auto;
    color: var(--black);
    text-align: center;
    opacity: 0;    z-index: 2;
    transform: translateY(1rem);
    transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.team-card:hover .team-card__caption { opacity: 1; transform: translateY(0); }
.team-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(218,218,218,0.55), transparent 32%);
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.team-card:hover::after { opacity: 1; }
.team-card__role { font-family: var(--font-caption); font-size: clamp(16px, 1.3vw, 24px); }
.team-card__name { font-family: var(--font-display); font-size: clamp(24px, 2vw, 36px); }

.leadership__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 4rem;
  padding: 1.2rem 2.8rem;
  border: 1px solid var(--red);
  font-family: var(--font-caption);
 font-size: clamp(12px, 0.8vw, 14px);
  text-transform: uppercase;
}

/* ==========================================================================
   Case studies
   ========================================================================== */
.case-studies {
  padding: 14rem 0 10rem;
  text-align: center;
}
.case-studies__text {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 3.6rem;
  line-height: 1.35;
  max-width: 82rem;
  margin: 0 auto 8rem;
}
.case-card {
  background: var(--grey-line);
  padding: 3rem 2rem;
  text-align: left;
  
}

.case-card__logo { height: auto;
    width: 80%;
    max-width: 211px;
    margin: 10px auto;
    object-fit: contain; }
.case-card__name { font-family: var(--font-body); font-size: clamp(16px, 1vw, 20px); font-weight: 400; margin-bottom: 11rem; line-height: 1.3; }
.case-card__tags { font-family: var(--font-caption); font-size: clamp(14px, 0.9vw, 16px); color: var(--red); line-height: 1.5; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--grey-bg);
  color: var(--black);
  padding: 4rem 0; margin-top: 5%;
}


.policy-link {    margin-left: 3rem;}
.policy-link a { position: relative; padding-right:2rem; margin-right:2rem;  }
.policy-link a:after{     content: '';
    width: 1px;
    height: 9px;
    background: var(--black);
    display: inline-block;
    position: absolute;
    right: -0.2rem;
    top: 4px;}
.policy-link a:last-child:after  { display:none;}  

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-family: var(--font-caption);
    font-size: clamp(12px, 0.8vw, 14px);
  color:var(--black);
}
.site-footer__legal { display: flex; flex-wrap: wrap; gap: 0.4rem 0.5rem; }

/* ==========================================================================
   Buttons (magnetic / premium hover)
   ========================================================================== */
.btn-magnetic {
  position: relative;
  display: inline-flex;
}
.btn-magnetic__inner { display: inline-flex; will-change: transform; }

.m-show{ display:none;} 

.srj-layout-wrap{
    display:flex;
    width:80%;
    gap:20px; margin:0 auto;
}

.srj-layout-left{
    flex:0 0 40%;
    max-width:40%;
    padding:20px;
}

.srj-layout-right{
    flex:0 0 60%;
    max-width:60%;
    padding:20px;
}

.s-9 {
    margin: 10vh 0; position: relative; 
}

.s-9 img{    margin: 0 auto;
    position: absolute;
        top: 50%;
    transform: translate(0, -50%);
    left: 0;
    right: 0;
    width: 30%;
    max-width: 613px; }

    .mb-bottom-5{ margin-bottom: 10rem;}
    .heart{color: var(--red); vertical-align: middle; }

@media (max-width:1420px) {
.hero__portrait {
  max-width: 550px;
  aspect-ratio: 237 / 369;
}

.s-9 img{  width: 30%;  max-width: 400px; }
.pillar__aside {
  max-width: 28rem;
}

}


@media (max-width: 900px) {
.desk-show{ display:none;}
.m-show{ display:block;} 
.hero__pretitle { width: 100%; }
.hero__desc {   max-width: 100%; }
.s-9 {
    margin: 20vh 0; position: relative; 
}
.site-header { height: 7rem; }
}


@media (max-width:768px){
.srj-layout-wrap { width: 100%;}

    .srj-layout-wrap{
        flex-direction:column;
    }

    .srj-layout-left,
    .srj-layout-right{
        flex:0 0 100%;
        max-width:100%;
    }

    .policy-link {
    margin-left: 0rem;
    display: block;
    margin-top: 8px;
}

  .pillar__aside { margin-left: 0; }
  .pillar__desc, .pillar__aside {  max-width: 100%; }
.belief__text {  width: 100%;}

.pillar__title {  width: 100%; }

.s-9 img {  width: 80%;  max-width: 443px; }

}