/* ============================================================
   SHVO HOSPITALITY STANDARDS — STYLESHEET
   Theme: Light  |  Backgrounds: #ffffff / #ededed
   ============================================================ */

:root {
  --white: #ffffff;
  --off: #ededed;
  --ink: #1a1a1a;
  --ink-mid: #444444;
  --muted: #888888;
  --border: #d8d8d8;
  --gold: #b8912a;
  --gold-lt: #d4a83e;
  --gold-pale: #f5ecd4;

  --blue: #2c5f9e;
  --red: #b83228;
  --yellow: #c4940e;
  --green: #27724a;
  /* Fonts */
  --serif: "Shvo", serif;
  --sans: "Shvo", sans-serif;
  --font-heading: "Shvo", sans-serif;

  --max: 1100px;
  --gutter: clamp(1.5rem, 5vw, 4rem);
}

/* Light */
@font-face {
  font-family: "Shvo";
  src: url("../fonts/Shvo-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* Regular */
@font-face {
  font-family: "Shvo";
  src: url("../fonts/Shvo-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Bold */
@font-face {
  font-family: "Shvo";
  src: url("../fonts/Shvo-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* ─── RESET ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ─── BASE ─── */
body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading) !important;
  text-shadow: 0 -0.6px 0 currentColor;
  /* text-shadow:
    0.5px 0 0 currentColor,
    -0.5px 0 0 currentColor,
    0 0.5px 0 currentColor,
    0 -0.5px 0 currentColor; */
}
/* ─── LAYOUT ─── */
.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* section {
  min-height: auto;
  padding-block: clamp(48px, 6vw, 90px);
} */
.section--white {
  background: var(--white);
}
.section--off {
  background: var(--off);
}

/* ─── UTILITY ─── */
.gold-rule {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin-block: 1.5rem;
}
.gold-rule--center {
  margin-inline: auto;
}

.section-header {
  margin-bottom: clamp(3rem, 5vw, 5rem);
}
.section-header--center {
  text-align: center;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
@media (max-width: 768px) {
  .split {
    grid-template-columns: 1fr;
  }
}

/* ─── TYPOGRAPHY ─── */
.eyebrow {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

.display {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink);
}
.display--xl {
  font-size: clamp(3rem, 7vw, 7rem);
}
.display--lg {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
}
.display--md {
  font-size: clamp(1.6rem, 3.5vw, 3rem);
}
.display--sm {
  font-size: clamp(1.2rem, 2.5vw, 2rem);
}
.display em {
  font-style: italic;
  color: var(--gold);
}

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: auto;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: url("../img/banner-shvo.jpg") no-repeat top center / cover;
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: var(--gutter);
  /* Sits just below the SHVO word baked into the splash image.
     The word occupies roughly 38-46% from top; 48vh lands cleanly beneath it. */
  margin-top: 55px;
}

.hero__tagline {
  font-family: var(--sans);
  font-size: clamp(0.65rem, 1.4vw, 0.85rem);
  font-weight: 400;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

/* @media (prefers-reduced-motion: reduce) {
  .hero__bg {
    transition: none;
  }
} */

/* ════════════════════════════════════════
   MISSION
════════════════════════════════════════ */
.mission {
  text-align: center;
  padding-block: clamp(5rem, 10vw, 10rem);
  background: var(--white);
}

.mission__headline {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 7vw, 7.5rem);
  font-weight: 300;
  line-height: 1;
  color: var(--ink);
}
.mission__headline strong {
  display: block;
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}
section.shvo-text-section .mission h2.red-txt {
  margin-top: 1rem;
}

/* ════════════════════════════════════════
   STANDARDS CARDS
════════════════════════════════════════ */
.standards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  background: var(--border);
}

.standard-card {
  background: var(--off);
  padding: clamp(2rem, 5vw, 3.5rem);
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.standard-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--gold);
  transition: height 0.4s ease;
}
.standard-card:hover {
  background: var(--off);
}
.standard-card:hover::before {
  height: 100%;
}

.standard-card__num {
  font-family: var(--serif);
  font-size: 5rem;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  margin-bottom: 0.5rem;
  user-select: none;
}

.standard-card__title {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.standard-card ul {
  list-style: none;
}
.standard-card ul li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.75rem;
  font-size: 0.82rem;
  color: var(--ink-mid);
  line-height: 1.65;
}
.standard-card ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
}
.caps-BRYG {
  font-size: clamp(1rem, 1.8vw, 1.8rem);
}

/* ════════════════════════════════════════
   AVOID LIST
════════════════════════════════════════ */
.avoid-list {
  columns: 2;
  column-gap: 3rem;
  list-style: none;
}
@media (max-width: 640px) {
  .avoid-list {
    columns: 1;
  }
}

.avoid-list li {
  break-inside: avoid;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--ink-mid);
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.avoid-list li::before {
  content: "✕";
  color: var(--red);
  font-size: 0.62rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

/* ════════════════════════════════════════
   MINDSETS LIST
════════════════════════════════════════ */
.mindsets-list {
  list-style: none;
  counter-reset: mindset;
}
.mindsets-list li {
  counter-increment: mindset;
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  align-items: baseline;
  padding-block: 1.1rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.86rem;
  color: var(--ink-mid);
}
.mindsets-list li::before {
  content: counter(mindset, decimal-leading-zero);
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--border);
  font-weight: 300;
}
.mindsets-list li.highlight {
  color: var(--ink);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.mindsets-list li.highlight::before {
  color: var(--gold);
}

/* ════════════════════════════════════════
   PLATINUM RULE
════════════════════════════════════════ */
.platinum {
  text-align: center;
  background: var(--ink);
  padding: clamp(3rem, 8vw, 7rem) var(--gutter);
}
.platinum__rule-label {
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 1.5rem;
}
.platinum__text {
  font-family: var(--serif);
  font-size: clamp(2rem, 5.5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: #ffffff;
}
.platinum__text em {
  font-style: italic;
  color: var(--gold-lt);
  border-bottom: 1px solid var(--gold);
}

/* ════════════════════════════════════════
   PRIORITY SYSTEMS
════════════════════════════════════════ */
.priorities {
  padding-block: clamp(4rem, 8vw, 8rem);
  background: var(--off);
}

.priorities__header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.priorities__logo {
  display: block;
  width: 300px;
  max-width: 100%;
  margin-inline: auto;
}

.priorities__sub {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  margin-top: 0.75rem;
}
/* Color cards */
.color-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .color-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 400px) {
  .color-cards {
    grid-template-columns: 1fr;
  }
}

.color-card {
  position: relative;
  padding: 2.5rem 1.8rem;
  background: var(--white);
  overflow: hidden;
  cursor: default;
  transition:
    transform 0.3s,
    background 0.3s;
}
.color-card:hover {
  transform: translateY(-3px);
  z-index: 1;
  background: var(--off);
}

.color-card__bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}
.color-card--blue .color-card__bar {
  background: var(--blue);
}
.color-card--red .color-card__bar {
  background: var(--red);
}
.color-card--yellow .color-card__bar {
  background: var(--yellow);
}
.color-card--green .color-card__bar {
  background: var(--green);
}

.color-card__label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.color-card--blue .color-card__label {
  color: var(--blue);
}
.color-card--red .color-card__label {
  color: var(--red);
}
.color-card--yellow .color-card__label {
  color: var(--yellow);
}
.color-card--green .color-card__label {
  color: var(--green);
}

.color-card__name {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 1.2rem;
  line-height: 1;
}
.color-card__traits {
  list-style: none;
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 2;
}

.color-card__icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 1.2rem;
}
/* Cue panels */
.cue-panels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
}
@media (max-width: 640px) {
  .cue-panels {
    grid-template-columns: 1fr;
  }
}

