/* =========================================================
   PT SURYA SATU BERSAMA
   SSB v2 — Pure HTML / CSS / JS
   No framework. No build system.
   ========================================================= */


/* =========================================================
   DESIGN TOKENS
   ========================================================= */

:root {

  --ink: #17130f;
  --ink-soft: #211b16;

  --paper: #fbfaf7;
  --paper-warm: #f4efe8;
  --paper-dim: #eee7dd;
  --white: #ffffff;

  --red: #a51d1d;
  --red-deep: #7f1515;

  --gold: #b48a42;
  --gold-light: #d3b06b;

  --text: #4f4740;
  --text-light: #8d8176;

  --line: rgba(23, 19, 15, 0.12);
  --line-light: rgba(255, 255, 255, 0.14);

  --font-display:
    "Cormorant Garamond",
    Georgia,
    serif;

  --font-body:
    "Inter",
    Arial,
    sans-serif;

  --max-width: 1180px;

  --shadow-soft:
    0 18px 50px rgba(23, 19, 15, 0.08);

}


/* =========================================================
   RESET
   ========================================================= */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

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

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


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

}


/* =========================================================
   NAVIGATION
   ========================================================= */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;

  background: rgba(251, 250, 247, 0.94);

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

  border-bottom: 1px solid var(--line);
}

.nav__inner {
  width: min(
    calc(100% - 48px),
    var(--max-width)
  );

  min-height: 78px;

  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
}


/* ---------------------------------------------------------
   SSB LOGO
   --------------------------------------------------------- */

.nav__brand {
  display: flex;
  align-items: center;

  flex-shrink: 0;
}

.nav__logo {

  /*
    IMPORTANT:
    Height controls the logo.
    Width remains AUTO so the original
    aspect ratio can never be distorted.
  */

  height: 38px;
  width: auto;

  max-width: 180px;

  object-fit: contain;

  object-position: left center;
}


/* ---------------------------------------------------------
   NAV LINKS
   --------------------------------------------------------- */

.nav__links {
  display: flex;
  align-items: center;
  gap: 34px;

  font-size: 13px;
  font-weight: 500;

  letter-spacing: 0.02em;
}

.nav__links a {
  position: relative;

  transition:
    color 0.25s ease;
}

.nav__links a:not(.nav__cta)::after {

  content: "";

  position: absolute;

  left: 0;
  bottom: -8px;

  width: 0;
  height: 1px;

  background: var(--gold);

  transition: width 0.25s ease;
}

.nav__links a:not(.nav__cta):hover::after {
  width: 100%;
}

.nav__links a:hover {
  color: var(--red);
}


/* ---------------------------------------------------------
   NAV CTA
   --------------------------------------------------------- */

