/* =====================================================
   n0lkecil Creative Space
   Style.css
   ===================================================== */

/* =====================================================
   GOOGLE FONT
   ===================================================== */

@import url("https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap");

/* =====================================================
   RESET
   ===================================================== */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Inter", sans-serif;

  background: #f4e55a;

  color: #1d1d1d;

  line-height: 1.7;

  overflow-x: hidden;

  -webkit-font-smoothing: antialiased;

  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
}

ul {
  list-style: none;
}

/* =====================================================
   COLOR SYSTEM
   ===================================================== */

:root {
  --yellow: #f4e55a;

  --pink: #ea7aa6;

  --pink-dark: #d85c8d;

  --cream: #fff8ef;

  --blue: #42a8f4;

  --red: #f25a4b;

  --black: #202020;

  --gray: #666;

  --white: #ffffff;

  --container: 1380px;

  --radius: 40px;

  --transition: 0.35s ease;
}

/* =====================================================
   GLOBAL
   ===================================================== */

.container {
  width: min(92%, 1380px);

  margin: auto;
}

section {
  position: relative;

  overflow: hidden;
}

main {
  position: relative;

  z-index: 2;
}

/* =====================================================
   TYPOGRAPHY
   ===================================================== */

h1,
h2,
h3,
h4 {
  font-family: "Syne", sans-serif;

  font-weight: 800;

  line-height: 0.95;

  letter-spacing: -0.05em;
}

p {
  color: #444;
}

.section {
  padding: 160px 0;
}

/* =====================================================
   BUTTON
   ===================================================== */

.button {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 12px;

  padding: 18px 42px;

  border-radius: 999px;

  background: var(--pink);

  color: #fff;

  font-weight: 600;

  transition: 0.35s;

  box-shadow: 0 18px 35px rgba(234, 122, 166, 0.25);
}

.button:hover {
  transform: translateY(-6px);

  background: var(--pink-dark);
}

.button.outline {
  background: transparent;

  color: var(--pink);

  border: 2px solid var(--pink);

  box-shadow: none;
}

.button.outline:hover {
  background: var(--pink);

  color: #fff;
}

/* =====================================================
   NOISE
   ===================================================== */

.noise {
  position: fixed;

  inset: 0;

  background: url("../img/noise.png");

  opacity: 0.04;

  pointer-events: none;

  z-index: 1;
}
/* =========================================================
HEADER
========================================================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: 0.35s;
  padding: 28px 0;
}

.site-header.scrolled {
  background: rgba(244, 229, 90, 0.88);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  padding: 18px 0;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 60px;
  width: auto;
}

.desktop-menu {
  display: flex;
  gap: 48px;
}

.desktop-menu a {
  position: relative;
  font-weight: 600;
}
.desktop-menu a.active {
  color: var(--pink);
}

.desktop-menu a.active::after {
  width: 100%;
}

.desktop-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--pink);
  transition: 0.35s;
}

.desktop-menu a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
}

/* =========================================================
HERO
========================================================= */

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;

  display: flex;
  align-items: center;

  padding-top: 130px;
  padding-bottom: 80px;
}

/* background circle */

.hero::before {
  content: "";
  position: absolute;

  width: 850px;
  height: 850px;

  left: -280px;
  top: -260px;

  background: rgba(255, 255, 255, 0.18);

  border-radius: 50%;

  filter: blur(60px);
}

/* grid */

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

/* left */