.cue-panel {
  background: var(--white);
  padding: clamp(2rem, 5vw, 3rem);
  position: relative;
  overflow: hidden;
}

.cue-panel__bg-icon {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 130px;
  height: 130px;
  object-fit: contain;
  /*opacity: 0.10;*/
  pointer-events: none;
  user-select: none;
}
/*.cue-panel::after {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 130px; height: 130px;
  border-radius: 50%;
  opacity: 0.07;
}*/
.cue-panel--blue::after {
  background: var(--blue);
}
.cue-panel--red::after {
  background: var(--red);
}
.cue-panel--yellow::after {
  background: var(--yellow);
}
.cue-panel--green::after {
  background: var(--green);
}

.cue-panel__attn {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.3rem;
}
.cue-panel__focus {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.color-blue {
  color: var(--blue);
}
.color-red {
  color: var(--red);
}
.color-yellow {
  color: var(--yellow);
}
.color-green {
  color: var(--green);
}

.cue-panel--blue .cue-panel__focus {
  color: var(--blue);
}
.cue-panel--red .cue-panel__focus {
  color: var(--red);
}
.cue-panel--yellow .cue-panel__focus {
  color: var(--yellow);
}
.cue-panel--green .cue-panel__focus {
  color: var(--green);
}

.cue-panel__heading {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.cue-panel ul {
  list-style: none;
  font-size: 0.8rem;
  color: var(--ink-mid);
}
.cue-panel ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 0.75rem;
}
.cue-panel ul li::before {
  content: "→";
  color: var(--muted);
  flex-shrink: 0;
}
.cue-panel ul li:last-child {
  border-bottom: none;
}

.cue-panel__constraint {
  margin-top: 1.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--strong);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cue-panel__constraint::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--border);
}

