/*
Theme Name: WISIW
Theme URI: https://wisiw.production.co.id
Author: PT. Galaksi Tujuh Samudra
Author URI: https://wisiw.production.co.id
Description: Tema WordPress WISIW - lima halaman company profile dwibahasa (EN/ID), konversi 1:1 dari rancangan PDF 1920px. Tata letak dirender langsung oleh template PHP sehingga keluarannya identik dengan versi HTML statis. Seluruh teks dan foto tiap halaman dapat disunting lewat Tampilan > Sesuaikan > WISIW: Isi Halaman.
Version: 1.2.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wisiw
Tags: company-profile, custom-colors, custom-logo, translation-ready
*/

/* ============================================================
   WISIW — Website Styles
   Palette : orange #F49D25 · dark #1A1A1A · grey #333333
   Fonts   : Agrandir GrandHeavy (headings) · Montserrat (body)

   Scaling model:
   - Design reference is the 1920px-wide PDF artwork.
   - At >=1100px viewport: 1rem = 16px @1920 (html font-size
     is 0.8333vw), so layout dimensions in rem scale in exact
     proportion to the PDF at any window width — spacing and
     image crops stay in the same composition.
   - Text does NOT use raw rem: every font-size maps to one of
     the --text-* steps below — a 1.25-ratio scale that matches
     the PDF exactly at 1920px but is clamped so type never
     drops below readable sizes on smaller screens, and never
     balloons on very wide ones.
   - At <1100px: base font resets to 16px and layouts stack
     (tablet/mobile), with a pure-CSS hamburger menu.
   ============================================================ */