.hero-kicker {
  display: inline-block;
  margin-bottom: 18px;

  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-title {
  margin-bottom: 30px;
}

.hero-title img {
  width: 480px;
  max-width: 100%;
}

.hero-description {
  max-width: 520px;
  font-size: 1.15rem;
  margin-bottom: 40px;
}

.hero-tagline {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 45px;
}

.hero-tagline span {
  font-family: "Syne", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* =========================================================
RIGHT
========================================================= */

.hero-media {
  position: relative;

  display: flex;
  justify-content: center;
  align-items: center;

  min-height: 620px;
}

/* blue outline */

.hero-decoration {
  position: absolute;

  width: 610px;
  height: 610px;

  pointer-events: none;
}

.hero-decoration path {
  fill: none;

  stroke: var(--blue);

  stroke-width: 7;

  stroke-linecap: round;

  stroke-dasharray: 14 14;
}

/* red dot */

.hero-orange {
  position: absolute;

  width: 70px;
  height: 70px;

  background: #ef4b3f;

  border-radius: 50%;

  top: 70px;
  right: 40px;

  z-index: 5;
}

/* HERO PHOTO */

.hero-photo {
  position: relative;

  width: 500px;
  height: 500px;

  border-radius: 50%;

  overflow: hidden;

  z-index: 2;

  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.16);
}

.hero-photo img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

/* scroll */

.scroll-down {
  position: absolute;

  left: 50%;
  bottom: 35px;

  transform: translateX(-50%);

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.scroll-line {
  width: 2px;
  height: 70px;

  background: #222;
}

/* =========================================================
SECTION LAYOUT
========================================================= */

.section {
  padding: 140px 0;
}

.section-grid {
  display: grid;

  grid-template-columns: 180px 1.3fr 1fr;

  gap: 70px;

  align-items: center;
}

.section-grid.reverse {
  grid-template-columns: 1fr 1.1fr;
}

.section-media {
  width: 100%;
}

.image-organic {
  width: 100%;

  overflow: hidden;

  border-radius: 32px;
}

.image-organic img {
  width: 100%;

  display: block;

  object-fit: cover;
}

/* =========================================================
SERVICES
========================================================= */

.service-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 30px;
}

.service-card {
  min-height: 290px;
}

/* =========================================================
NETWORK
========================================================= */

.network-layout {
  display: grid;

  grid-template-columns: 380px 1fr;

  gap: 70px;
}

.partner-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 25px;
}

/* =========================================================
TIMELINE
========================================================= */

.timeline-list {
  display: flex;

  flex-direction: column;

  gap: 120px;
}

.timeline-item {
  display: grid;

  grid-template-columns: 140px 1fr 1fr;

  gap: 50px;

  align-items: center;
}

.timeline-image {
  border-radius: 28px;

  overflow: hidden;
}

/* =========================================================
GALLERY
========================================================= */

.gallery-grid {
  display: grid;

  grid-template-columns: repeat(12, 1fr);

  gap: 20px;
}

.gallery-item {
  overflow: hidden;

  border-radius: 24px;
}

/* =========================================================
CONTACT
========================================================= */

.contact-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 90px;
}
/* =========================================================
FOOTER
========================================================= */

.site-footer {
  background: var(--pink);

  color: #fff;

  padding: 70px 0 35px;
}

.footer-top {
  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 40px;

  padding-bottom: 40px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-logo {
  font-family: "Syne", sans-serif;

  font-size: 2.4rem;

  font-weight: 800;
}

.footer-nav {
  display: flex;

  flex-wrap: wrap;

  gap: 28px;
}

.footer-nav a {
  color: #fff;

  font-weight: 500;
}

.footer-nav a:hover {
  color: var(--yellow);
}

.footer-bottom {
  margin-top: 35px;

  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 20px;

  font-size: 0.95rem;

  color: rgba(255, 255, 255, 0.75);
}

/* =========================================================
MENU OVERLAY
========================================================= */

.menu-overlay {
  position: fixed;

  inset: 0;

  background: rgba(0, 0, 0, 0.45);

  opacity: 0;

  visibility: hidden;

  transition: 0.35s;

  z-index: 998;
}

.menu-overlay.show {
  opacity: 1;

  visibility: visible;
}

/* =========================================================
MENU CLOSE BUTTON
========================================================= */

.menu-close {
  position: absolute;

  top: 28px;

  right: 28px;

  width: 42px;

  height: 42px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  background: var(--pink);

  color: #fff;

  font-size: 24px;

  cursor: pointer;

  transition: 0.3s;
}

.menu-close:hover {
  transform: rotate(90deg);

  background: var(--pink-dark);
}

/* =========================================================
ANTI OVERFLOW
========================================================= */

/* semua elemen tidak boleh lebih lebar dari viewport */

section {
  position: relative;

  overflow: hidden;
}

img {
  max-width: 100%;

  height: auto;
}

svg {
  max-width: 100%;
}

/* semua grid boleh mengecil */

.hero-grid,
.section-grid,
.network-layout,
.contact-grid,
.timeline-item,
.service-grid,
.partner-grid,
.gallery-grid {
  min-width: 0;
}

/* text panjang tidak mendorong layout */

.hero-description,
.section-content,
.timeline-content,
.contact-item,
.partner-item {
  min-width: 0;
}

/* aman untuk flex */

.hero-buttons,
.footer-top,
.footer-bottom {
  flex-wrap: wrap;
}

/* object image */

.hero-photo img,
.gallery img,
.timeline img,
.image-organic img {
  display: block;
}

/* =========================================================
LOADER
========================================================= */

.loader {
  position: fixed;
  inset: 0;
  background: var(--pink);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}
resixe .loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  width: 220px;
  animation: loaderPulse 1.8s ease-in-out infinite;
  filter: brightness(0) invert(1);
}