.cue-panel ul li.highlight-blue {
  border-bottom-color: var(--blue);
  border-bottom-width: 3px;
}
.cue-panel ul li.highlight-red {
  border-bottom-color: var(--red);
  border-bottom-width: 3px;
}
.cue-panel ul li.highlight-yellow {
  border-bottom-color: var(--yellow);
  border-bottom-width: 3px;
}
.cue-panel ul li.highlight-green {
  border-bottom-color: var(--green);
  border-bottom-width: 3px;
}
.cue-panel ul li.highlight-gold {
  border-bottom-color: var(--gold);
  border-bottom-width: 3px;
}

/* ════════════════════════════════════════
   DEMI BOW
════════════════════════════════════════ */
.demi-bow {
  text-align: center;
}
.demi-bow__img {
  width: clamp(140px, 30vw, 260px);
  margin-inline: auto;
  margin-bottom: 2rem;
}
.demi-bow__caption {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ════════════════════════════════════════
   NO PROBLEM / MY PLEASURE
════════════════════════════════════════ */
.phrase-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
}
@media (max-width: 580px) {
  .phrase-split {
    grid-template-columns: 1fr;
  }
}

.phrase-panel {
  padding: clamp(2.5rem, 6vw, 5rem);
  text-align: center;
  background: var(--off);
  display: flex;
  align-items: center;
  justify-content: center;
}
.phrase-panel--no {
  background: #fdf0f0;
}
.phrase-panel--yes {
  background: #f0faf4;
}

.phrase-panel img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ════════════════════════════════════════
   WHOLE STORY / CLARITY
════════════════════════════════════════ */
.story-section {
  background: var(--white);
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
  text-align: center;
}
.story-section .gold-rule {
  margin-inline: auto;
}
.story-section h2 {
  margin-bottom: 2.5rem;
}
.story-section__image {
  width: 100%;
  max-width: 860px;
  height: auto;
  display: block;
  margin-inline: auto;
}

/* ════════════════════════════════════════
   EMPATHY
════════════════════════════════════════ */
.empathy-section {
  text-align: center;
}

.empathy-section__quote {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  line-height: 1.6;
  max-width: 38ch;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  position: relative;
}
.empathy-section__quote::before {
  content: "\201C";
  font-family: var(--serif);
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.25;
  position: absolute;
  top: -2rem;
  left: -1rem;
  line-height: 1;
  pointer-events: none;
}