@font-face {
  font-family: 'Agrandir Heavy';
  src: url('assets/fonts/Agrandir-GrandHeavy.otf') format('opentype');
  font-weight: 800;
  font-display: swap;
}
@font-face {
  font-family: 'Agrandir Light';
  src: url('assets/fonts/Agrandir-WideLight.otf') format('opentype');
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('assets/fonts/Montserrat-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('assets/fonts/Montserrat-Medium.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
}

:root {
  --orange: #F49D25;
  --orange-dark: #d9880f;
  --dark:   #1A1A1A;
  --grey:   #333333;
  --white:  #FFFFFF;
  --heading: 'Agrandir Heavy', 'Montserrat', sans-serif;
  --body:    'Montserrat', sans-serif;

  /* Fluid type scale — 1.25 ratio, tuned to equal the PDF at 1920px.
     clamp(readable floor, viewport-proportional, ceiling)      @1920  */
  --text-sm:   clamp(13px, 0.8333vw, 18px);   /* captions, meta   16px */
  --text-base: clamp(15px, 0.9375vw, 21px);   /* nav, btn, footer 18px */
  --text-md:   clamp(15px, 1.0417vw, 23px);   /* body copy        20px */
  --text-lg:   clamp(17px, 1.3021vw, 29px);   /* lead text, h4    25px */
  --text-xl:   clamp(21px, 1.6146vw, 35px);   /* card headings    31px */
  --text-2xl:  clamp(25px, 2.0313vw, 45px);   /* big card titles  39px */
  --text-3xl:  clamp(31px, 2.5521vw, 56px);   /* section titles   49px */
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { font-size: 16px; scroll-behavior: smooth; }
@media (min-width: 1100px) {
  /* 1rem == 16px on a 1920px viewport, scales proportionally */
  html { font-size: 0.8333vw; }
}

body {
  font-family: var(--body);
  font-weight: 400;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 113.25rem;
  margin: 0 auto;
  padding: 0 3.125rem;
}

/* ---------------- Header / Main menu ---------------- */
.site-header {
  background: var(--orange);
  height: 7.25rem;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 50;
}
.site-header .header-inner {
  width: 100%;
  max-width: 115rem;
  margin: 0 auto;
  padding: 0 2.8125rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.site-header .logo img { height: 4.625rem; width: auto; }

.main-nav { display: flex; align-items: center; gap: 3.625rem; }
.main-nav a {
  font-family: var(--body);
  font-weight: 500;
  font-size: var(--text-base);
  color: var(--dark);
  padding-bottom: 0.25rem;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: border-color .2s ease;
}
.main-nav a.active,
.main-nav a:hover { border-bottom-color: var(--dark); }
.main-nav a .caret {
  display: inline-block;
  margin-left: 0.375rem;
  font-size: 0.61em;
  transform: translateY(-1px);
}
.lang-select {
  margin-left: 5.9375rem;
  font-weight: 500;
  font-size: var(--text-base);
  color: var(--dark);
  cursor: pointer;
  white-space: nowrap;
}
.lang-select .caret { font-size: 0.61em; margin-left: 0.375rem; }

/* pure-CSS hamburger (visible only < 1100px) */
.nav-toggle { display: none; }
.nav-burger { display: none; }

/* ---------------- Headings ---------------- */
.section-title {
  font-family: var(--heading);
  font-size: var(--text-3xl);
  line-height: 1.15;
  letter-spacing: 0.03em;
  text-align: center;
}

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-block;
  font-family: 'Agrandir Light', var(--body);
  font-weight: 300;
  font-size: var(--text-base);
  padding: 0.875rem 2.75rem;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,.18); }
.btn-orange {
  background: var(--orange);
  color: var(--dark);
  border: 1px solid var(--orange-dark);
}
.btn-dark {
  background: var(--dark);
  color: var(--white);
  border: 1px solid var(--dark);
}

/* ---------------- WhatsApp float ---------------- */
.wa-float {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
  z-index: 100;
  transition: transform .15s ease;
}
.wa-float:hover { transform: scale(1.07); }
.wa-float svg { width: 32px; height: 32px; fill: #fff; }

/* ---------------- Footer ---------------- */
.site-footer {
  background: var(--dark);
  color: var(--white);
  padding: 5.9375rem 0 9.0625rem;
}
.site-footer .footer-inner {
  max-width: 115rem;
  margin: 0 auto;
  padding: 0 2.8125rem;
  display: flex;
  align-items: center;
}
.footer-logo { flex: 0 0 auto; padding-left: 5.9375rem; margin-right: auto; }
.footer-logo img { width: 39.8rem; max-width: 100%; height: auto; }

.footer-col h3 {
  font-family: var(--heading);
  font-size: var(--text-lg);
  margin-bottom: 2.625rem;
  color: var(--white);
}
.footer-links { width: 19.0625rem; flex: 0 0 auto; margin-right: 6.875rem; }
.footer-links li { margin-bottom: 1.5rem; }
.footer-links a {
  font-size: var(--text-base);
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.625rem;
  transition: color .15s ease;
}
.footer-links a:hover { color: var(--orange); }
.footer-links a .arr { color: var(--orange); font-size: 1em; line-height: 1; }

.footer-contact { width: 29.5rem; flex: 0 0 auto; }
.footer-contact p { font-size: var(--text-base); line-height: 1.4; margin-bottom: 1.5rem; }
.footer-contact .connect { margin-top: 2.5rem; margin-bottom: 1.25rem; }
.social-icons { display: flex; align-items: center; gap: 2.375rem; }
.social-icons a { display: inline-flex; transition: opacity .15s ease; }
.social-icons a:hover { opacity: .7; }
.social-icons svg { width: 1.75rem; height: 1.75rem; fill: #fff; }

/* ============================================================
   HOMEPAGE
   ============================================================ */
.hero-home {
  position: relative;
  height: 60.25rem;                    /* 964px @1920 */
  background: center 35% / cover no-repeat;   /* gambar: inline style dari Customizer */
}
.hero-home::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(20, 18, 15, 0.45);
}
.hero-home .hero-logo {
  position: absolute;
  top: 45.4%; left: 50%;
  transform: translate(-50%, -50%);
  width: 77.7rem;                      /* 1243px @1920, from PDF vector bbox */
  max-width: 80%;
}

/* About Us (home) */
.home-about { display: flex; align-items: stretch; }
.home-about .about-photo {
  position: relative;
  width: 50%;
  flex: 0 0 50%;
}
.home-about .about-photo > img.photo {
  width: 100%;
  height: 43.75rem;                    /* 700px @1920 */
  object-fit: cover;
}
.home-about .sticker {
  position: absolute;
  left: 9%;
  top: 25%;
  width: 77.5%;
  transform: rotate(-7deg);
  /* white sticker outline */
  filter:
    drop-shadow(2px 0 0 #fff) drop-shadow(-2px 0 0 #fff)
    drop-shadow(0 2px 0 #fff) drop-shadow(0 -2px 0 #fff)
    drop-shadow(2px 2px 0 #fff) drop-shadow(-2px -2px 0 #fff)
    drop-shadow(0.375rem 0.625rem 0.75rem rgba(0,0,0,.45));
}
.home-about .about-text {
  flex: 1 1 auto;
  background: var(--white);
  padding: 11.125rem 0 0 10rem;
}
.home-about .about-text .inner { max-width: 40.5rem; }
.home-about h2 {
  font-family: var(--heading);
  font-size: var(--text-3xl);
  margin-bottom: 2.375rem;
}
.home-about p {
  font-size: var(--text-md);
  line-height: 1.65;
  text-align: justify;
  margin-bottom: 2.75rem;
}

/* Recent Project */
.recent-project {
  background: linear-gradient(to bottom, var(--orange) 0, var(--orange) 31.875rem, var(--white) 31.875rem);
  padding-top: 4.375rem;
}
.recent-project .section-title { margin-bottom: 3.75rem; }
.recent-cards {
  display: flex;
  gap: 2.375rem;
  justify-content: center;
}
.recent-card {
  position: relative;
  flex: 0 1 52.375rem;                 /* 838px @1920 */
  aspect-ratio: 838 / 618;
  border-radius: 0.75rem;
  overflow: hidden;
}
.recent-card img { width: 100%; height: 100%; object-fit: cover; }
.recent-card .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.25) 45%, rgba(0,0,0,.15) 100%);
}
.recent-card .caption {
  position: absolute;
  left: 2.625rem; right: 2.625rem; bottom: 5.625rem;
  color: var(--white);
}
.recent-card .caption h3 {
  font-family: var(--heading);
  font-size: var(--text-2xl);
  margin-bottom: 1rem;
}
.recent-card .caption p {
  font-size: var(--text-base);
  line-height: 1.6;
  text-align: justify;
}

/* What We Do */
.what-we-do { padding: 4.875rem 0 3.75rem; }
.what-we-do .section-title { margin-bottom: 3.4375rem; }
.wwd-cards { display: flex; gap: 2.625rem; justify-content: center; }
.wwd-card {
  position: relative;
  flex: 0 1 34.125rem;                 /* 546px @1920 */
  aspect-ratio: 546 / 442;
  border-radius: 0.375rem;
  overflow: hidden;
}
.wwd-card img { width: 100%; height: 100%; object-fit: cover; }
.wwd-card .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, rgba(0,0,0,.1) 55%, rgba(0,0,0,0) 100%);
}
.wwd-card .caption {
  position: absolute;
  left: 1.5rem; right: 1.5rem; bottom: 4.875rem;
  color: var(--white);
  text-shadow: 0 1px 3px rgba(0,0,0,.6);
}
.wwd-card .caption h3 {
  font-family: var(--heading);
  font-size: var(--text-xl);
  margin-bottom: 0.75rem;
}
.wwd-card .caption p {
  font-size: var(--text-sm);
  line-height: 1.55;
  text-align: justify;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.hero-about {
  position: relative;
  height: 27.5rem;                     /* 440px @1920 */
  background: center 60% / cover no-repeat;   /* gambar: inline style dari Customizer */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}
.hero-about::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(60, 55, 50, 0.35);
}
.hero-about .inner { position: relative; max-width: 97.5rem; padding: 0 2.5rem; }
.hero-about h1 {
  font-family: var(--heading);
  font-size: var(--text-3xl);
  margin-bottom: 1.875rem;
}
.hero-about p { font-size: var(--text-lg); line-height: 1.6; }