@keyframes loaderPulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.92);
  }
}

/* =========================================================
SECTION REVEAL
========================================================= */

.section {
  opacity: 0;

  transform: translateY(70px);

  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}

.section.show {
  opacity: 1;

  transform: none;
}

/* =========================================================
IMAGE HOVER
========================================================= */

.hero-photo,
.image-organic,
.timeline-image,
.gallery-item {
  overflow: hidden;
}

.hero-photo img,
.image-organic img,
.timeline-image img,
.gallery-item img {
  transition: transform 0.7s ease;
}

.hero-photo:hover img,
.image-organic:hover img,
.timeline-image:hover img,
.gallery-item:hover img {
  transform: scale(1.08);
}

/* =========================================================
CARD HOVER
========================================================= */

.service-card,
.partner-item,
.stat {
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.service-card:hover,
.partner-item:hover,
.stat:hover {
  transform: translateY(-8px);

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* =========================================================
BUTTON
========================================================= */

.button {
  transition:
    transform 0.35s ease,
    background 0.35s ease,
    color 0.35s ease,
    box-shadow 0.35s ease;
}

.button:hover {
  transform: translateY(-4px);
}

/* =========================================================
FLOATING HERO
========================================================= */

.hero-photo {
  animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* =========================================================
RED DOT
========================================================= */

.hero-orange {
  animation: redDot 4s ease-in-out infinite;
}

@keyframes redDot {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* =========================================================
BLUE PATH
========================================================= */

.hero-decoration path {
  animation: dashMove 16s linear infinite;
}

@keyframes dashMove {
  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: -300;
  }
}

/* =========================================================
SCROLL INDICATOR
========================================================= */

.scroll-line {
  overflow: hidden;

  position: relative;
}

.scroll-line::after {
  content: "";

  position: absolute;

  left: 0;

  top: -100%;

  width: 100%;

  height: 100%;

  background: #fff;

  animation: scrollLine 1.6s linear infinite;
}

@keyframes scrollLine {
  to {
    top: 100%;
  }
}

/* =========================================================
LINK
========================================================= */

a {
  transition: color 0.3s ease;
}

a:hover {
  color: var(--pink);
}

/* =========================================================
SELECTION
========================================================= */

::selection {
  background: var(--pink);

  color: #fff;
}

/* =========================================================
SCROLLBAR
========================================================= */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: var(--pink);

  border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--pink-dark);
}

/* =========================================================
INSTITUTION
========================================================= */

.institution {
  background: var(--cream);

  position: relative;

  overflow: hidden;
}

.institution::before {
  content: "";

  position: absolute;

  width: 520px;
  height: 520px;

  border-radius: 50%;

  background: rgba(234, 122, 166, 0.06);

  top: -180px;
  right: -180px;
}

.institution .container {
  position: relative;
  z-index: 2;
}

/* =========================================================
GRID
========================================================= */

.section-grid {
  display: grid;

  grid-template-columns:
    140px
    minmax(0, 1.2fr)
    minmax(0, 1fr);

  gap: 70px;

  align-items: center;
}

/* =========================================================
LEFT LABEL
========================================================= */

.section-label {
  writing-mode: vertical-rl;

  transform: rotate(180deg);

  text-transform: uppercase;

  letter-spacing: 0.2em;

  font-size: 0.85rem;

  color: #777;
}

/* =========================================================
CONTENT
========================================================= */

.section-content h2 {
  font-size: clamp(2.8rem, 5vw, 5rem);

  line-height: 0.95;

  margin-bottom: 35px;
}

.section-content p {
  color: #555;

  margin-bottom: 22px;

  font-size: 1.05rem;
}

.section-content .lead {
  color: #111;

  font-size: 1.28rem;

  font-weight: 500;
}

/* =========================================================
HIGHLIGHT BOX
========================================================= */

.highlight-box {
  margin-top: 45px;

  background: #fff;

  border-left: 6px solid var(--pink);

  border-radius: 22px;

  padding: 35px;

  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.highlight-number {
  display: block;

  font-family: "Syne", sans-serif;

  font-size: 2rem;

  font-weight: 800;

  color: var(--pink);

  margin-bottom: 15px;
}

/* =========================================================
IMAGE
========================================================= */

.section-media {
  display: flex;

  justify-content: center;
}

.image-organic {
  width: 100%;

  max-width: 470px;

  aspect-ratio: 4/5;

  border-radius: 34px;

  overflow: hidden;

  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
}

.image-organic img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: 0.6s;
}

.image-organic:hover img {
  transform: scale(1.06);
}
/* =========================================================
PART 8
INSTITUTION + ABOUT
========================================================= */

.institution {
  background: var(--cream);
}

.about {
  background: var(--yellow);
}

/* ---------- Shared Grid ---------- */

.section-grid {
  display: grid;
  grid-template-columns: 140px 1.2fr 1fr;
  gap: 70px;
  align-items: center;
}

.section-grid.reverse {
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
}

/* ---------- Vertical Label ---------- */

.section-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #888;
}