.empathy-section__quote::after {
  content: "\201D";
  font-family: var(--serif);
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.25;
  position: absolute;
  bottom: -1.5rem;
  right: -1rem;
  line-height: 1;
  pointer-events: none;
}
.empathy-section__author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}
.empathy-section__author::before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--gold);
  display: block;
  margin-bottom: 1rem;
}
.empathy-section__name {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
}
.empathy-section__title {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}
/* ════════════════════════════════════════
   ESSENTIAL COMMITMENTS
════════════════════════════════════════ */
.commitments-list {
  list-style: none;
  counter-reset: commit;
}
.commitments-list li {
  counter-increment: commit;
  display: grid;
  grid-template-columns: 3rem 1fr;
  align-items: baseline;
  padding-block: 1.2rem;
  border-bottom: 1px solid var(--border);
}
.commitments-list li::before {
  content: counter(commit);
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.commitments-list li span {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.5;
}
.commitments-list li span em {
  display: block;
  font-style: normal;
  color: var(--muted);
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: none;
  margin-top: 0.15rem;
  font-size: 0.75rem;
}

/* ════════════════════════════════════════
   SHVO ACRONYM
════════════════════════════════════════ */
.shvo-acronym {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}
@media (max-width: 640px) {
  .shvo-acronym {
    grid-template-columns: repeat(2, 1fr);
  }
}

.shvo-letter {
  background: var(--white);
  padding: clamp(2rem, 5vw, 3.5rem) 1.5rem;
  text-align: center;
  transition: background 0.3s;
}
.shvo-letter:hover {
  background: var(--off);
}

.shvo-letter__char {
  font-family: var(--serif);
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 300;
  line-height: 1;
  color: var(--ink);
  transition: color 0.3s;
}
.shvo-letter:hover .shvo-letter__char {
  color: var(--gold);
}

.shvo-letter__word {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.5rem;
  display: block;
}
.shvo-letter__desc {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

/* ════════════════════════════════════════
   UBUNTU
════════════════════════════════════════ */
.ubuntu {
  text-align: center;
  padding: clamp(5rem, 10vw, 10rem) var(--gutter);
  background: var(--ink);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
/*.ubuntu::before {
  content: 'UBUNTU';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-size: clamp(5rem, 18vw, 18rem);
  font-weight: 300;
  color: rgba(255,255,255,0.04);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.02em;
}*/
.ubuntu__content {
  position: relative;
  z-index: 1;
}

.ubuntu__tag {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 0.75rem;
}
.ubuntu__def {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}
.ubuntu__text {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 7vw, 7rem);
  font-weight: 300;
  line-height: 1.15;
  color: #ffffff;
}
.ubuntu__text em {
  font-style: italic;
  color: var(--gold-lt);
}

/* ════════════════════════════════════════
   PHOTO STRIP
════════════════════════════════════════ */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  background: transparent;
}
@media (max-width: 640px) {
  .photo-strip {
    grid-template-columns: 1fr;
  }
}

.photo-strip div {
  overflow: hidden;
}
.photo-strip img {
  width: 100%;
  /*height: clamp(200px, 30vw, 380px);*/
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.85);
  transition:
    filter 0.4s,
    transform 0.4s;
  display: block;
}
.photo-strip div:hover img {
  filter: saturate(1);
  transform: scale(1.04);
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
footer {
  background: var(--off);
  border-top: 1px solid var(--border);
  padding: clamp(3rem, 6vw, 5rem) var(--gutter);
  text-align: center;
}
.footer__logos {
  max-width: 280px;
  margin-inline: auto;
}
.footer__legal {
  font-size: 0.62rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  line-height: 1.9;
  max-width: 60ch;
  margin-inline: auto;
}

.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--ink);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s,
    visibility 0.3s,
    background 0.3s;
  z-index: 999;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}
.scroll-top:hover {
  background: var(--gold);
}

