/* ==========================================================================
   ABADI — Asosiasi Bisnis Alih Daya Indonesia
   Redesign: modern + responsive. Palet mengikuti warna logo (navy + gold),
   bahasa desain mengikuti referensi asdeki.id (modern, clean, rounded).
   ========================================================================== */

:root {
  /* Brand — diambil dari logo ABADI (navy #1A2E4D, gold #D4AF37) */
  --navy-950: #050d1c;
  --navy-900: #081326;
  --navy-800: #0d1f3a;
  --navy-700: #14294a;
  --navy-600: #1a2e4d;
  --navy-500: #25406b;
  --navy-400: #34527f;
  --navy-300: #5b779e;

  --gold: #d4af37;
  --gold-600: #b8952a;
  --gold-400: #e2c25c;
  --gold-200: #f0dc9d;
  --gold-050: #fbf4df;

  --paper: #ffffff;
  --mist: #f5f8fc;
  --mist-2: #eaf1f9;
  --ink: #0b1b33;
  --slate: #556684;
  --slate-2: #7c8aa5;
  --line: #e3e9f2;
  --line-dark: rgba(255, 255, 255, 0.12);

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-xs: 0 1px 2px rgba(11, 27, 51, 0.06);
  --shadow-sm: 0 2px 8px -2px rgba(11, 27, 51, 0.1), 0 1px 3px rgba(11, 27, 51, 0.05);
  --shadow: 0 14px 34px -16px rgba(11, 27, 51, 0.22), 0 3px 10px -4px rgba(11, 27, 51, 0.08);
  --shadow-lg: 0 34px 70px -28px rgba(8, 19, 38, 0.42), 0 8px 24px -12px rgba(8, 19, 38, 0.16);
  --shadow-gold: 0 18px 40px -18px rgba(212, 175, 55, 0.55);

  --header-h: 74px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font-display: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}

/* ------------------------------- reset ---------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

input,
button,
textarea,
select {
  font: inherit;
  box-sizing: border-box;
}
input[type="search"] {
  box-sizing: border-box;
}

html {
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  text-align: left;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
  border: 0;
  background: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--navy-800);
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 6px;
}

::selection {
  background: var(--gold);
  color: var(--navy-900);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--gold);
  color: var(--navy-900);
  padding: 12px 18px;
  font-weight: 600;
  border-radius: 0 0 12px 0;
}
.skip-link:focus {
  left: 0;
}

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

/* ------------------------------ layout ---------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(18px, 4.5vw, 40px);
}

.section {
  padding-block: clamp(56px, 8vw, 108px);
  position: relative;
  /* below-the-fold sections are only laid out/painted as they approach the
     viewport — keeps scrolling light on low-end phones */
  content-visibility: auto;
  contain-intrinsic-size: auto 1100px;
}

.section--tight {
  padding-block: clamp(44px, 6vw, 76px);
}

.section--dark {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.78);
}
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: #fff;
}

.section--mist {
  background: var(--mist);
}

.section--mist-2 {
  background: linear-gradient(180deg, var(--paper) 0%, var(--mist) 22%, var(--mist) 78%, var(--paper) 100%);
}