/* ---------- Inline Label ---------- */

.section-label-inline {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 700;
}

/* ---------- Heading ---------- */

.section-content h2,
.display-title {
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.95;
  margin-bottom: 30px;
}

.section-content p {
  color: #444;
  margin-bottom: 22px;
}

.lead {
  font-size: 1.2rem;
  color: #111;
}

/* ---------- Highlight Box ---------- */

.highlight-box {
  margin-top: 45px;
  padding: 36px;
  border-radius: 26px;
  background: #fff4f8;
  border-left: 8px solid var(--pink);
}

.highlight-number {
  display: block;
  margin-bottom: 10px;
  font-family: "Syne", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--pink);
}

/* ---------- Organic Image ---------- */

.image-organic {
  overflow: hidden;
  border-radius: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.image-organic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}

.image-organic:hover img {
  transform: scale(1.05);
}

/* ---------- Quote ---------- */

.about blockquote {
  margin: 45px 0;
  padding-left: 28px;
  border-left: 5px solid var(--blue);
  font-family: "Syne", sans-serif;
  font-size: 2rem;
  line-height: 1.2;
}

/* ---------- Stats ---------- */

.about-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 55px;
}

.stat {
  background: var(--pink);
  color: #fff;
  padding: 32px;
  border-radius: 24px;
  text-align: center;
  transition: 0.35s;
}

.stat:hover {
  transform: translateY(-8px);
}

.stat h3 {
  font-size: 2.8rem;
  margin-bottom: 8px;
}

.stat span {
  font-size: 0.9rem;
  opacity: 0.95;
}
/* =========================================================
PART 9
WHAT WE DO
========================================================= */

.services {
  background: var(--cream);
}

/* ---------- Heading ---------- */

.section-heading {
  max-width: 760px;
  margin: 0 auto 80px;
  text-align: center;
}

.section-heading .section-number {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--pink);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-heading h2 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.9;
  margin-bottom: 20px;
}

.section-heading p {
  max-width: 620px;
  margin: auto;
  color: #555;
  line-height: 1.8;
}

/* =========================================================
SERVICE GRID
========================================================= */

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* =========================================================
SERVICE CARD
========================================================= */

.service-card {
  position: relative;

  background: var(--pink);

  color: #fff;

  border-radius: 36px;

  padding: 45px 38px;

  overflow: hidden;

  transition: 0.35s;

  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

.service-card::before {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.18),
    transparent 60%
  );

  opacity: 0;

  transition: 0.35s;
}

.service-card:hover {
  transform: translateY(-12px);

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
}

.service-card:hover::before {
  opacity: 1;
}

/* =========================================================
NUMBER
========================================================= */

.service-index {
  display: inline-flex;

  width: 54px;

  height: 54px;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  background: #fff;

  color: var(--pink);

  font-weight: 700;

  margin-bottom: 28px;

  font-family: "Syne", sans-serif;
}

/* =========================================================
TITLE
========================================================= */

.service-card h3 {
  font-size: 2rem;

  margin-bottom: 18px;

  line-height: 1;
}

.service-card p {
  color: rgba(255, 255, 255, 0.9);

  line-height: 1.9;
}

/* =========================================================
ROTATION EFFECT
========================================================= */

.rotate-left {
  transform: rotate(-2deg);
}

.rotate-right {
  transform: rotate(2deg);
}

.rotate-left:hover,
.rotate-right:hover {
  transform: translateY(-12px) rotate(0);
}
/* =========================================================
PART 10
COLLABORATIVE ECOSYSTEM
========================================================= */

.network {
  background: var(--yellow);
}

/* =========================================================
LAYOUT
========================================================= */

.network-layout {
  display: grid;

  grid-template-columns: 380px 1fr;

  gap: 80px;

  align-items: start;
}

/* =========================================================
LEFT SIDE
========================================================= */

.network-left {
  position: sticky;

  top: 120px;
}

.network-left .section-number {
  display: inline-block;

  margin-bottom: 18px;

  color: var(--pink);

  font-weight: 700;

  letter-spacing: 0.18em;

  text-transform: uppercase;
}