/* CSS 06-29-2026 */
section.shvo-hospital {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.shvo-hospital h2 {
  text-transform: uppercase;
  margin-top: 1rem;
}
.shvo-hospital img {
  width: 200px;
}
.vhcenter {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.h-100vh {
  height: 100vh;
}
section.shvo-text-section .red-txt {
  margin-top: 50px;
}
.moment-section {
  line-height: 1.2;
  margin: 0 auto;
}
.moment-section h2.red-txt {
  font-size: 48px;
}
h2.red-txt {
  color: #bf0808;
  font-weight: 700;
  font-size: 30px;
}
h2.black-text {
  font-size: 40px;
}

.body-lang-title {
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  margin-bottom: 4px;
}

.body-lang-divider {
  border: none;
  border-top: 1.5px solid #000;
  width: 90%;
  margin: 0 auto;
  margin-bottom: 20px;
}

.body-lang-list {
  padding-left: 24px;
}
ul.body-lang-list {
  margin: 0 auto;
  width: 90%;
}

ul.body-lang-list li {
  line-height: 44px !important;
  font-weight: 500;
  font-size: 20px;
}

h2.bold {
  font-weight: bolder;
  font-size: 32px;
}
h2 span {
  text-shadow: none;
}
.bold {
  text-shadow: 0 -0.6px 0 currentColor;
  /* text-shadow:
    0.5px 0 0 currentColor,
    -0.5px 0 0 currentColor,
    0 0.5px 0 currentColor,
    0 -0.5px 0 currentColor; */
}
section.shvo-text-section.priosys-logo {
  text-align: center;
  justify-content: start;
  /* margin-block: 6%; */
}
section.shvo-text-section.priosys-logo img {
  text-align: center;
  margin: 0 auto;
}
.priosys-sys-content-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-top: 70px;
  width: 100%;
}

.priosys-sys-content {
  width: 25%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  text-align: center;
  padding-block: 80px;
  border-right: 1px solid #444;
  font-size: 18px;
  font-weight: 600;
}
.priosys-sys-content:last-child {
  border-right: none;
}
.priosys-sys-content-wrapper .content {
  font-size: 12px;
  line-height: 2;
  margin-top: 6px;
}
.priosys-sys-content img {
  width: 64px;
}
.priosys-sys p.blue-text {
  color: #3a658c;
  font-weight: 500;
  font-size: 24px;
}
.priosys-sys p.red-text {
  color: #b20000;
  font-weight: 500;
  font-size: 24px;
}
.priosys-sys p.yellow-text {
  color: #724e00;
  font-weight: 500;
  font-size: 24px;
}
.priosys-sys p.green-text {
  color: #1f6500;
  font-weight: 500;
  font-size: 24px;
}
.priosys-sys .content b {
  font-weight: 500;
}
span.blue-text {
  color: #0066cc;
}
span.yellow-text {
  color: #ffdc00;
}
span.red-text {
  color: #c00000;
}
span.green-text {
  color: #99cc33;
}
.font-16 {
  font-size: 16px;
  margin-bottom: 10px;
}
.attention-section h2 {
  text-shadow: none;
}

ul.no-style {
  list-style: none;
  margin-top: 2rem;
}
ul.no-style li {
  font-weight: 500;
  line-height: 40px;
  font-size: 20px;
}
section.shvo-filter.text-center {
  width: 100%;
  display: flex;
  justify-content: center;
}
.demi-bow {
  display: block;
  margin: 0 auto;
}
.image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.shvo-images {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}
.image-section {
  width: 90%;
}
.image .image-section {
  display: flex;
  flex-wrap: nowrap;
  gap: clamp(24px, 4vw, 70px);
  justify-content: space-between;
}
.image-col {
  width: 50%;
}
.image-wrap {
  width: 340px;
  margin: 0 auto;
}
.image-wrap.pleasure-img {
  width: 320px;
}

.clarity-section h1 {
  font-size: 60px;
}
h1.red-text {
  color: #cc3333;
}
.story-image {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding-top: 40px;
}
.story-image img {
  width: 100%;
}
p.big-text {
  width: 44%;
  margin: 0 auto;
  font-weight: bold;
  font-size: 22px;
}
.small-text {
  font-size: 14px;
}
.shvo-text-section span {
  font-weight: normal;
}
ul.shvo-ul-section.shvo-ul-section--essential {
  width: 65%;
}
h2.simple {
  font-weight: normal;
  text-align: left;
}
.every-point-section div:nth-child(1) {
  width: 60%;
  margin: 0 auto;
}
.every-point-section h2 {
  text-shadow: none;
}
span.bold {
  font-weight: 700;
  font-size: 22px;
}
p.line-ht {
  margin-top: 30px;
}

h2.text-yellow.bg-txt {
  margin-top: 100px;
  color: #ffcc00;
}
.shvo-images-row {
  display: flex;
  gap: 10px;
  padding-inline: 180px;
}

/* section {
  min-height: 75vh;
} */
.text-center {
  text-align: center;
}
.list-number {
  list-style: number;
}
.shvo-ul-section {
  padding-left: 144px;
}
.shvo-ul-section li {
  padding-left: 1rem;
}
.shvo-platinum-section {
  width: 95%;
}
.shvo-text-section .shvo-platinum-section .red-txt {
  margin-top: 3rem;
  line-height: 2;
  letter-spacing: 2px;
  text-shadow: none;
}

.diagram {
  position: relative;
  padding-left: 122px;
}
.shvo-filter-wrap {
  position: relative;
}
/* Circle image */
.circle-img {
  width: 200px;
  height: auto;
  display: block;
  flex-shrink: 0;
}

/* Connector line */
.shvo-filter .connector {
  width: 260px;
  height: 3px;
  background: #1f6fb2;
  flex-shrink: 0;
  position: absolute;
  top: 49%;
  left: 100%;
}
.shvo-filter .red-connector {
  background: #cc3333;
  top: 50%;
}
.shvo-filter .yellow-connector {
  background: #ffcc00;
}
.shvo-filter .green-connector {
  background: #99cc33;
}

/* Text content */
.shvo-filter-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
  padding-left: clamp(40px, 8vw, 170px);
}
.circle-img-wrap {
  position: absolute;
  top: 52px;
  left: -132px;
}
.filter h2 {
  margin: 0 0 12px 0;
  font-size: 24px;
  font-weight: 800;
  color: #111111;
  letter-spacing: 0.5px;
}