/* ------------------------------ typography ------------------------------ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.section--dark .eyebrow {
  color: var(--gold-400);
}

.section-title {
  font-size: clamp(1.7rem, 4.4vw, 2.6rem);
  margin-bottom: 16px;
  text-wrap: balance;
}

.section-lead {
  color: var(--slate);
  font-size: clamp(0.98rem, 2.2vw, 1.09rem);
  max-width: 68ch;
  text-wrap: pretty;
}
.section--dark .section-lead {
  color: rgba(255, 255, 255, 0.72);
}

.section-head {
  max-width: 760px;
  margin-bottom: clamp(32px, 5vw, 56px);
}
.section-head--center {
  margin-inline: auto;
  text-align: center;
}
.section-head--center .section-lead {
  margin-inline: auto;
}

.gold-text {
  background: linear-gradient(102deg, var(--gold-400) 0%, var(--gold) 45%, var(--gold-600) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold);
}

/* ------------------------------- buttons -------------------------------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.94rem;
  line-height: 1;
  padding: 15px 24px;
  border-radius: 999px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn svg {
  width: 17px;
  height: 17px;
  flex: none;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0);
}

.btn--gold {
  background-image: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.6) 50%, transparent 60%),
    linear-gradient(140deg, var(--gold-400), var(--gold));
  background-size: 230% 100%, 100% 100%;
  background-position: -130% 0, 0 0;
  background-repeat: no-repeat;
  color: var(--navy-900);
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover {
  box-shadow: 0 22px 46px -18px rgba(212, 175, 55, 0.7);
}

.btn--outline {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
}
.btn--outline:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn--dark {
  background: var(--navy-700);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn--dark:hover {
  background: var(--navy-600);
  box-shadow: var(--shadow);
}

.btn--ghost {
  border-color: var(--line);
  color: var(--navy-700);
  background: var(--paper);
}
.btn--ghost:hover {
  border-color: var(--navy-300);
  box-shadow: var(--shadow-sm);
}

.btn--sm {
  padding: 11px 18px;
  font-size: 0.86rem;
}

/* ------------------------------- header --------------------------------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.header.is-scrolled,
.header.is-solid {
  background: rgba(6, 15, 30, 0.92);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line-dark);
  box-shadow: 0 10px 40px -22px rgba(0, 0, 0, 0.7);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: none;
}
.brand__logo {
  flex: none;
  height: 44px;
  display: block;
  transition: transform 0.45s var(--ease), filter 0.45s;
}
.brand:hover .brand__logo {
  transform: translateY(-2px);
}
.brand__logo img {
  height: 100%;
  width: auto;
  display: block;
  transition: filter 0.45s;
}
.brand:hover .brand__logo img {
  filter: drop-shadow(0 6px 16px rgba(212, 175, 55, 0.4));
}
.brand__text {
  display: none;
  line-height: 1.2;
}
.brand__name {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.1;
  letter-spacing: 0.02em;
}
.brand__sub {
  display: block;
  margin-top: 3px;
  font-size: 0.62rem;
  line-height: 1.1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-400);
  font-weight: 500;
}

.nav {
  display: none;
  margin-left: auto;
}
.nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__link {
  position: relative;
  display: block;
  padding: 9px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  transition: color 0.25s, background 0.25s;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width 0.3s var(--ease);
}
.nav__link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}
.nav__link.is-active {
  color: #fff;
}
.nav__link.is-active::after {
  width: 22px;
}

.header__cta {
  display: none;
  margin-left: 12px;
}

.burger {
  margin-left: auto;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line-dark);
  color: #fff;
  transition: background 0.25s;
}
.burger:hover {
  background: rgba(255, 255, 255, 0.16);
}
.burger__box {
  width: 20px;
  height: 14px;
  position: relative;
}
.burger__box span {
  position: absolute;
  left: 0;
  height: 2px;
  width: 100%;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.25s;
}
.burger__box span:nth-child(1) {
  top: 0;
}
.burger__box span:nth-child(2) {
  top: 6px;
}
.burger__box span:nth-child(3) {
  top: 12px;
}
.is-menu-open .burger__box span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.is-menu-open .burger__box span:nth-child(2) {
  opacity: 0;
}
.is-menu-open .burger__box span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* mobile drawer */
.drawer {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 99;
  background: linear-gradient(170deg, var(--navy-900), var(--navy-800));
  padding: 26px clamp(18px, 5vw, 34px) 40px;
  overflow-y: auto;
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), transform 0.4s var(--ease), visibility 0.3s;
}
.drawer.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.drawer__list {
  display: grid;
  gap: 2px;
  margin-bottom: 26px;
}
.drawer__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 6px;
  font-family: var(--font-display);
  font-size: 1.16rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid var(--line-dark);
}
.drawer__link svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  opacity: 0.7;
}
.drawer__link.is-active {
  color: var(--gold-400);
}
.drawer__footer {
  display: grid;
  gap: 14px;
}
.drawer__contact {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.62);
  display: grid;
  gap: 4px;
}
.drawer__contact strong {
  color: #fff;
  font-weight: 600;
}