.network-left h2 {
  font-size: clamp(3rem, 5vw, 5rem);

  line-height: 0.9;

  margin-bottom: 30px;
}

.network-left p {
  color: #444;

  line-height: 1.9;

  max-width: 360px;
}

/* =========================================================
RIGHT SIDE
========================================================= */

.network-right {
  width: 100%;
}

/* =========================================================
PARTNER GRID
========================================================= */

.partner-grid {
  display: grid;

  grid-template-columns: repeat(2, minmax(220px, 1fr));

  gap: 24px;
}

/* =========================================================
PARTNER CARD
========================================================= */

.partner-item {
  display: flex;

  align-items: center;

  justify-content: center;

  min-height: 130px;

  padding: 28px;

  background: #fff;

  border: 2px solid #111;

  border-radius: 26px;

  text-align: center;

  font-family: "Syne", sans-serif;

  font-size: 1.15rem;

  font-weight: 700;

  transition: 0.35s;

  cursor: default;
}

.partner-item:hover {
  background: var(--pink);

  color: #fff;

  transform: translateY(-8px);

  border-color: var(--pink);

  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}
/* =========================================================
PART 11
TIMELINE
========================================================= */

.timeline {
  background: var(--cream);
}

/* =========================================================
TIMELINE LIST
========================================================= */

.timeline-list {
  display: flex;

  flex-direction: column;

  gap: 120px;

  margin-top: 80px;
}

/* =========================================================
ITEM
========================================================= */

.timeline-item {
  display: grid;

  grid-template-columns: 140px 1fr 1fr;

  gap: 50px;

  align-items: center;
}

/* =========================================================
REVERSE LAYOUT
========================================================= */

.timeline-item.reverse {
  grid-template-columns: 1fr 1fr 140px;
}

.timeline-item.reverse .timeline-year {
  order: 3;

  text-align: right;
}

.timeline-item.reverse .timeline-image {
  order: 2;
}

.timeline-item.reverse .timeline-content {
  order: 1;
}

/* =========================================================
YEAR
========================================================= */

.timeline-year {
  font-family: "Syne", sans-serif;

  font-size: 4rem;

  font-weight: 800;

  color: var(--pink);

  line-height: 1;
}

/* =========================================================
IMAGE
========================================================= */