/* Vision / Mission */
.vision-mission { padding: 5rem 0 0; }
.vm-cards {
  display: flex;
  gap: 1.75rem;
  justify-content: center;
  max-width: 101.25rem;
  margin: 0 auto;
  padding: 0 2.5rem;
}
.vm-card {
  background: var(--dark);
  color: var(--white);
  border-radius: 1rem;
  flex: 0 1 47.25rem;                  /* 756px @1920 */
  min-height: 27.625rem;
  padding: 4.75rem 3.875rem;
  text-align: center;
}
.vm-card h2 {
  font-family: var(--heading);
  font-size: var(--text-3xl);
  margin-bottom: 2.625rem;
}
.vm-card p { font-size: var(--text-lg); line-height: 1.55; text-align: justify; text-align-last: center; }

/* Our Project (about) */
.our-project-band {
  background: var(--orange);
  padding: 7.1875rem 0;
}
.our-project-band .inner {
  max-width: 115rem;
  margin: 0 auto;
  padding: 0 2.8125rem;
  display: flex;
  align-items: center;
  gap: 8.125rem;
}
.collage {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.3125rem;
  width: 46.875rem;                    /* 750px @1920 */
  flex: 0 0 46.875rem;
}
.collage img { width: 100%; aspect-ratio: 247 / 285; height: auto; object-fit: cover; }
.our-project-band .text { max-width: 41.25rem; }
.our-project-band h2 {
  font-family: var(--heading);
  font-size: var(--text-3xl);
  margin-bottom: 2.5rem;
}
.our-project-band p {
  font-size: var(--text-md);
  line-height: 1.65;
  text-align: justify;
  margin-bottom: 2.875rem;
}