.nav__cta {

  padding: 10px 20px;

  border: 1px solid var(--gold);

  border-radius: 999px;

  color: var(--gold);

  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.nav__cta:hover {
  background: var(--gold);
  color: var(--white);

  transform: translateY(-1px);
}


/* ---------------------------------------------------------
   MOBILE TOGGLE
   --------------------------------------------------------- */

.nav__toggle {

  display: none;

  width: 42px;
  height: 42px;

  padding: 0;

  border: 0;

  background: transparent;

  cursor: pointer;

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

  flex-direction: column;

  gap: 5px;
}

.nav__toggle span {

  display: block;

  width: 22px;
  height: 1.5px;

  background: var(--ink);

  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.nav__toggle.is-active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav__toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.is-active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}


/* =========================================================
   SHARED SECTION
   ========================================================= */

.section {
  position: relative;
}

.section__inner {

  width: min(
    calc(100% - 48px),
    var(--max-width)
  );

  margin: 0 auto;

  padding: 110px 0;
}

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

.section--dim {
  background: var(--paper-warm);
}

.section--warm {
  background: var(--paper-dim);
}

.section--dark {
  background: var(--ink);
  color: var(--white);
}


/* =========================================================
   TYPOGRAPHY
   ========================================================= */

.eyebrow {

  margin: 0;

  font-family: var(--font-body);

  font-size: 11px;

  font-weight: 600;

  letter-spacing: 0.2em;

  text-transform: uppercase;

  color: var(--gold);
}

.eyebrow--dark {
  color: var(--red);
}

.section__title {

  max-width: 760px;

  margin: 16px 0 28px;

  font-family: var(--font-display);

  font-size: clamp(
    42px,
    5vw,
    68px
  );

  font-weight: 500;

  line-height: 0.98;

  letter-spacing: -0.025em;

  color: var(--ink);
}

.section__title--large {

  font-size: clamp(
    48px,
    6vw,
    76px
  );

  line-height: 0.98;
}

.section__title--light {
  color: var(--white);
}

.section__lead {

  max-width: 430px;

  margin: 10px 0 0;

  color: var(--text);

  font-size: 15px;

  line-height: 1.8;
}

.section__heading {

  display: flex;

  align-items: flex-end;

  justify-content: space-between;

  gap: 60px;

  margin-bottom: 60px;
}

.section__heading--light .section__lead {
  color: rgba(255, 255, 255, 0.62);
}


/* =========================================================
   BUTTONS
   ========================================================= */

.btn {

  display: inline-flex;

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

  gap: 12px;

  min-height: 50px;

  padding: 0 26px;

  border-radius: 999px;

  font-size: 12px;

  font-weight: 600;

  letter-spacing: 0.06em;

  text-transform: uppercase;

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.btn span {
  font-size: 17px;
  line-height: 1;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {

  background: var(--red);

  color: var(--white);

  border: 1px solid var(--red);
}

.btn--primary:hover {
  background: var(--red-deep);
  border-color: var(--red-deep);
}

.btn--light {

  border: 1px solid rgba(255, 255, 255, 0.4);

  color: var(--white);
}

.btn--light:hover {

  background: var(--white);

  color: var(--ink);

  border-color: var(--white);
}

.btn--gold {

  background: var(--gold);

  color: var(--white);

  border: 1px solid var(--gold);
}

.btn--gold:hover {

  background: var(--gold-light);

  border-color: var(--gold-light);
}


/* =========================================================
   HERO
   ========================================================= */

.hero {

  position: relative;

  min-height: calc(100vh - 78px);

  display: flex;

  align-items: center;

  overflow: hidden;

  background: var(--ink);

  color: var(--white);
}


/* ---------------------------------------------------------
   HERO BACKGROUND
   --------------------------------------------------------- */

.hero__background {

  position: absolute;

  inset: 0;

  background:

    radial-gradient(
      circle at 70% 40%,
      rgba(180, 138, 66, 0.18),
      transparent 32%
    ),

    linear-gradient(
      115deg,
      rgba(23, 19, 15, 0.98),
      rgba(23, 19, 15, 0.92)
    );

  transform: scale(1.02);
}


/* ---------------------------------------------------------
   HERO GRID / LIGHT
   --------------------------------------------------------- */

.hero__background::after {

  content: "";

  position: absolute;

  inset: 0;

  opacity: 0.32;

  background:

    linear-gradient(
      115deg,
      transparent 0%,
      transparent 50%,
      rgba(180, 138, 66, 0.12) 50.2%,
      transparent 50.5%
    ),

    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 90px,
      rgba(255, 255, 255, 0.018) 91px,
      transparent 92px
    );
}

.hero__overlay {

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(23, 19, 15, 0.98) 0%,
      rgba(23, 19, 15, 0.84) 50%,
      rgba(23, 19, 15, 0.55) 100%
    );
}


/* ---------------------------------------------------------
   HERO CONTENT
   --------------------------------------------------------- */

.hero__inner {

  position: relative;
  z-index: 2;

  width: min(
    calc(100% - 48px),
    var(--max-width)
  );

  margin: 0 auto;

  padding: 120px 0 100px;
}

.hero__content {
  max-width: 820px;
}


/* ---------------------------------------------------------
   HERO LOGO
   --------------------------------------------------------- */

.hero__brand-lockup {

  display: inline-flex;

  align-items: center;

  min-height: 60px;

  margin-bottom: 38px;

  padding: 8px 18px;

  border-left: 1px solid var(--gold);
}

.hero__logo {

  /*
    The logo is controlled by HEIGHT,
    not width.
    This prevents stretching.
  */

  height: 46px;

  width: auto;

  max-width: 220px;

  object-fit: contain;
}


/* ---------------------------------------------------------
   HERO TITLE
   --------------------------------------------------------- */

.hero__title {

  margin: 18px 0 0;

  font-family: var(--font-display);

  font-size: clamp(
    60px,
    8vw,
    108px
  );

  font-weight: 500;

  line-height: 0.88;

  letter-spacing: -0.035em;

  color: var(--white);
}

.hero__title span {
  color: var(--gold-light);
}


/* ---------------------------------------------------------
   ORNAMENT
   --------------------------------------------------------- */

.ornament {

  display: flex;

  align-items: center;

  gap: 10px;

  margin: 34px 0 30px;
}

.ornament span {

  width: 58px;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      var(--gold)
    );
}