/* --------------------------------- hero --------------------------------- */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(38px, 7vw, 76px));
  padding-bottom: clamp(48px, 7vw, 96px);
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.78);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0 0 -46px 0;
  z-index: -2;
  background: radial-gradient(120% 90% at 82% 8%, rgba(37, 64, 107, 0.85) 0%, transparent 58%),
    radial-gradient(90% 70% at 8% 92%, rgba(212, 175, 55, 0.16) 0%, transparent 62%),
    linear-gradient(165deg, var(--navy-950) 0%, var(--navy-900) 42%, #0b1d38 100%);
}
.hero__grid {
  position: absolute;
  inset: 0 0 -96px 0;
  z-index: -1;
  background-image: linear-gradient(rgba(255, 255, 255, 0.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.038) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(115% 92% at 50% 20%, #000 42%, transparent 78%);
  -webkit-mask-image: radial-gradient(115% 92% at 50% 20%, #000 42%, transparent 78%);
}

.hero__inner {
  display: grid;
  gap: clamp(38px, 6vw, 64px);
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 15px 7px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line-dark);
  font-size: 0.76rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.01em;
  margin-bottom: 22px;
}
.hero__badge b {
  background: var(--gold);
  color: var(--navy-900);
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
}

.hero__title {
  font-size: clamp(2.1rem, 6.6vw, 3.85rem);
  color: #fff;
  margin-bottom: 20px;
  text-wrap: balance;
}
.hero__title .line {
  display: block;
}

.hero__lead {
  font-size: clamp(1rem, 2.4vw, 1.13rem);
  color: rgba(255, 255, 255, 0.74);
  max-width: 56ch;
  margin-bottom: 30px;
  text-wrap: pretty;
}
.hero__lead strong {
  color: #fff;
  font-weight: 600;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
}
.hero__meta li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.7);
}
.hero__meta svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex: none;
}

/* hero collage */
.hero__visual {
  position: relative;
  min-height: 300px;
}
.collage {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
}
.collage__card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--navy-800);
  --shimmer-bg: rgba(255, 255, 255, 0.07);
  aspect-ratio: 4 / 3;
}
.collage__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.collage__card:hover img {
  transform: scale(1.05);
}
.collage__card--a {
  grid-row: span 2;
  aspect-ratio: 3 / 4;
}
.collage__card--c {
  grid-column: 2;
}

.collage__badge {
  position: absolute;
  left: -10px;
  bottom: 22px;
  z-index: 3;
  background: #fff;
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 13px;
}
.collage__badge .num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy-800);
  line-height: 1;
}
.collage__badge .lbl {
  font-size: 0.72rem;
  color: var(--slate);
  line-height: 1.35;
  max-width: 12ch;
}
.collage__ring {
  position: absolute;
  inset: -18% -12% auto auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 1px dashed rgba(212, 175, 55, 0.35);
  z-index: -1;
}

/* stats */
.stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(38px, 6vw, 62px);
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat {
  background: rgba(8, 19, 38, 0.6);
  padding: clamp(20px, 3.2vw, 30px) clamp(16px, 3vw, 28px);
  text-align: left;
  transition: background 0.35s;
}
.stat:hover {
  background: rgba(37, 64, 107, 0.42);
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 5vw, 2.35rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.stat__num .suffix {
  color: var(--gold);
  font-size: 0.62em;
}
.stat__label {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.45;
  margin-top: 6px;
}

/* -------------------------------- cards --------------------------------- */
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3.4vw, 34px);
  box-shadow: var(--shadow-xs);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s;
  height: 100%;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--mist-2);
}

.split {
  display: grid;
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}

.prose p + p {
  margin-top: 16px;
}
.prose p {
  color: var(--slate);
  text-wrap: pretty;
}
.prose strong {
  color: var(--navy-700);
  font-weight: 600;
}

.pill-list {
  display: grid;
  gap: 12px;
}
.pill-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.94rem;
  color: var(--navy-700);
}
.check {
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold-050);
  color: var(--gold-600);
  margin-top: 1px;
}
.check svg {
  width: 12px;
  height: 12px;
}
.section--dark .check {
  background: rgba(212, 175, 55, 0.16);
  color: var(--gold-400);
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
}
.fact {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
  background: linear-gradient(160deg, var(--paper), var(--mist));
}
.fact dt {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate-2);
  font-weight: 600;
}
.fact dd {
  margin: 6px 0 0;
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--navy-700);
}