/* Our Client */
.our-client { padding: 4.375rem 0 5.625rem; }
.our-client .section-title { font-size: var(--text-3xl); margin-bottom: 3.75rem; }
.our-client.on-grey {
  background: var(--grey);
  color: var(--white);
}
.client-logos {
  max-width: 106.25rem;
  margin: 0 auto;
  padding: 0 2.5rem;
}
.client-logos .client-row {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 2.625rem;
  margin-bottom: 3.4375rem;
}
.client-logos .client-row:last-child { margin-bottom: 0; }
.client-logos img { height: 3.4375rem; width: auto; }

/* ============================================================
   OUR STORY PAGE
   ============================================================ */
.story-top {
  background: linear-gradient(to bottom, var(--dark) 0, var(--dark) 53.125rem, var(--white) 53.125rem);
  color: var(--white);
  padding-top: 7.5rem;
}
.story-top .page-title {
  font-family: var(--heading);
  font-size: var(--text-3xl);
  text-align: center;
  margin-bottom: 2.625rem;
}
.story-top .page-sub {
  max-width: 93.75rem;
  margin: 0 auto 9.375rem;
  padding: 0 2.5rem;
  font-size: var(--text-lg);
  line-height: 1.6;
  text-align: center;
}
.story-top .portfolio-title {
  font-family: var(--heading);
  font-size: var(--text-3xl);
  text-align: center;
  margin-bottom: 4.5rem;
}
.portfolio-grid {
  max-width: 98.75rem;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: 61.875rem 1fr;   /* 990px | ~460px @1920 */
  grid-template-rows: 27.625rem 27.625rem;
  gap: 2.625rem 3rem;
}
.pf-card {
  position: relative;
  border-radius: 0.25rem;
  overflow: hidden;
}
.pf-card.big { grid-row: 1 / 3; }
.pf-card img { width: 100%; height: 100%; object-fit: cover; }
.pf-card .caption {
  position: absolute;
  left: 0; right: 0;
  color: var(--white);
  text-align: center;
}
.pf-card.big .caption {
  bottom: 6.5625rem;
  padding: 1.625rem 1.25rem;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(2px);
}
.pf-card.big .caption h3 { font-family: var(--heading); font-size: var(--text-2xl); margin-bottom: 0.625rem; }
.pf-card.big .caption p { font-size: var(--text-md); font-weight: 400; }
.pf-card.small .caption {
  left: 0; right: 0; bottom: 0;
  padding: 1.125rem 1.75rem 1.25rem;
  text-align: left;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(2px);
}
.pf-card.small .caption h3 { font-family: var(--heading); font-size: var(--text-lg); margin-bottom: 0.5rem; }
.pf-card.small .caption p { font-size: var(--text-sm); }