.ornament span:last-child {

  background:
    linear-gradient(
      90deg,
      var(--gold),
      transparent
    );
}

.ornament i {

  width: 6px;
  height: 6px;

  background: var(--gold);

  transform: rotate(45deg);

  display: block;
}


/* ---------------------------------------------------------
   HERO SUB
   --------------------------------------------------------- */

.hero__sub {

  max-width: 650px;

  margin: 0 0 38px;

  color: rgba(255, 255, 255, 0.68);

  font-size: 16px;

  line-height: 1.85;
}


/* ---------------------------------------------------------
   HERO CTA
   --------------------------------------------------------- */

.hero__cta {

  display: flex;

  flex-wrap: wrap;

  gap: 12px;
}


/* ---------------------------------------------------------
   HERO SCROLL
   --------------------------------------------------------- */

.hero__scroll {

  position: absolute;

  right: 0;
  bottom: 42px;

  display: flex;

  align-items: center;

  gap: 12px;

  color: rgba(255, 255, 255, 0.42);

  font-size: 9px;

  letter-spacing: 0.18em;

  text-transform: uppercase;
}

.hero__scroll span {

  width: 36px;
  height: 1px;

  background: var(--gold);
}


/* =========================================================
   INTRO
   ========================================================= */

.intro {

  display: grid;

  grid-template-columns:
    minmax(180px, 0.45fr)
    minmax(0, 1.55fr);

  gap: 60px;
}

.intro__content {

  max-width: 800px;
}

.intro__content > p {

  max-width: 720px;

  margin: 0 0 20px;

  color: var(--text);

  font-size: 16px;

  line-height: 1.9;
}

.intro__content strong {
  color: var(--ink);
}

.text-link {

  display: inline-flex;

  gap: 10px;

  margin-top: 14px;

  padding-bottom: 6px;

  border-bottom: 1px solid var(--gold);

  color: var(--ink);

  font-size: 12px;

  font-weight: 600;

  letter-spacing: 0.08em;

  text-transform: uppercase;
}

.text-link span {
  color: var(--gold);
}


/* =========================================================
   CAPABILITIES
   ========================================================= */

.capabilities {

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  border-top: 1px solid var(--line-light);
}

.capability {

  min-height: 390px;

  padding: 38px 34px 30px;

  border-right: 1px solid var(--line-light);

  transition:
    background 0.3s ease;
}

.capability:first-child {
  border-left: 1px solid var(--line-light);
}

.capability:hover {
  background: rgba(255, 255, 255, 0.035);
}

.capability__number {

  display: block;

  color: var(--gold-light);

  font-size: 11px;

  letter-spacing: 0.15em;
}

.capability__line {

  width: 36px;

  height: 1px;

  margin: 30px 0;

  background: var(--gold);
}