/* visi misi */
.vm-grid {
  display: grid;
  gap: 20px;
}
.vm {
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3.6vw, 38px);
  position: relative;
  overflow: hidden;
}
.vm--vision {
  background: linear-gradient(150deg, #fff, var(--gold-050));
  border: 1px solid var(--gold-200);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.vm--vision::after {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -110px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.24), transparent 68%);
  pointer-events: none;
}
.vm__quote {
  font-family: var(--font-display);
  font-size: 4.6rem;
  line-height: 0.62;
  font-weight: 700;
  color: var(--gold-200);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.vm--vision .vm__title,
.vm--vision .vm__tag,
.vm--vision .vm__foot {
  position: relative;
  z-index: 1;
}
.vm__foot {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--gold-200);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--slate-2);
}
.vm--mission {
  background: linear-gradient(160deg, var(--navy-800), var(--navy-900));
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.76);
}
.vm--mission h3 {
  color: #fff;
}
.vm__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 14px;
}
.vm--mission .vm__tag {
  color: var(--gold-400);
}
.vm__title {
  font-size: clamp(1.05rem, 2.8vw, 1.32rem);
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.vm--vision .vm__title {
  color: var(--navy-800);
  font-family: var(--font-display);
}
.vm__list {
  display: grid;
  gap: 13px;
}
.vm__list li {
  display: flex;
  gap: 12px;
  font-size: 0.94rem;
  align-items: flex-start;
}
.vm__num {
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-400);
  display: grid;
  place-items: center;
  font-size: 0.74rem;
  font-weight: 700;
  font-family: var(--font-display);
}
.vm__icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: var(--navy-900);
  margin-bottom: 18px;
}
.vm__icon svg {
  width: 22px;
  height: 22px;
}

/* accordion */
.accordion {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow-xs);
}
.acc__item + .acc__item {
  border-top: 1px solid var(--line);
}
.acc__btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  padding: clamp(18px, 2.6vw, 24px) clamp(18px, 3vw, 28px);
  transition: background 0.25s;
}
.acc__btn:hover {
  background: var(--mist);
}
.acc__idx {
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--gold-600);
  background: var(--gold-050);
  border-radius: 8px;
  padding: 5px 8px;
  flex: none;
}
.acc__label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(0.98rem, 2.4vw, 1.08rem);
  color: var(--navy-800);
  flex: 1;
}
.acc__icon {
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--navy-600);
  transition: background 0.3s, color 0.3s, transform 0.4s var(--ease), border-color 0.3s;
}
.acc__icon svg {
  width: 14px;
  height: 14px;
}
.acc__item.is-open .acc__icon {
  background: var(--navy-700);
  border-color: var(--navy-700);
  color: #fff;
  transform: rotate(180deg);
}
.acc__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.42s var(--ease);
}
.acc__item.is-open .acc__panel {
  grid-template-rows: 1fr;
}
.acc__panel > div {
  overflow: hidden;
}
.acc__body {
  padding: 0 clamp(18px, 3vw, 28px) clamp(20px, 3vw, 26px) clamp(56px, 7vw, 74px);
  color: var(--slate);
  font-size: 0.95rem;
  display: grid;
  gap: 13px;
}

/* aktivitas */
.act-grid {
  display: grid;
  gap: 18px;
}
.act {
  position: relative;
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3.4vw, 34px);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line-dark);
  overflow: hidden;
  transition: transform 0.45s var(--ease), background 0.35s, border-color 0.35s;
}
.act::before {
  content: "";
  position: absolute;
  inset: auto -30% -60% auto;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.22), transparent 70%);
  opacity: 0;
  transition: opacity 0.45s;
}
.act:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(212, 175, 55, 0.4);
}
.act:hover::before {
  opacity: 1;
}
.act__icon {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, rgba(212, 175, 55, 0.22), rgba(212, 175, 55, 0.06));
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold-400);
  margin-bottom: 18px;
}
.act__icon svg {
  width: 24px;
  height: 24px;
}
.act__title {
  font-size: 1.06rem;
  margin-bottom: 8px;
  color: #fff;
}
.act__desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
}

/* -------------------------------- news ---------------------------------- */
.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--slate);
  transition: all 0.25s;
}
.chip:hover {
  border-color: var(--navy-300);
  color: var(--navy-700);
}
.chip.is-active {
  background: var(--navy-700);
  border-color: var(--navy-700);
  color: #fff;
}