.migrate ul,
.filter ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.migrate li,
.filter li {
  font-size: 16px;
  font-weight: 500;
  color: #222222;
  line-height: 1.9;
}

.bold {
  font-weight: bold;
}
.pt-0 {
  padding-top: 0;
}
.platinum-section h2 {
  font-size: 40px;
  text-shadow: none;
}
.platinum-section .font-big {
  font-size: 48px;
}

/* .platinum-section {
  min-height: auto;
  padding-block: 80px;
} */
/* section.image {
  min-height: auto;
  padding-block: 70px;
} */
.section-pb {
  padding-bottom: 100px;
}

/* =====================================
   Global Responsive Spacing
====================================== */

/* section {
  min-height: auto !important;
  padding-block: clamp(48px, 7vw, 90px);
} */

.shvo-text-section {
  /* padding-top: clamp(48px, 6vw, 80px);
  padding-bottom: clamp(48px, 6vw, 80px); */
}

/* .section-pb {
  padding-bottom: clamp(48px, 6vw, 80px);
} */
.section-pb {
  padding-bottom: clamp(48px, 9vw, 200px);
}
.first-impression {
  margin-top: -100px;
}

/* .first-impression,
.platinum-section,
.clarity-section,
.image,
.whole-story-section,
.empathy-section,
.priosys-sys,
.shvo-hospital {
  min-height: auto !important;
  height: auto !important;
} */

h1 {
  font-size: clamp(2rem, 4vw, 4.5rem);
}

h2 {
  font-size: clamp(1.4rem, 3vw, 2.5rem);
}

.body-lang-list li {
  line-height: 1.8;
}

p.big-text {
  width: min(700px, 90%);
  margin: 60px auto 0;
}

.image .image-section {
  gap: clamp(24px, 5vw, 60px);
}

ul.body-lang-list.essential-mindsets-ul li:last-child::marker {
  font-weight: 900;
}
.migrate h2 {
  font-size: 24px;
}
.demi-title {
  font-size: 28px;
}
.demi-content {
  font-size: 32px;
}

.every-point-section h2 {
  font-size: 20px;
}

/* Base slide behavior — apply to every section */
section {
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3% 5%; /* use % not px, so it scales with the slide */
  box-sizing: border-box;
}
section.slide {
  --ratio: 16/9;
  aspect-ratio: var(--ratio);
  height: min(100vh, 100vw * 9 / 16);
  width: min(100vw, 100vh * 16 / 9);
}

section.justify-content-start {
  justify-content: flex-start !important;
}

/* Scale typography relative to slide width instead of fixed px */
section h2 {
  font-size: clamp(1rem, 2vw, 2rem);
}

section p,
section li {
  font-size: clamp(0.75rem, 1.2vw, 1.1rem);
}

/* If slides should scroll one after another */
body {
  margin: 0;
  scroll-snap-type: y mandatory;
}
section {
  scroll-snap-align: start;
}

.body-lang-section,
.priosys-sys,
.whole-story-section {
  margin-top: -200px;
}
.clarity-section {
  padding-top: 100px;
}

h2.font-16 span,
h2 span.caps-BRYG,
.empathy-section .big-text {
  text-shadow: 0 -0.6px 0 currentColor;
  /* text-shadow:
    0.2px 0 0 currentColor,
    -0.2px 0 0 currentColor,
    0 0.2px 0 currentColor,
    0 -0.2px 0 currentColor; */
}
p.big-text {
  line-height: 2;
}
.footer-logo-wrapper {
  display: flex;
  justify-content: center;
  gap: 75px;
  margin-bottom: 2.5rem;
}
.footer-logo {
  width: 160px;
}
.footer-logo.footer-logo--nca {
  width: 120px;
}
.footer-logo img {
  width: 100%;
}
@media (min-width: 1400px) {
  .clarity-section h1 {
    font-size: 72px;
  }
}