.story-projects { padding: 7.5rem 0 8.125rem; }
.story-projects .section-title { font-size: var(--text-3xl); margin-bottom: 5.3125rem; color: var(--dark); }
.sp-grid {
  max-width: 98.75rem;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 2.125rem;
}
.sp-card {
  position: relative;
  aspect-ratio: 478 / 442;
  border-radius: 0.25rem;
  overflow: hidden;
}
.sp-card img { width: 100%; height: 100%; object-fit: cover; }
.sp-card .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.62) 0%, rgba(0,0,0,.12) 50%, rgba(0,0,0,0) 100%);
}
.sp-card .caption {
  position: absolute;
  left: 1.75rem; right: 1.75rem; bottom: 1.375rem;
  color: var(--white);
}
.sp-card .caption h3 { font-family: var(--heading); font-size: var(--text-lg); margin-bottom: 0.5rem; }
.sp-card .caption p { font-size: var(--text-sm); }
.sp-card .nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1.625rem; height: 1.625rem;
  border-radius: 50%;
  background: rgba(255,255,255,.85);
  color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem;
  line-height: 1;
}
.sp-card .nav-arrow.prev { left: 0.625rem; }
.sp-card .nav-arrow.next { right: 0.625rem; }

/* ============================================================
   SERVICE PAGE
   ============================================================ */
.service-block { padding: 5.125rem 0 6.875rem; }
.service-block.on-dark { background: var(--dark); color: var(--white); }
.service-block.on-orange { background: var(--orange); }
.service-main {
  max-width: 101.25rem;
  margin: 0 auto 2.625rem;
  padding: 0 2.5rem;
  display: flex;
  align-items: flex-start;
  gap: 7.8125rem;
}
.service-main.reverse { flex-direction: row-reverse; }
.service-main .photo {
  flex: 0 0 47.1875rem;                /* 755px @1920 */
  width: 47.1875rem;
}
.service-main .photo img {
  width: 100%;
  aspect-ratio: 755 / 795;
  height: auto;
  object-fit: cover;
}
.service-main .text { max-width: 35.3125rem; padding-top: 1.125rem; }
.service-main h2 {
  font-family: var(--heading);
  font-size: var(--text-3xl);
  line-height: 1.18;
  margin-bottom: 3rem;
}
.service-main p {
  font-size: var(--text-base);
  line-height: 1.7;
  text-align: justify;
  margin-bottom: 1.625rem;
}
.service-thumbs {
  max-width: 101.25rem;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  gap: 2rem;
}
.service-thumbs img {
  flex: 0 1 29.5rem;                   /* 472px @1920 */
  width: 29.5rem;
  aspect-ratio: 472 / 425;
  height: auto;
  object-fit: cover;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.hero-contact {
  position: relative;
  height: 52.1875rem;                  /* 835px @1920 */
  background: center / cover no-repeat;       /* gambar: inline style dari Customizer */
  display: flex;
  align-items: center;
  color: var(--white);
}
.hero-contact::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.62) 0%, rgba(0,0,0,.35) 55%, rgba(0,0,0,.15) 100%);
}
.hero-contact .inner {
  position: relative;
  max-width: 115rem;
  margin: 0 auto;
  padding: 0 2.8125rem;
  width: 100%;
}
.hero-contact h1 {
  font-family: var(--heading);
  font-size: var(--text-3xl);
  line-height: 1.24;
  max-width: 77.5rem;
  margin-bottom: 3.875rem;
  margin-left: 18.75rem;
}
.hero-contact .contact-link {
  margin-left: 18.75rem;
  font-size: var(--text-lg);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  border-bottom: 1px solid transparent;
  transition: border-color .15s ease;
}
.hero-contact .contact-link:hover { border-bottom-color: var(--white); }
.hero-contact .next-arrow {
  position: absolute;
  right: 1.125rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,.85);
  font-size: 2.625rem;
  font-family: var(--body);
}

/* ============================================================
   RESPONSIVE — tablet & mobile (< 1100px): layouts stack
   ============================================================ */