.capability h3 {

  margin: 0 0 20px;

  font-family: var(--font-display);

  font-size: 40px;

  font-weight: 500;

  line-height: 1;

  color: var(--white);
}

.capability p {

  margin: 0;

  color: rgba(255, 255, 255, 0.58);

  font-size: 14px;

  line-height: 1.8;
}

.capability__link {

  display: inline-block;

  margin-top: 34px;

  color: var(--gold-light);

  font-size: 10px;

  font-weight: 600;

  letter-spacing: 0.12em;

  text-transform: uppercase;
}


/* =========================================================
   BRANDS
   ========================================================= */

.brands {

  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 24px;
}

.brand-card {

  position: relative;

  min-height: 650px;

  overflow: hidden;

  padding: 38px;

  background: var(--white);

  border: 1px solid var(--line);

  box-shadow: var(--shadow-soft);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.brand-card:hover {

  transform: translateY(-6px);

  box-shadow:
    0 30px 70px
    rgba(23, 19, 15, 0.12);
}

.brand-card--aruna {
  border-top: 3px solid var(--red);
}

.brand-card--unisolve {
  border-top: 3px solid var(--gold);
}


/* ---------------------------------------------------------
   BRAND CARD TOP
   --------------------------------------------------------- */

.brand-card__top {

  display: flex;

  align-items: flex-start;

  justify-content: space-between;

  gap: 20px;

  min-height: 90px;

  padding-bottom: 28px;

  border-bottom: 1px solid var(--line);
}

.brand-card__index {

  color: var(--text-light);

  font-size: 9px;

  font-weight: 600;

  letter-spacing: 0.15em;

  text-transform: uppercase;
}


/* ---------------------------------------------------------
   BRAND LOGO CONTAINER
   --------------------------------------------------------- */

.brand-logo-wrap {

  /*
    IMPORTANT:
    Fixed visual area prevents logos from
    looking stretched or excessively wide.
  */

  width: 150px;
  height: 60px;

  display: flex;

  align-items: center;

  justify-content: flex-end;

  flex-shrink: 0;
}

.brand-card__logo {

  display: block;

  width: auto;
  height: auto;

  max-width: 100%;
  max-height: 100%;

  object-fit: contain;

  object-position: center;

  flex-shrink: 0;
}


/*
   ARUNA
   Slightly smaller because its original
   artwork has a naturally wider proportion.
*/

.brand-card__logo--aruna {

  max-width: 132px;

  max-height: 48px;
}


/*
   UNISOLVE
   Controlled separately for optical balance.
*/

.brand-card__logo--unisolve {

  max-width: 122px;

  max-height: 48px;
}


/* ---------------------------------------------------------
   BRAND BODY
   --------------------------------------------------------- */

.brand-card__body {

  display: flex;

  flex-direction: column;

  min-height: 500px;

  padding-top: 42px;
}

.brand-card__title {

  max-width: 480px;

  margin: 0 0 22px;

  font-family: var(--font-display);

  font-size: clamp(
    36px,
    4vw,
    52px
  );

  font-weight: 500;

  line-height: 0.98;

  letter-spacing: -0.025em;

  color: var(--ink);
}

.brand-card__desc {

  max-width: 540px;

  margin: 0 0 30px;

  color: var(--text);

  font-size: 14px;

  line-height: 1.85;
}


/* ---------------------------------------------------------
   BRAND SOLUTIONS
   --------------------------------------------------------- */

.brand-solutions {

  display: flex;

  flex-wrap: wrap;

  gap: 8px;

  margin-top: auto;
}

.brand-solutions span {

  padding: 8px 12px;

  border-radius: 999px;

  font-size: 10px;

  font-weight: 500;

  letter-spacing: 0.03em;
}

.brand-card--aruna
.brand-solutions span {

  background: rgba(165, 29, 29, 0.07);

  color: var(--red);
}

.brand-card--unisolve
.brand-solutions span {

  background: rgba(180, 138, 66, 0.1);

  color: #92702f;
}


/* ---------------------------------------------------------
   BRAND LINK
   --------------------------------------------------------- */

.brand-card__link {

  display: inline-flex;

  align-items: center;

  gap: 12px;

  align-self: flex-start;

  margin-top: 34px;

  padding-bottom: 7px;

  border-bottom: 1px solid;

  font-size: 10px;

  font-weight: 600;

  letter-spacing: 0.12em;

  text-transform: uppercase;
}

.brand-card__link--aruna {
  color: var(--red);
}

.brand-card__link--unisolve {
  color: var(--gold);
}

.brand-card__link span {
  font-size: 15px;
}


/* =========================================================
   SOLUTION GRID
   ========================================================= */

.solution-grid {

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.solution-item {

  min-height: 260px;

  padding: 30px;

  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);

  transition:
    background 0.25s ease;
}

.solution-item:hover {
  background: var(--paper-warm);
}

.solution-item > span {

  color: var(--gold);

  font-size: 10px;

  font-weight: 600;

  letter-spacing: 0.15em;
}

.solution-item h3 {

  margin: 55px 0 12px;

  font-family: var(--font-display);

  font-size: 30px;

  font-weight: 500;

  line-height: 1;
}

.solution-item p {

  margin: 0;

  color: var(--text);

  font-size: 13px;

  line-height: 1.7;
}


/* =========================================================
   APPROACH
   ========================================================= */

.approach {

  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  border-top: 1px solid rgba(23, 19, 15, 0.15);
}

.approach__item {

  min-height: 280px;

  padding: 30px;

  border-right: 1px solid rgba(23, 19, 15, 0.15);
}

.approach__item:first-child {
  border-left: 1px solid rgba(23, 19, 15, 0.15);
}

.approach__item span {

  color: var(--gold);

  font-size: 10px;

  font-weight: 600;

  letter-spacing: 0.15em;
}

.approach__item h3 {

  margin: 55px 0 14px;

  font-family: var(--font-display);

  font-size: 32px;

  font-weight: 500;
}

.approach__item p {

  margin: 0;

  color: var(--text);

  font-size: 13px;

  line-height: 1.75;
}


/* =========================================================
   PROJECTS
   ========================================================= */

.project-placeholder {

  min-height: 470px;

  display: flex;

  align-items: flex-end;

  position: relative;

  overflow: hidden;

  background:

    radial-gradient(
      circle at 72% 35%,
      rgba(180, 138, 66, 0.2),
      transparent 25%
    ),

    linear-gradient(
      135deg,
      #25201a,
      #100e0b
    );

  border: 1px solid var(--line-light);
}

.project-placeholder::before {

  content: "";

  position: absolute;

  inset: 0;

  opacity: 0.4;

  background:

    linear-gradient(
      120deg,
      transparent 0 40%,
      rgba(180, 138, 66, 0.12) 40.2%,
      transparent 40.5%
    ),

    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 70px,
      rgba(255,255,255,0.025) 71px,
      transparent 72px
    );
}