.news-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 270px), 1fr));
}
.news-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.3s;
}
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--mist-2);
}
.news-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--mist-2);
}
.news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.news-card:hover .news-card__media img {
  transform: scale(1.06);
}
.news-card__date {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(8, 19, 38, 0.86);
  backdrop-filter: blur(6px);
  color: #fff;
  border-radius: 999px;
  padding: 6px 13px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.news-card__body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.news-card__title {
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card__more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--gold-600);
  font-family: var(--font-display);
}
.news-card__more svg {
  width: 15px;
  height: 15px;
  transition: transform 0.3s var(--ease);
}
.news-card:hover .news-card__more svg {
  transform: translateX(4px);
}

/* ------------------------------- members -------------------------------- */
.member-search {
  position: relative;
  flex: 1;
  min-width: 220px;
  max-width: 380px;
}
.member-search svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 17px;
  height: 17px;
  color: var(--slate-2);
  pointer-events: none;
}
.member-search input {
  width: 100%;
  font: inherit;
  font-size: 0.9rem;
  padding: 13px 16px 13px 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.member-search input:focus {
  outline: none;
  border-color: var(--navy-300);
  box-shadow: 0 0 0 4px rgba(37, 64, 107, 0.1);
}

.member-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(50%, 152px), 1fr));
  gap: 12px;
}
.member {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 12px 13px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  min-height: 118px;
  justify-content: center;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.3s;
}
.member:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
  border-color: var(--gold-200);
}
.member__logo {
  height: 46px;
  width: 100%;
  display: grid;
  place-items: center;
}
.member__logo img {
  --fade-to: 0.72;
  max-height: 46px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.72;
  transition: filter 0.35s, opacity 0.35s;
}
.member:hover .member__logo img {
  filter: grayscale(0);
  opacity: 1;
}
.member__name {
  font-size: 0.7rem;
  line-height: 1.3;
  color: var(--slate);
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.empty-state {
  text-align: center;
  padding: 48px 20px;
  color: var(--slate);
  font-size: 0.94rem;
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
}

.center-cta {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

/* ------------------------------- partners ------------------------------- */
.partner-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(50%, 165px), 1fr));
  gap: 14px;
}
.partner {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 16px;
  display: grid;
  place-items: center;
  gap: 10px;
  min-height: 116px;
  transition: border-color 0.3s, transform 0.35s var(--ease);
}
.partner:hover {
  border-color: var(--gold-200);
  transform: translateY(-3px);
}
.partner img {
  max-height: 52px;
  width: auto;
  object-fit: contain;
}
.partner span {
  font-size: 0.72rem;
  color: var(--slate);
  text-align: center;
  line-height: 1.3;
}

/* ------------------------------- pengurus ------------------------------- */
.people-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(50%, 200px), 1fr));
  gap: 20px;
}
.person {
  text-align: center;
}
.person__photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1 / 1.06;
  background: var(--mist-2);
  box-shadow: var(--shadow-sm);
  margin-bottom: 14px;
}
.person__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  transition: transform 0.7s var(--ease);
}
.person:hover .person__photo img {
  transform: scale(1.05);
}
.person__photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(to top, rgba(8, 19, 38, 0.62), transparent);
  pointer-events: none;
}
.person__name {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--navy-800);
  line-height: 1.35;
}
.person__role {
  font-size: 0.79rem;
  color: var(--gold-600);
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-top: 3px;
}

/* ------------------------------- contact -------------------------------- */
.contact-grid {
  display: grid;
  gap: 18px;
}
.contact-card {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 28px);
  transition: background 0.3s, border-color 0.3s, transform 0.4s var(--ease);
}
.contact-card:hover {
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(212, 175, 55, 0.35);
  transform: translateY(-4px);
}
.contact-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: rgba(212, 175, 55, 0.14);
  border: 1px solid rgba(212, 175, 55, 0.28);
  color: var(--gold-400);
  margin-bottom: 15px;
}
.contact-card__icon svg {
  width: 20px;
  height: 20px;
}
.contact-card h3 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
  font-weight: 600;
}
.contact-card p,
.contact-card a {
  font-size: 0.95rem;
  color: #fff;
  line-height: 1.6;
}
.contact-card a:hover {
  color: var(--gold-400);
}
.contact-card small {
  display: block;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.58);
  margin-top: 4px;
}

.map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-dark);
  min-height: 320px;
  background: var(--navy-800);
}
.map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
  filter: grayscale(0.35) contrast(1.05);
}