.timeline-image {
  overflow: hidden;

  border-radius: 28px;

  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.timeline-image img {
  width: 100%;

  height: 100%;

  display: block;

  object-fit: cover;

  transition: 0.45s;
}

.timeline-image:hover img {
  transform: scale(1.06);
}

/* =========================================================
CONTENT
========================================================= */

.timeline-category {
  display: inline-block;

  margin-bottom: 14px;

  font-size: 0.8rem;

  font-weight: 700;

  color: var(--pink);

  letter-spacing: 0.18em;

  text-transform: uppercase;
}

.timeline-content h3 {
  font-size: 2.3rem;

  margin-bottom: 18px;

  line-height: 1.1;
}

.timeline-content p {
  color: #555;

  line-height: 1.9;
}
/* =========================================================
PART 12
ARCHIVE PREVIEW / GALLERY
========================================================= */

.gallery {
  background: var(--yellow);
}

/* =========================================================
GRID
========================================================= */

.gallery-grid {
  display: grid;

  grid-template-columns: repeat(12, 1fr);

  grid-auto-rows: 220px;

  gap: 24px;
}

/* =========================================================
ITEM
========================================================= */

.gallery-item {
  position: relative;

  overflow: hidden;

  border-radius: 30px;

  background: #ddd;

  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.gallery-item img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: 0.45s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* =========================================================
LAYOUT
========================================================= */

.gallery-item.large {
  grid-column: span 7;

  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 7;
}

.gallery-item.tall {
  grid-column: span 5;

  grid-row: span 2;
}

.gallery-item:not(.large):not(.wide):not(.tall) {
  grid-column: span 5;
}

/* =========================================================
OVERLAY
========================================================= */

.gallery-item::before {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(to top, rgba(0, 0, 0, 0.28), transparent 55%);

  opacity: 0;

  transition: 0.35s;

  z-index: 1;
}

.gallery-item:hover::before {
  opacity: 1;
}

/* =========================================================
FOOTER
========================================================= */

.gallery-footer {
  margin-top: 70px;

  display: flex;

  justify-content: center;
}
/* =========================================================
PART 13
MOVING FORWARD
CONTACT
FOOTER
========================================================= */

/* =========================================================
MOVING FORWARD
========================================================= */

.moving-forward {
  background: var(--pink);

  color: #fff;

  text-align: center;
}

.moving-wrapper {
  max-width: 900px;

  margin: auto;
}

.moving-wrapper .section-number {
  color: rgba(255, 255, 255, 0.75);
}

.moving-wrapper h2 {
  font-size: clamp(3.5rem, 8vw, 7rem);

  line-height: 0.9;

  margin: 20px 0 35px;
}

.moving-text {
  font-size: 1.2rem;

  line-height: 2;

  max-width: 760px;

  margin: 0 auto 50px;
}

.moving-wrapper blockquote {
  font-family: "Syne", sans-serif;

  font-size: 2.3rem;

  color: var(--yellow);

  line-height: 1.2;
}

/* =========================================================
CONTACT
========================================================= */

.contact {
  background: var(--cream);
}

.contact-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 100px;

  align-items: flex-start;
}

.contact-left h2 {
  font-size: clamp(3rem, 6vw, 5.5rem);

  line-height: 0.9;

  margin: 20px 0 28px;
}

.contact-left p {
  max-width: 520px;

  line-height: 1.9;

  color: #444;
}

.contact-item {
  padding: 30px 0;

  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-item span {
  display: block;

  margin-bottom: 10px;

  font-size: 0.8rem;

  letter-spacing: 0.18em;

  text-transform: uppercase;

  color: #888;
}

.contact-item a {
  color: #111;

  text-decoration: none;

  font-family: "Syne", sans-serif;

  font-size: 1.7rem;

  transition: 0.35s;
}

.contact-item a:hover {
  color: var(--pink);
}

.contact-item p {
  font-size: 1.15rem;

  color: #444;
}

/* =========================================================
FOOTER
========================================================= */

.site-footer {
  background: var(--pink);

  color: #fff;

  padding: 70px 0 40px;
}

.footer-top {
  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 40px;

  padding-bottom: 35px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-logo {
  font-family: "Syne", sans-serif;

  font-size: 2.4rem;

  font-weight: 800;
}

.footer-nav {
  display: flex;

  flex-wrap: wrap;

  gap: 28px;
}

.footer-nav a {
  color: #fff;

  text-decoration: none;

  transition: 0.3s;
}

.footer-nav a:hover {
  color: var(--yellow);
}

.footer-bottom {
  margin-top: 35px;

  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 25px;

  font-size: 0.9rem;

  color: rgba(255, 255, 255, 0.75);
}
/* =========================================================
PART 14
FINAL RESPONSIVE + MOBILE MENU
========================================================= */

/* =========================================================
GLOBAL SAFETY
========================================================= */

html,
body {
  width: 100%;

  overflow-x: hidden;
}

section {
  overflow: hidden;
}

img {
  max-width: 100%;

  height: auto;
}
/* =========================================================
PART 14
FINAL RESPONSIVE + MOBILE MENU
========================================================= */

/* =========================================================
GLOBAL SAFETY
========================================================= */

html,
body {
  width: 100%;

  overflow-x: hidden;
}

section {
  overflow: hidden;
}

img {
  max-width: 100%;

  height: auto;
}

/* =========================================================
MOBILE MENU
========================================================= */

.menu-toggle {
  display: none;

  width: 48px;

  height: 48px;

  border-radius: 50%;

  background: var(--pink);

  color: #fff;

  font-weight: 700;

  cursor: pointer;

  z-index: 1002;
}

.menu-close {
  position: absolute;

  top: 30px;

  right: 30px;

  width: 48px;

  height: 48px;

  border-radius: 50%;

  background: var(--pink);

  color: #fff;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 1.6rem;

  cursor: pointer;
}

/* =========================================================
OVERLAY
========================================================= */

.menu-overlay {
  position: fixed;

  inset: 0;

  background: rgba(0, 0, 0, 0.45);

  opacity: 0;

  visibility: hidden;

  transition: 0.35s;

  z-index: 998;
}

.menu-overlay.active {
  opacity: 1;

  visibility: visible;
}

/* =========================================================
ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;

    transition: none !important;

    scroll-behavior: auto !important;
  }
}
/* =========================================================
RESPONSIVE
TABLET
========================================================= */

@media (max-width: 1200px) {
  .hero {
    min-height: auto;
    padding: 150px 0 90px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .hero-text {
    text-align: center;
  }

  .hero-description {
    max-width: 700px;
    margin: 0 auto 40px;
  }

  .hero-tagline {
    align-items: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-media {
    min-height: 520px;
  }

  .hero-photo {
    width: 420px;
    height: 420px;
  }

  .hero-decoration {
    width: 500px;
    height: 500px;
  }

  .hero-orange {
    width: 60px;
    height: 60px;
    top: 50px;
    right: 70px;
  }

  .section {
    padding: 110px 0;
  }

  .section-grid {
    grid-template-columns: 1fr;

    gap: 45px;
  }

  .section-grid.reverse {
    grid-template-columns: 1fr;
  }

  .section-label {
    display: none;
  }

  .network-layout {
    grid-template-columns: 1fr;

    gap: 50px;
  }

  .network-left {
    position: static;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline-item {
    grid-template-columns: 1fr;

    gap: 30px;
  }

  .timeline-item.reverse {
    direction: ltr;
  }

  .contact-grid {
    grid-template-columns: 1fr;

    gap: 60px;
  }
  .section-grid {
    grid-template-columns: 1fr;

    gap: 45px;
  }

  .section-label {
    display: none;
  }

  .section-content {
    text-align: center;
  }

  .highlight-box {
    text-align: left;
  }

  .section-media {
    order: -1;
  }
}

/* =========================================================
RESPONSIVE
MOBILE
========================================================= */

@media (max-width: 992px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .network-layout {
    grid-template-columns: 1fr;

    gap: 60px;
  }

  .network-left {
    position: static;
  }

  .network-left p {
    max-width: 100%;
  }
  .timeline-item,
  .timeline-item.reverse {
    grid-template-columns: 1fr;

    gap: 28px;
  }

  .timeline-item.reverse .timeline-year,
  .timeline-item.reverse .timeline-image,
  .timeline-item.reverse .timeline-content {
    order: unset;

    text-align: left;
  }

  .timeline-year {
    font-size: 3rem;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);

    grid-auto-rows: 260px;
  }

  .gallery-item,
  .gallery-item.large,
  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: auto;

    grid-row: auto;
  }
  .contact-grid {
    grid-template-columns: 1fr;

    gap: 60px;
  }

  .contact-left p {
    max-width: 100%;
  }
  .section {
    padding: 110px 0;
  }

  .hero {
    min-height: auto;

    padding-top: 140px;

    padding-bottom: 80px;
  }

  .hero-grid {
    grid-template-columns: 1fr;

    text-align: center;

    gap: 60px;
  }

  .hero-description {
    margin-left: auto;

    margin-right: auto;
  }

  .hero-tagline {
    align-items: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-media {
    min-height: auto;
  }

  .hero-photo {
    width: 420px;

    height: 420px;
  }

  .hero-orange {
    width: 65px;

    height: 65px;

    top: 20px;

    right: 80px;
  }

  .hero-decoration {
    width: 170px;

    right: 40px;

    bottom: 20px;
  }

  .section-grid {
    grid-template-columns: 1fr;

    gap: 50px;
  }

  .section-label {
    display: none;
  }

  .section-grid.reverse {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 20px 0;
  }

  .logo img {
    height: 48px;
  }

  .menu-toggle {
    display: block;

    font-weight: 700;

    letter-spacing: 0.08em;

    z-index: 1001;
  }

  .desktop-menu {
    position: fixed;

    top: 0;
    right: -100%;

    width: 300px;
    max-width: 90%;

    height: 100vh;

    background: var(--yellow);

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: flex-start;

    gap: 28px;

    padding: 50px;

    transition: 0.45s;

    z-index: 1000;

    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.15);
  }

  .desktop-menu.open {
    right: 0;
  }

  .desktop-menu a {
    font-size: 1.25rem;
  }

  .hero {
    padding-top: 130px;

    padding-bottom: 70px;
  }

  .hero-grid {
    gap: 60px;
  }

  .hero-title img {
    width: 260px;

    margin: auto;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-tagline span {
    font-size: 1.15rem;
  }

  .hero-buttons {
    flex-direction: column;

    align-items: center;
  }

  .button {
    width: 220px;
  }

  .hero-media {
    min-height: 360px;
  }

  .hero-photo {
    width: 310px;

    height: 310px;
  }

  .hero-decoration {
    width: 360px;

    height: 360px;
  }

  .hero-orange {
    width: 46px;

    height: 46px;

    top: 18px;

    right: 18px;
  }

  .scroll-down {
    display: none;
  }
  .section {
    padding: 90px 0;
  }

  .section-heading {
    margin-bottom: 50px;

    text-align: center;
  }

  .section-content {
    text-align: center;
  }

  .display-title,
  .section-content h2,
  .network-left h2,
  .contact-left h2 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;

    padding: 35px;

    transform: none !important;
  }
  .about-stat-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .partner-grid {
    grid-template-columns: 1fr;
  }

  .partner-item {
    min-height: 90px;
  }

  .timeline-list {
    gap: 70px;
  }

  .timeline-year {
    font-size: 2.4rem;

    text-align: center;
  }

  .timeline-content {
    text-align: center;
  }

  .timeline-content p {
    max-width: none;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item,
  .gallery-item.large,
  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: auto;

    grid-row: auto;
  }

  .contact-item {
    text-align: center;
  }

  .contact-item a {
    font-size: 1.35rem;

    word-break: break-word;
  }
  .footer-top {
    flex-direction: column;

    text-align: center;
  }

  .footer-nav {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;

    text-align: center;
  }
  .section-content h2 {
    font-size: 2.3rem;
  }

  .section-content .lead {
    font-size: 1.1rem;
  }

  .highlight-box {
    padding: 28px;
  }

  .image-organic {
    max-width: 340px;
  }
  .service-grid {
    grid-template-columns: 1fr;

    gap: 24px;
  }

  .rotate-left,
  .rotate-right {
    transform: none;
  }

  .service-card {
    padding: 36px 28px;
  }

  .service-card h3 {
    font-size: 1.7rem;
  }
  .partner-grid {
    grid-template-columns: 1fr;
  }

  .partner-item {
    min-height: 95px;

    font-size: 1rem;

    padding: 24px;
  }
  .timeline-list {
    gap: 70px;
  }

  .timeline-content h3 {
    font-size: 1.8rem;
  }

  .timeline-content p {
    font-size: 0.95rem;
  }
  .gallery-grid {
    grid-template-columns: 1fr;

    grid-auto-rows: 260px;

    gap: 18px;
  }

  .gallery-item {
    border-radius: 22px;
  }

  .gallery-footer {
    margin-top: 45px;
  }
  .moving-wrapper h2 {
    font-size: 3rem;
  }

  .moving-text {
    font-size: 1rem;
  }

  .moving-wrapper blockquote {
    font-size: 1.7rem;
  }

  .contact-item a {
    font-size: 1.35rem;

    word-break: break-word;
  }

  .footer-top {
    flex-direction: column;

    text-align: center;
  }

  .footer-nav {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;

    text-align: center;
  }
  .menu-toggle {
    display: flex;

    align-items: center;

    justify-content: center;
  }

  .desktop-menu {
    position: fixed;

    top: 0;

    right: -100%;

    width: min(320px, 85vw);

    height: 100vh;

    background: var(--cream);

    display: flex;

    flex-direction: column;

    gap: 28px;

    padding: 100px 35px;

    transition: 0.4s;

    z-index: 999;
  }

  .desktop-menu.open {
    right: 0;
  }

  .desktop-menu a {
    font-size: 1.2rem;
  }

  .hero {
    padding-top: 130px;
  }

  .hero-title img {
    width: min(320px, 80vw);
  }

  .hero-photo {
    width: 300px;

    height: 300px;
  }

  .hero-orange {
    width: 42px;

    height: 42px;

    right: 35px;

    top: 10px;
  }

  .hero-decoration {
    width: 120px;

    right: 10px;

    bottom: 5px;
  }

  .hero-buttons {
    flex-direction: column;

    align-items: center;

    gap: 18px;
  }

  .button {
    width: 100%;

    max-width: 260px;
  }

  .scroll-down {
    display: none;
  }
}

/* =========================================================
SMALL PHONE
========================================================= */

@media (max-width: 480px) {
  .hero {
    padding-top: 120px;
  }

  .hero-photo {
    width: 270px;

    height: 270px;
  }

  .hero-decoration {
    width: 315px;

    height: 315px;
  }

  .hero-orange {
    width: 40px;

    height: 40px;
  }

  .hero-title img {
    width: 220px;
  }
  .container {
    width: min(94%, 1380px);
  }

  .button {
    width: 100%;
  }

  .hero-buttons {
    width: 100%;
  }

  .hero-buttons .button {
    width: 100%;
  }
  .container {
    width: min(92%, 100%);
  }

  .section {
    padding: 80px 0;
  }

  .hero-photo {
    width: 260px;

    height: 260px;
  }

  .hero-orange {
    width: 34px;

    height: 34px;
  }

  .hero-decoration {
    width: 95px;
  }

  .section-heading h2,
  .display-title,
  .contact-left h2,
  .network-left h2,
  .moving-wrapper h2 {
    font-size: 2.3rem;
  }

  .timeline-year {
    font-size: 2.5rem;
  }
}