.project-placeholder__content {

  position: relative;

  z-index: 2;

  max-width: 680px;

  padding: 52px;
}

.project-placeholder__content > span {

  color: var(--gold-light);

  font-size: 10px;

  font-weight: 600;

  letter-spacing: 0.18em;
}

.project-placeholder__content h3 {

  margin: 20px 0;

  font-family: var(--font-display);

  font-size: clamp(
    40px,
    5vw,
    68px
  );

  font-weight: 500;

  line-height: 0.95;

  color: var(--white);
}

.project-placeholder__content p {

  max-width: 520px;

  margin: 0;

  color: rgba(255,255,255,0.58);

  font-size: 14px;

  line-height: 1.8;
}


/* =========================================================
   INDUSTRIES
   ========================================================= */

.industries {

  display: grid;

  grid-template-columns:
    repeat(5, 1fr);

  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.industry {

  min-height: 250px;

  padding: 28px;

  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.industry span {

  color: var(--gold);

  font-size: 10px;

  font-weight: 600;

  letter-spacing: 0.15em;
}

.industry h3 {

  margin: 70px 0 10px;

  font-family: var(--font-display);

  font-size: 29px;

  font-weight: 500;

  line-height: 1;
}

.industry p {

  margin: 0;

  color: var(--text-light);

  font-size: 11px;

  line-height: 1.6;
}


/* =========================================================
   ABOUT
   ========================================================= */

.about {

  display: grid;

  grid-template-columns:
    minmax(0, 1.4fr)
    minmax(260px, 0.8fr);

  gap: 100px;
}

.about__text > p {

  max-width: 720px;

  margin: 0 0 20px;

  color: var(--text);

  font-size: 15px;

  line-height: 1.9;
}

.about__text strong {
  color: var(--ink);
}

.about__facts {

  display: flex;

  flex-direction: column;

  border-top: 1px solid var(--line);
}

.fact {

  display: flex;

  flex-direction: column;

  gap: 7px;

  padding: 22px 0;

  border-bottom: 1px solid var(--line);
}

.fact__label {

  color: var(--text-light);

  font-size: 9px;

  font-weight: 600;

  letter-spacing: 0.14em;

  text-transform: uppercase;
}

.fact__value {

  color: var(--ink);

  font-family: var(--font-display);

  font-size: 23px;

  font-weight: 500;

  line-height: 1.05;
}


/* =========================================================
   WHY SSB
   ========================================================= */

.why-grid {

  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  border-top: 1px solid var(--line);
}

.why-grid article {

  min-height: 290px;

  padding: 30px;

  border-right: 1px solid var(--line);
}

.why-grid article:first-child {
  border-left: 1px solid var(--line);
}

.why-grid article > span {

  color: var(--gold);

  font-size: 10px;

  font-weight: 600;

  letter-spacing: 0.15em;
}

.why-grid h3 {

  margin: 58px 0 13px;

  font-family: var(--font-display);

  font-size: 29px;

  font-weight: 500;

  line-height: 1;
}

.why-grid p {

  margin: 0;

  color: var(--text);

  font-size: 13px;

  line-height: 1.75;
}


/* =========================================================
   BRAND STATEMENT
   ========================================================= */

.statement {

  position: relative;

  overflow: hidden;

  background: var(--red);

  color: var(--white);
}

.statement::before {

  content: "";

  position: absolute;

  width: 600px;
  height: 600px;

  right: -180px;
  top: -280px;

  border: 1px solid rgba(255,255,255,0.12);

  border-radius: 50%;
}

.statement::after {

  content: "";

  position: absolute;

  width: 350px;
  height: 350px;

  right: -50px;
  top: -150px;

  border: 1px solid rgba(255,255,255,0.08);

  border-radius: 50%;
}

.statement__inner {

  position: relative;

  z-index: 2;

  width: min(
    calc(100% - 48px),
    var(--max-width)
  );

  margin: 0 auto;

  padding: 120px 0;
}

.statement h2 {

  max-width: 900px;

  margin: 20px 0;

  font-family: var(--font-display);

  font-size: clamp(
    64px,
    9vw,
    120px
  );

  font-weight: 500;

  line-height: 0.85;

  letter-spacing: -0.035em;
}

.statement p:last-child {

  max-width: 600px;

  margin: 0;

  color: rgba(255,255,255,0.72);

  font-size: 15px;

  line-height: 1.8;
}


/* =========================================================
   CONTACT
   ========================================================= */

.section--contact {

  background: var(--ink);

  color: var(--white);
}

.contact {

  display: grid;

  grid-template-columns:
    minmax(0, 1.2fr)
    minmax(300px, 0.8fr);

  gap: 100px;
}

.contact__content h2 {

  max-width: 800px;

  margin: 18px 0 24px;

  font-family: var(--font-display);

  font-size: clamp(
    60px,
    8vw,
    105px
  );

  font-weight: 500;

  line-height: 0.88;

  letter-spacing: -0.035em;

  color: var(--white);
}

.contact__content > p {

  max-width: 540px;

  margin: 0 0 32px;

  color: rgba(255,255,255,0.58);

  font-size: 15px;

  line-height: 1.8;
}

.contact__details {

  border-top: 1px solid var(--line-light);
}

.contact__item {

  display: flex;

  flex-direction: column;

  gap: 9px;

  padding: 22px 0;

  border-bottom: 1px solid var(--line-light);
}

.contact__item span {

  color: var(--gold-light);

  font-size: 9px;

  font-weight: 600;

  letter-spacing: 0.16em;
}

.contact__item strong {

  color: var(--white);

  font-family: var(--font-display);

  font-size: 24px;

  font-weight: 500;
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer {

  background: #100d0a;

  color: rgba(255,255,255,0.55);
}

.footer__inner {

  width: min(
    calc(100% - 48px),
    var(--max-width)
  );

  margin: 0 auto;

  padding: 70px 0 30px;
}

.footer__brand {

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;

  padding-bottom: 40px;

  border-bottom: 1px solid var(--line-light);
}


/* ---------------------------------------------------------
   SSB FOOTER LOGO
   --------------------------------------------------------- */

.footer__logo {

  height: 42px;

  width: auto;

  max-width: 190px;

  object-fit: contain;

  filter: brightness(0) invert(1);

  opacity: 0.95;
}

.footer__brand p {

  margin: 0;

  color: var(--gold-light);

  font-size: 10px;

  font-weight: 600;

  letter-spacing: 0.15em;

  text-transform: uppercase;
}


/* ---------------------------------------------------------
   FOOTER BRAND LOGOS
   --------------------------------------------------------- */

.footer__brands {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 40px;

  padding: 38px 0;

  border-bottom: 1px solid var(--line-light);
}

.footer__brands > div {

  display: flex;

  align-items: center;

  gap: 20px;
}

.footer__brand-logo {

  width: auto;

  height: auto;

  object-fit: contain;

  filter: brightness(0) invert(1);

  opacity: 0.82;

  flex-shrink: 0;
}

.footer__brand-logo--aruna {

  max-width: 105px;

  max-height: 38px;
}

.footer__brand-logo--unisolve {

  max-width: 105px;

  max-height: 38px;
}

.footer__brands span {

  color: rgba(255,255,255,0.42);

  font-size: 11px;

  line-height: 1.5;
}


/* ---------------------------------------------------------
   FOOTER BOTTOM
   --------------------------------------------------------- */

.footer__bottom {

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;

  padding-top: 28px;
}

.footer__bottom p {

  margin: 0;

  font-size: 10px;

  letter-spacing: 0.03em;
}

.footer__bottom a {

  color: var(--gold-light);

  font-size: 10px;

  font-weight: 600;

  letter-spacing: 0.08em;

  text-transform: uppercase;
}


/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 980px) {

  .section__inner {
    padding: 90px 0;
  }

  .section__heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .section__lead {
    max-width: 600px;
  }

  .capabilities {
    grid-template-columns: 1fr;
  }

  .capability {
    min-height: auto;
    border-bottom: 1px solid var(--line-light);
    border-right: 1px solid var(--line-light);
  }

  .capability:first-child {
    border-left: 1px solid var(--line-light);
  }

  .brands {
    grid-template-columns: 1fr;
  }

  .brand-card {
    min-height: 600px;
  }

  .solution-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .approach {
    grid-template-columns: repeat(2, 1fr);
  }

  .approach__item:nth-child(3) {
    border-left: 1px solid rgba(23,19,15,0.15);
  }

  .industries {
    grid-template-columns: repeat(2, 1fr);
  }

  .about {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid article:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .contact {
    grid-template-columns: 1fr;
    gap: 60px;
  }

}


/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 760px) {

  .nav__inner {

    width: calc(100% - 36px);

    min-height: 70px;
  }

  .nav__logo {

    height: 32px;

    max-width: 155px;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__links {

    position: absolute;

    left: 0;
    right: 0;
    top: 70px;

    display: none;

    flex-direction: column;

    align-items: stretch;

    gap: 0;

    padding: 8px 20px 20px;

    background: rgba(251,250,247,0.98);

    border-bottom: 1px solid var(--line);

    box-shadow:
      0 18px 35px rgba(23,19,15,0.08);
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav__links a {

    padding: 15px 0;

    border-bottom: 1px solid var(--line);
  }

  .nav__links a:not(.nav__cta)::after {
    display: none;
  }

  .nav__cta {

    margin-top: 8px;

    padding: 13px 0;

    border: 0;

    border-radius: 0;

    color: var(--red);
  }

  .section__inner {

    width: calc(100% - 40px);

    padding: 76px 0;
  }

  .section__title {

    font-size: clamp(
      42px,
      12vw,
      62px
    );
  }

  .section__title--large {

    font-size: clamp(
      46px,
      13vw,
      68px
    );
  }

  .hero {

    min-height:
      calc(100svh - 70px);
  }

  .hero__inner {

    width: calc(100% - 40px);

    padding: 80px 0 70px;
  }

  .hero__brand-lockup {

    margin-bottom: 30px;
  }

  .hero__logo {

    height: 38px;

    max-width: 175px;
  }

  .hero__title {

    font-size: clamp(
      55px,
      15vw,
      78px
    );
  }

  .hero__sub {

    font-size: 14px;

    line-height: 1.8;
  }

  .hero__scroll {
    display: none;
  }

  .intro {

    grid-template-columns: 1fr;

    gap: 28px;
  }

  .brand-card {

    min-height: auto;

    padding: 28px 24px 32px;
  }

  .brand-card__top {

    min-height: 82px;

    align-items: center;
  }

  .brand-logo-wrap {

    width: 112px;
    height: 52px;
  }

  .brand-card__logo--aruna {

    max-width: 100px;

    max-height: 42px;
  }

  .brand-card__logo--unisolve {

    max-width: 98px;

    max-height: 42px;
  }

  .brand-card__body {

    min-height: auto;

    padding-top: 32px;
  }

  .brand-card__title {

    font-size: 42px;
  }

  .brand-solutions {
    margin-top: 20px;
  }

  .solution-grid {

    grid-template-columns: 1fr;
  }

  .solution-item {

    min-height: 220px;
  }

  .approach {

    grid-template-columns: 1fr;
  }

  .approach__item {

    min-height: 220px;

    border-left: 1px solid rgba(23,19,15,0.15);
  }

  .industries {

    grid-template-columns: 1fr;
  }

  .industry {

    min-height: 210px;
  }

  .why-grid {

    grid-template-columns: 1fr;
  }

  .why-grid article {

    min-height: 230px;

    border-left: 1px solid var(--line);
  }

  .project-placeholder {

    min-height: 430px;
  }

  .project-placeholder__content {

    padding: 32px 26px;
  }

  .project-placeholder__content h3 {

    font-size: 48px;
  }

  .statement__inner {

    width: calc(100% - 40px);

    padding: 90px 0;
  }

  .statement h2 {

    font-size: clamp(
      58px,
      16vw,
      88px
    );
  }

  .contact__content h2 {

    font-size: clamp(
      58px,
      16vw,
      88px
    );
  }

  .footer__inner {

    width: calc(100% - 40px);

    padding-top: 55px;
  }

  .footer__brand {

    align-items: flex-start;

    flex-direction: column;
  }

  .footer__brands {

    grid-template-columns: 1fr;

    gap: 25px;
  }

  .footer__bottom {

    align-items: flex-start;

    flex-direction: column;
  }

}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

  .hero__title {

    font-size: 53px;

    line-height: 0.91;
  }

  .hero__cta {

    flex-direction: column;

    align-items: stretch;
  }

  .hero__cta .btn {

    width: 100%;
  }

  .brand-card__top {

    flex-direction: column;

    align-items: flex-start;
  }

  .brand-logo-wrap {

    justify-content: flex-start;
  }

  .contact__item strong {

    font-size: 20px;
  }

}