/* -------------------------------- footer -------------------------------- */
.footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.6);
  padding-top: clamp(44px, 6vw, 68px);
  font-size: 0.9rem;
}
.footer__top {
  display: grid;
  gap: 32px;
  padding-bottom: 34px;
}
.footer__brand .brand__logo {
  height: 44px;
}
.footer__brand p {
  margin-top: 16px;
  max-width: 42ch;
  line-height: 1.7;
}
.footer h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: #fff;
  margin-bottom: 16px;
  font-weight: 600;
}
.footer__links {
  display: grid;
  gap: 10px;
}
.footer__links a {
  transition: color 0.25s, padding-left 0.25s;
}
.footer__links a:hover {
  color: var(--gold-400);
  padding-left: 5px;
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding-block: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 0.82rem;
  align-items: center;
}
.footer__bottom p {
  margin: 0;
}

.socials {
  display: flex;
  gap: 10px;
}
.social {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.78);
  transition: background 0.3s, color 0.3s, transform 0.3s var(--ease);
}
.social:hover {
  background: var(--gold);
  color: var(--navy-900);
  transform: translateY(-3px);
}
.social svg {
  width: 18px;
  height: 18px;
}

/* ------------------------------ floating ui ----------------------------- */
.wa {
  position: fixed;
  right: clamp(14px, 3vw, 26px);
  bottom: clamp(14px, 3vw, 26px);
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #06281a;
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 0.88rem;
  padding: 13px 18px;
  border-radius: 999px;
  box-shadow: 0 18px 38px -14px rgba(37, 211, 102, 0.6);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.wa:hover {
  transform: translateY(-3px) scale(1.02);
}
.wa svg {
  width: 20px;
  height: 20px;
  flex: none;
}
.wa span {
  display: none;
}

.to-top {
  position: fixed;
  right: clamp(14px, 3vw, 26px);
  bottom: clamp(72px, 11vw, 88px);
  z-index: 89;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(8, 19, 38, 0.88);
  color: #fff;
  border: 1px solid var(--line-dark);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.35s, transform 0.35s var(--ease), visibility 0.35s, background 0.25s;
}
.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.to-top:hover {
  background: var(--gold);
  color: var(--navy-900);
}
.to-top svg {
  width: 18px;
  height: 18px;
}

/* ------------------------------- motion --------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* staggered grids: cards cascade in (one short beat per column) */
.stagger > *:nth-child(4n + 2) {
  --rd: 65ms;
}
.stagger > *:nth-child(4n + 3) {
  --rd: 130ms;
}
.stagger > *:nth-child(4n) {
  --rd: 195ms;
}
.stagger > .reveal {
  transition-delay: var(--rd, 0ms);
}

/* images fade in once decoded (pairs with loading="lazy") — no hard pop-in */
img.img-in {
  opacity: 0;
  transition: opacity 0.65s var(--ease), transform 0.8s var(--ease), filter 0.35s;
}
img.img-in.is-loaded {
  opacity: var(--fade-to, 1);
}
[data-shimmer] {
  position: relative;
}
[data-shimmer].is-loading::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--shimmer-bg, rgba(11, 27, 51, 0.07));
  animation: shimmerBreathe 1.7s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shimmerBreathe {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.85;
  }
}

/* hero: gentle staged entrance on first paint */
.hero.is-ready .hero__badge,
.hero.is-ready .hero__title,
.hero.is-ready .hero__lead,
.hero.is-ready .hero__actions,
.hero.is-ready .hero__meta {
  animation: heroUp 0.85s var(--ease) both;
}
.hero.is-ready .hero__title {
  animation-delay: 0.07s;
}
.hero.is-ready .hero__lead {
  animation-delay: 0.14s;
}
.hero.is-ready .hero__actions {
  animation-delay: 0.21s;
}
.hero.is-ready .hero__meta {
  animation-delay: 0.28s;
}
.hero.is-ready .hero__visual {
  animation: heroUp 1s var(--ease) 0.18s both;
}
/* safety net: whatever happens, the hero copy always ends up visible */
.hero.is-hero-done .hero__badge,
.hero.is-hero-done .hero__title,
.hero.is-hero-done .hero__lead,
.hero.is-hero-done .hero__actions,
.hero.is-hero-done .hero__meta,
.hero.is-hero-done .hero__visual {
  animation: none;
  opacity: 1;
  transform: none;
}
@keyframes heroUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* hero collage: barely-there drift so the page is never fully static */
.hero.is-ready .collage__card--a {
  animation: floaty 12s ease-in-out infinite;
}
.hero.is-ready .collage__card--c {
  animation: floaty 15s ease-in-out -4s infinite;
}
@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