@media (max-width: 1099px) {

  /* ---- header: hamburger menu ---- */
  .site-header { height: 68px; }
  .site-header .header-inner { padding: 0 20px; }
  .site-header .logo img { height: 42px; }

  .nav-burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 34px;
    height: 34px;
    cursor: pointer;
  }
  .nav-burger span,
  .nav-burger::before,
  .nav-burger::after {
    content: '';
    display: block;
    height: 3px;
    border-radius: 2px;
    background: var(--dark);
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--orange);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 0 14px;
    box-shadow: 0 10px 20px rgba(0,0,0,.15);
  }
  .nav-toggle:checked ~ .main-nav { display: flex; }
  .main-nav a {
    width: 100%;
    padding: 13px 24px;
    font-size: 15px;
    border-bottom: none;
  }
  .main-nav a.active { font-weight: 600; text-decoration: underline; text-underline-offset: 4px; }
  .main-nav a.active, .main-nav a:hover { border-bottom-color: transparent; }
  .lang-select { margin: 10px 24px 0; }

  .section-title { font-size: 30px; }
  .btn { font-size: 14px; padding: 11px 30px; }

  /* ---- footer stacks ---- */
  .site-footer { padding: 55px 0 70px; }
  .site-footer .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 42px;
    padding: 0 24px;
  }
  .footer-logo { padding-left: 0; margin-right: 0; }
  .footer-logo img { width: min(320px, 70vw); }
  .footer-col h3 { font-size: 22px; margin-bottom: 20px; }
  .footer-links { width: auto; margin-right: 0; }
  .footer-links li { margin-bottom: 13px; }
  .footer-links a { font-size: 15px; }
  .footer-contact { width: auto; }
  .footer-contact p { font-size: 15px; margin-bottom: 14px; }
  .footer-contact .connect { margin-top: 24px; margin-bottom: 12px; }
  .social-icons { gap: 22px; }
  .social-icons svg { width: 20px; height: 20px; }

  /* ---- homepage ---- */
  .hero-home { height: min(72vw, 460px); }
  .hero-home .hero-logo { width: 68%; }

  .home-about { flex-direction: column; }
  .home-about .about-photo { width: 100%; flex: 0 0 auto; }
  .home-about .about-photo > img.photo { height: auto; aspect-ratio: 4 / 3; }
  .home-about .sticker { width: 55%; left: 6%; top: 22%; }
  .home-about .about-text { padding: 48px 24px 8px; }
  .home-about .about-text .inner { max-width: 640px; }
  .home-about h2 { font-size: 30px; margin-bottom: 18px; }
  .home-about p { font-size: 15px; margin-bottom: 26px; }

  .recent-project {
    background: linear-gradient(to bottom, var(--orange) 0, var(--orange) 300px, var(--white) 300px);
    padding-top: 46px;
  }
  .recent-project .section-title { margin-bottom: 30px; }
  .recent-cards { flex-direction: column; gap: 20px; padding: 0 24px; }
  .recent-card { flex: 0 0 auto; }
  .recent-card .caption { left: 20px; right: 20px; bottom: 22px; }
  .recent-card .caption h3 { font-size: 24px; margin-bottom: 8px; }
  .recent-card .caption p { font-size: 13px; }

  .what-we-do { padding: 46px 0 40px; }
  .what-we-do .section-title { margin-bottom: 30px; }
  .wwd-cards { flex-direction: column; gap: 20px; padding: 0 24px; }
  .wwd-card { flex: 0 0 auto; }
  .wwd-card .caption { left: 18px; right: 18px; bottom: 20px; }
  .wwd-card .caption h3 { font-size: 22px; margin-bottom: 6px; }
  .wwd-card .caption p { font-size: 13px; }

  /* ---- about page ---- */
  .hero-about { height: auto; min-height: 300px; padding: 60px 0; }
  .hero-about h1 { font-size: 30px; margin-bottom: 16px; }
  .hero-about p { font-size: 15px; }

  .vision-mission { padding: 44px 0 0; }
  .vm-cards { flex-direction: column; align-items: stretch; gap: 18px; padding: 0 24px; }
  .vm-card { flex: 0 0 auto; min-height: 0; padding: 36px 26px; border-radius: 12px; }
  .vm-card h2 { font-size: 26px; margin-bottom: 18px; }
  .vm-card p { font-size: 15px; }

  .our-project-band { padding: 52px 0; }
  .our-project-band .inner { flex-direction: column; gap: 36px; padding: 0 24px; }
  .collage { width: 100%; flex: 0 0 auto; gap: 4px; }
  .our-project-band .text { max-width: 640px; }
  .our-project-band h2 { font-size: 30px; margin-bottom: 18px; }
  .our-project-band p { font-size: 15px; margin-bottom: 26px; }

  .our-client { padding: 44px 0 56px; }
  .our-client .section-title { margin-bottom: 30px; }
  .client-logos { padding: 0 20px; }
  .client-logos .client-row {
    flex-wrap: wrap;
    column-gap: 22px;
    row-gap: 18px;
    margin-bottom: 18px;
  }
  .client-logos img { height: 34px; }

  /* ---- our story page ---- */
  .story-top {
    background: linear-gradient(to bottom, var(--dark) 0, var(--dark) 560px, var(--white) 560px);
    padding-top: 48px;
  }
  .story-top .page-title { font-size: 30px; margin-bottom: 16px; }
  .story-top .page-sub { font-size: 15px; margin-bottom: 46px; padding: 0 24px; }
  .story-top .portfolio-title { font-size: 30px; margin-bottom: 28px; }
  .portfolio-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 20px;
    padding: 0 24px;
  }
  .pf-card.big { grid-row: auto; aspect-ratio: 990 / 926; }
  .pf-card.small { aspect-ratio: 478 / 442; }
  .pf-card.big .caption { bottom: 40px; padding: 14px 12px; }
  .pf-card.big .caption h3 { font-size: 26px; margin-bottom: 4px; }
  .pf-card.big .caption p { font-size: 15px; }
  .pf-card.small .caption { padding: 12px 18px 14px; }
  .pf-card.small .caption h3 { font-size: 20px; margin-bottom: 4px; }
  .pf-card.small .caption p { font-size: 13px; }

  .story-projects { padding: 52px 0 56px; }
  .story-projects .section-title { margin-bottom: 30px; }
  .sp-grid { grid-template-columns: 1fr; gap: 20px; padding: 0 24px; }
  .sp-card .caption { left: 18px; right: 18px; bottom: 16px; }
  .sp-card .caption h3 { font-size: 20px; margin-bottom: 4px; }
  .sp-card .caption p { font-size: 13px; }
  .sp-card .nav-arrow { width: 26px; height: 26px; font-size: 14px; }

  /* ---- service page ---- */
  .service-block { padding: 48px 0 52px; }
  .service-main,
  .service-main.reverse {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 20px;
    padding: 0 24px;
  }
  .service-main .photo { flex: 0 0 auto; width: 100%; }
  .service-main .text { max-width: 640px; padding-top: 0; }
  .service-main h2 { font-size: 28px; margin-bottom: 18px; }
  .service-main p { font-size: 14.5px; margin-bottom: 16px; }
  .service-thumbs { flex-direction: column; gap: 16px; padding: 0 24px; }
  .service-thumbs img { flex: 0 0 auto; width: 100%; }

  /* ---- contact page ---- */
  .hero-contact { height: auto; min-height: 420px; padding: 70px 0; }
  .hero-contact h1 {
    font-size: clamp(26px, 6.5vw, 40px);
    max-width: 620px;
    margin-left: 0;
    margin-bottom: 28px;
  }
  .hero-contact .contact-link { margin-left: 0; font-size: 15px; }
  .hero-contact .inner { padding: 0 24px; }
  .hero-contact .next-arrow { font-size: 30px; right: 10px; }
}

/* Two-column grids on mid-size tablets for nicer density */
@media (min-width: 640px) and (max-width: 1099px) {
  .sp-grid { grid-template-columns: 1fr 1fr; }
  .recent-cards { flex-direction: row; flex-wrap: wrap; }
  .recent-card { flex: 1 1 calc(50% - 20px); }
  .wwd-cards { flex-direction: row; flex-wrap: wrap; }
  .wwd-card { flex: 1 1 calc(50% - 20px); }
  .service-thumbs { flex-direction: row; flex-wrap: wrap; }
  .service-thumbs img { flex: 1 1 calc(33.333% - 16px); width: auto; min-width: 180px; }
  .vm-cards { flex-direction: row; }
  .vm-card { flex: 1 1 0; }
}

/* ============================================================
   PENYESUAIAN WORDPRESS
   Hanya hal yang tidak ada di versi statis. Tidak mengubah
   satu pun ukuran atau warna rancangan.
   ============================================================ */

/* Ikon sosial tanpa tautan dirender sebagai <span> (lihat footer.php),
   jadi ia perlu perataan yang sama dengan <a>. */
.social-icons span { display: inline-flex; }

/* Bilah admin WordPress tidak boleh menutupi apa pun. */
.admin-bar .site-header { top: 0; }