@media (max-width: 1199px) {
  p.big-text {
    width: 100%;
    font-size: 20px;
  }
  .demi-title {
    font-size: 24px;
  }
  .demi-content {
    font-size: 28px;
  }
}
@media (max-width: 991px) {
  p.big-text {
    width: 100%;
  }
  .shvo-images {
    margin-bottom: 50px;
  }
  .body-lang-section,
  .priosys-sys,
  .whole-story-section {
    margin-top: 0;
  }
  ul.body-lang-list li,
  ul.no-style li {
    font-size: 16px;
  }
  ul.shvo-ul-section.shvo-ul-section--essential,
  .shvo-ul-section {
    margin: 0 auto;
    width: 90%;
    padding-left: 24px;
  }
  .shvo-filter-content {
    padding-left: clamp(40px, 14vw, 170px);
  }
  section.shvo-text-section.priosys-logo {
    justify-content: center;
  }

  .platinum-section h2 {
    font-size: 25px;
  }
  .platinum-section .font-big {
    font-size: 32px;
  }
  .every-point-section div:nth-child(1) {
    width: 100%;
    padding-inline: 24px;
  }
  section h2 {
    font-size: 20px;
  }
  .shvo-images-row {
    padding-inline: 0;
  }
}
@media (max-width: 767px) {
  .clarity-section h1.red-text {
    font-size: 50px;
  }
  .image-col,
  .shvo-platinum-section {
    width: 100%;
  }
  .shvo-images-row {
    padding-inline: 20px;
  }
  .story-image {
    width: auto;
  }

  .diagram {
    padding: 0;
  }
  .shvo-filter-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
  }
  .circle-img-wrap {
    position: relative;
    display: block;
    top: 0;
    left: 0;
  }
  .shvo-filter-content {
    padding: 0;
    text-align: center;
  }
  .shvo-filter .connector {
    display: none;
  }
  .shvo-images-row {
    flex-direction: column;
  }
  .shvo-images-col {
    margin: 0 auto;
  }
  .shvo-images-col img {
    width: 188px;
  }
  .image .image-section {
    gap: 20px;
  }
  h2,
  h2.black-text,
  h1,
  h2.red-txt,
  h2.bold {
    font-size: 24px;
  }
  h2.black-text {
    font-size: 24px;
  }
  .moment-section h2.red-txt {
    font-size: 26px;
  }
  h1.red-text {
    font-size: 26px;
  }

  .body-lang-title {
    font-size: 20px;
  }

  p.bold.big-text {
    margin-top: 20px;
    width: 100%;
  }

  .hero__bg {
    width: 100%;
  }
  .shvo-text-section {
    padding-top: 60px;
  }
  section.image {
    min-height: 60vh;
  }

  .image-wrap,
  .image-wrap.pleasure-img {
    width: 220px;
  }

  .priosys-sys,
  .section-pb {
    padding-bottom: 50px;
  }
  .demi-title {
    font-size: 20px;
  }
  .demi-content {
    font-size: 24px;
  }
  p.big-text {
    font-size: 18px;
  }
  .first-impression {
    margin-top: 0;
  }
  .platinum-section .font-big {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  /* section.platinum-section {
    padding-block: 50px;
  } */
  section.slide {
    --ratio: unset;
    height: auto;
  }
  .shvo-hospital.slide {
    padding-top: 100px;
  }
  .priosys-logo.slide {
    padding-block: 90px 60px;
  }
  .priosys-sys-content {
    width: 100%;
    border-right: none;
    padding-block: 1rem;
  }
  .priosys-sys-content-wrapper {
    flex-direction: column;
    margin-top: 0;
  }
  .image {
    padding-block: 50px;
  }
  .image .image-section {
    flex-wrap: wrap;
  }
  img,
  .image-wrap,
  .image-wrap.pleasure-img,
  .circle-img {
    width: 200px;
  }

  p.big-text {
    width: 100%;
    margin-top: 60px;
    font-size: 14px;
  }
  .clarity-section {
    padding-bottom: 50px;
  }
  .shvo-hospital img {
    width: 150px;
  }
  .footer-logo-wrapper {
    gap: 45px;
  }
  .footer-logo {
    width: 100px;
  }
  .footer-logo.footer-logo--nca {
    width: 85px;
  }
}