/* scroll progress hairline */
.scroll-progress {
  position: fixed;
  inset: 0 0 auto 0;
  height: 3px;
  z-index: 120;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-400) 55%, var(--gold-200));
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.55);
  pointer-events: none;
}

/* drawer links slide in behind the panel */
.drawer__link {
  opacity: 0;
  transform: translateX(16px);
  transition: opacity 0.35s var(--ease), transform 0.45s var(--ease), color 0.25s;
}
.drawer.is-open .drawer__link {
  opacity: 1;
  transform: none;
  transition-delay: calc(var(--i, 0) * 40ms);
}

/* whatsapp button: soft ripple */
.wa::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid rgba(37, 211, 102, 0.65);
  animation: waRipple 3.4s var(--ease) infinite;
  pointer-events: none;
}
@keyframes waRipple {
  0% {
    opacity: 0.75;
    transform: scale(1);
  }
  55%,
  100% {
    opacity: 0;
    transform: scale(1.16);
  }
}

/* small lift on filter chips */
.chip:hover {
  transform: translateY(-2px);
}

/* eyebrow dash draws in with its section */
.reveal .eyebrow::before {
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.7s var(--ease) 0.08s;
}
.reveal.is-in .eyebrow::before {
  transform: none;
}

/* gold buttons: a single soft glint sweeping across on hover */
.btn--gold:hover {
  animation: btnSheen 0.9s var(--ease);
}
@keyframes btnSheen {
  0% {
    background-position: -130% 0, 0 0;
  }
  100% {
    background-position: 230% 0, 0 0;
  }
}

/* hero backdrop drifts a touch slower than the page while scrolling */
.hero__bg {
  will-change: transform;
}
.hero__grid {
  will-change: transform;
}

html.no-anim *,
html.no-anim .reveal {
  animation: none !important;
  transition: none !important;
}
html.no-anim .reveal {
  opacity: 1;
  transform: none;
}
html.no-anim img.img-in {
  opacity: var(--fade-to, 1) !important;
}
html.no-anim [data-shimmer].is-loading::after {
  opacity: 0;
}
html.no-anim .reveal .eyebrow::before {
  transform: none !important;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-delay: 0s !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  img.img-in {
    opacity: var(--fade-to, 1);
  }
  .drawer__link {
    opacity: 1;
    transform: none;
  }
  .reveal .eyebrow::before {
    transform: none;
  }
}

/* ----------------------------- breakpoints ------------------------------ */
@media (max-width: 1359px) {
  .collage__ring {
    display: none;
  }
}

@media (min-width: 560px) {
  .wa span {
    display: inline;
  }
}

@media (min-width: 768px) {
  .stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .vm-grid {
    grid-template-columns: 1fr 1.25fr;
  }
  .act-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer__top {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .brand__logo {
    height: 52px;
  }
  .brand__text {
    display: block;
  }
}

@media (min-width: 992px) {
  .nav {
    display: block;
  }
  .header__cta {
    display: inline-flex;
  }
  .burger {
    display: none;
  }
  .hero__inner {
    grid-template-columns: 1.08fr 0.92fr;
    gap: clamp(40px, 5vw, 72px);
  }
  .split {
    grid-template-columns: 1fr 1fr;
  }
  .split--wide-left {
    grid-template-columns: 1.35fr 1fr;
  }
  .act-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .people-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 22px;
    align-items: stretch;
  }
  .contact-grid {
    align-content: start;
  }
}

@media (min-width: 992px) and (max-width: 1359px) {
  .brand__text {
    display: none;
  }
  .nav__link {
    padding: 9px 12px;
    font-size: 0.87rem;
  }
}

@media (min-width: 992px) and (max-width: 1099px) {
  .nav__link {
    padding: 9px 9px;
    font-size: 0.84rem;
  }
}

@media (min-width: 1360px) {
  .nav__link {
    padding: 9px 12px;
  }
}

@media (min-width: 1200px) {
  .section-head--center {
    max-width: 820px;
  }
}
