/* ==========================================================
   Jasa Pemasangan Plafon & Kerangka Baja — Pandeglang
   Mobile-first. Tanpa framework, tanpa build step.
   ========================================================== */

:root {
  --ink: #24282d;
  --ink-2: #2e3339;
  --ink-3: #1d2024;
  --steel: #3b424a;
  --steel-2: #59616b;
  --text-soft: #4e565f;
  --line: #dcdfe2;
  --mist: #f3f4f2;
  --white: #ffffff;
  --orange: #f26a1b;
  --orange-hover: #ff7d33;
  --orange-deep: #b8470a;
  --amber: #ffb81c;
  --wa: #25d366;

  --font-head: "Barlow Condensed", "Arial Narrow", "Roboto Condensed", system-ui, sans-serif;
  --font-body: "Barlow", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --radius: 6px;
  --wrap: 1160px;
  --header-h: 66px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 8px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

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

h1,
h2,
h3 {
  font-family: var(--font-head);
  font-weight: 700;
  margin: 0;
  text-wrap: balance;
}

p {
  margin: 0;
}

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

a {
  color: inherit;
}

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

.wrap {
  width: min(100% - 2.5rem, var(--wrap));
  margin-inline: auto;
}

.icon {
  width: 1.25rem;
  height: 1.25rem;
  flex: none;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-fill {
  fill: currentColor;
  stroke: none;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--amber);
  color: var(--ink);
  font-weight: 600;
  padding: 0.6rem 1rem;
  border-radius: var(--radius);
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0.75rem;
}

/* ---------- Tombol ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 48px;
  padding: 0.75rem 1.4rem;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--orange);
  color: var(--ink);
}

.btn-primary:hover {
  background: var(--orange-hover);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.38);
  color: var(--white);
}

.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

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

.btn-dark:hover {
  background: var(--steel);
}

.btn-outline {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--white);
}

.btn-lg {
  min-height: 54px;
  padding: 0.9rem 1.7rem;
  font-size: 1.05rem;
}

.btn-xl {
  min-height: 62px;
  padding: 1.05rem 1.4rem;
  font-size: clamp(1rem, 4.6vw, 1.15rem);
  text-align: center;
}

@media (min-width: 40em) {
  .btn-xl {
    padding-inline: 2.2rem;
  }
}

/* ---------- Header / navbar ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--ink);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  transition: box-shadow 0.25s;
}

.site-header.is-scrolled {
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.28);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  width: 40px;
  height: 40px;
  flex: none;
}

.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-text strong {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.01em;
}

.brand-text small {
  font-size: 0.78rem;
  color: #aeb5bc;
  line-height: 1.3;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-toggle .icon {
  width: 1.4rem;
  height: 1.4rem;
}

.menu-toggle .icon-close {
  display: none;
}

.menu-toggle[aria-expanded="true"] .icon-open {
  display: none;
}

.menu-toggle[aria-expanded="true"] .icon-close {
  display: block;
}

.site-nav {
  padding: 0.25rem 1.25rem 1.5rem;
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.js .site-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.3);
}

.js .site-nav.is-open {
  display: block;
}

.nav-list a {
  display: block;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  font-weight: 500;
  text-decoration: none;
  color: #e7eaed;
}

.nav-list a:hover,
.nav-list a.is-active {
  color: var(--orange);
}

.site-nav .btn {
  width: 100%;
  margin-top: 1.1rem;
}


@media (min-width: 62em) {
  .menu-toggle {
    display: none;
  }

  .js .site-nav,
  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 1.75rem;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
  }

  .js .site-nav.is-open {
    display: flex;
  }

  .nav-list {
    display: flex;
    gap: 1.6rem;
  }

  .nav-list a {
    position: relative;
    padding: 0.5rem 0;
    border: 0;
    font-size: 0.98rem;
  }

  .nav-list a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.1rem;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s;
  }

  .nav-list a:hover::after,
  .nav-list a.is-active::after {
    transform: scaleX(1);
  }

  .nav-list a:hover,
  .nav-list a.is-active {
    color: var(--white);
  }

  .site-nav .btn {
    width: auto;
    margin: 0;
    min-height: 44px;
    padding: 0.55rem 1.2rem;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background-color: var(--ink);
  background-image:
    radial-gradient(60% 55% at 88% 62%, rgba(242, 106, 27, 0.17), transparent 70%),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: auto, 48px 48px, 48px 48px;
  color: var(--white);
  padding-block: 2.75rem 3.25rem;
}

.hero-grid {
  display: grid;
  gap: 2.25rem;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.5rem, 9.6vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.005em;
  margin-bottom: 1.1rem;
}

.hero .lead {
  max-width: 34rem;
  font-size: 1.1rem;
  color: #c9ced4;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-block: 1.75rem 1.75rem;
}

.cta-row .btn {
  flex: 1 1 13rem;
}

.hero-info {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #d5dadf;
}

.hero-info li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.hero-info .icon {
  color: var(--orange);
}

.hero-info a {
  text-decoration: none;
}

.hero-info a:hover {
  text-decoration: underline;
}

.hero-visual {
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  padding: 0.75rem;
}

.hero-visual svg {
  width: 100%;
  height: auto;
}

/* Teks pada gambar kerja dibesarkan di layar kecil supaya tetap terbaca */
.blueprint text {
  font-size: 22px;
}

@media (min-width: 62em) {
  .blueprint text {
    font-size: 15px;
  }
}

/* Gambar kerja: animasi halus berulang agar hero terasa hidup. */
.blueprint {
  transform-origin: 50% 50%;
  animation: blueprintFloat 6s ease-in-out infinite;
}

.blueprint .draw {
  stroke-dasharray: 1;
  stroke-dashoffset: 0;
  animation: blueprintPulse 4.8s ease-in-out var(--d, 0s) infinite;
}

.blueprint .fade {
  opacity: 1;
  animation: blueprintFade 4.8s ease-in-out var(--d, 0s) infinite;
}

.blueprint-scan {
  stroke-dashoffset: 0;
  animation: blueprintScan 3.8s linear infinite;
}

@keyframes blueprintFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes blueprintPulse {
  0%, 100% { opacity: .72; }
  50% { opacity: 1; }
}

@keyframes blueprintFade {
  0%, 100% { opacity: .62; }
  50% { opacity: 1; }
}

@keyframes blueprintScan {
  from { stroke-dashoffset: 460; opacity: .1; }
  18% { opacity: .85; }
  72% { opacity: .85; }
  to { stroke-dashoffset: 0; opacity: .1; }
}

/* ---------- Section umum ---------- */
.section {
  padding-block: clamp(3.5rem, 8vw, 6rem);
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2.5rem;
}

.section-head h2,
.split-head h2 {
  font-size: clamp(2.15rem, 6.6vw, 3.4rem);
  line-height: 1.04;
  margin-bottom: 0.8rem;
}

.section-head p,
.split-head p {
  color: var(--text-soft);
}

/* ---------- Layanan ---------- */
.services {
  background: var(--white);
}

.service-grid {
  display: grid;
  gap: 1rem;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1.6rem 1.5rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.service-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 3.25rem;
  height: 4px;
  background: var(--orange);
  transition: width 0.35s;
}

.service-card:hover {
  border-color: var(--steel-2);
  box-shadow: 0 10px 24px rgba(36, 40, 45, 0.08);
}

.service-card:hover::before {
  width: calc(100% + 2px);
}

.tile {
  display: grid;
  place-items: center;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 4px;
  background: var(--ink);
  color: var(--orange);
}

.tile .icon {
  width: 1.7rem;
  height: 1.7rem;
}

.service-card h3 {
  font-size: 1.7rem;
  line-height: 1.08;
}

@media (max-width: 39.99em) {
  .service-card {
    display: grid;
    grid-template-columns: 3.4rem 1fr;
    grid-template-areas:
      "tile title"
      "text text"
      "btn  btn";
    align-items: center;
    column-gap: 1rem;
    row-gap: 0.85rem;
  }

  .service-card .tile { grid-area: tile; }
  .service-card h3 { grid-area: title; font-size: 1.6rem; }
  .service-card p { grid-area: text; }
  .service-card .btn { grid-area: btn; margin-top: 0; }
}

.service-card p {
  flex: 1;
  color: var(--text-soft);
}

.service-card .btn {
  align-self: flex-start;
  min-height: 44px;
  margin-top: 0.4rem;
}

.estimate {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
  padding: 1.5rem;
  background: var(--mist);
  border-radius: 4px;
  border-left: 4px solid var(--orange);
}

.estimate h3 {
  font-size: 1.55rem;
  line-height: 1.1;
  margin-bottom: 0.3rem;
}

.estimate p {
  color: var(--text-soft);
}

@media (min-width: 40em) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 62em) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }

  .estimate {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 2rem;
    padding: 1.75rem 2rem;
  }
}

/* ---------- Keunggulan ---------- */
.why {
  background: var(--ink);
  color: var(--white);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
}

.why-grid {
  display: grid;
  gap: 2.25rem;
}

.why .split-head p {
  color: #b4bbc2;
  max-width: 30rem;
}

.why .split-head .btn {
  margin-top: 1.5rem;
}

.why-list {
  display: grid;
}

.why-item {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.9rem;
  padding: 1.35rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.check {
  display: grid;
  place-items: center;
  width: 1.9rem;
  height: 1.9rem;
  margin-top: 0.15rem;
  border-radius: 50%;
  background: var(--orange);
  color: var(--ink);
}

.check .icon {
  width: 1.05rem;
  height: 1.05rem;
  stroke-width: 3;
}

.why-item h3 {
  font-size: 1.55rem;
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.why-item p {
  color: #b4bbc2;
}

@media (min-width: 40em) {
  .why-list {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2.5rem;
  }
}

@media (min-width: 62em) {
  .why-grid {
    grid-template-columns: 0.85fr 1.5fr;
    gap: 4rem;
    align-items: start;
  }

  .why .split-head {
    position: sticky;
    top: calc(var(--header-h) + 2rem);
  }
}

/* ---------- Galeri ---------- */
.gallery {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 44vw;
  gap: 0.6rem;
}

.shot {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  background: var(--steel);
}

.shot:first-child,
.shot:last-child {
  grid-column: span 2;
}

.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.shot:hover img {
  transform: scale(1.035);
}

.shot figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2rem 0.85rem 0.7rem;
  background: linear-gradient(transparent, rgba(20, 22, 25, 0.82));
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.3;
}

.gallery-note {
  margin-top: 1.1rem;
  font-size: 0.92rem;
  color: var(--steel-2);
}

@media (min-width: 62em) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 15rem;
    gap: 1rem;
  }

  .shot:first-child {
    grid-column: span 2;
    grid-row: span 2;
  }

  .shot:last-child {
    grid-column: auto;
  }

  .shot figcaption {
    padding: 2.5rem 1.1rem 0.9rem;
    font-size: 1rem;
  }
}

/* ---------- Proses ---------- */
.process {
  background: var(--mist);
}

.steps {
  display: grid;
  gap: 0;
  counter-reset: none;
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: 3.4rem 1fr;
  gap: 1.1rem;
  padding-bottom: 2rem;
}

.step:last-child {
  padding-bottom: 0;
}

.step::after {
  content: "";
  position: absolute;
  left: 1.7rem;
  top: 3.6rem;
  bottom: 0.2rem;
  width: 2px;
  background: repeating-linear-gradient(var(--steel-2) 0 6px, transparent 6px 12px);
}

.step:last-child::after {
  display: none;
}

.step-num {
  display: grid;
  place-items: center;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 4px;
  background: var(--ink);
  color: var(--orange);
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
}

.step h3 {
  font-size: 1.65rem;
  line-height: 1.1;
  margin: 0.3rem 0 0.3rem;
}

.step p {
  color: var(--text-soft);
}

@media (min-width: 62em) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }

  .step {
    display: block;
    padding-bottom: 0;
  }

  .step::after,
  .step:last-child::after {
    display: block;
    left: 4.4rem;
    right: -1.4rem;
    top: 1.7rem;
    bottom: auto;
    width: auto;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--steel-2) 0 6px, transparent 6px 12px);
  }

  .step:last-child::after {
    display: none;
  }

  .step h3 {
    margin-top: 1.25rem;
  }
}

/* ---------- CTA ---------- */
.cta {
  background-color: var(--orange);
  background-image:
    linear-gradient(rgba(36, 40, 45, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 40, 45, 0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  color: var(--ink);
  text-align: center;
}

.cta h2 {
  font-size: clamp(2.3rem, 8vw, 4rem);
  line-height: 1.03;
  margin-bottom: 0.9rem;
}

.cta p {
  max-width: 34rem;
  margin: 0 auto 2rem;
  font-size: 1.15rem;
}

.cta .btn {
  width: 100%;
  max-width: 26rem;
}

/* ---------- Area layanan ---------- */
.area {
  background: var(--white);
}

.area-grid {
  display: grid;
  gap: 2rem;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-content: flex-start;
}

.area-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem 0.6rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-weight: 500;
  background: var(--mist);
}

.area-list .icon {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--orange-deep);
}

.area-list li.more {
  background: transparent;
  border-style: dashed;
  border-color: var(--steel-2);
  color: var(--text-soft);
}

.area-note {
  margin-top: 1.25rem;
  color: var(--text-soft);
}

.area-note a {
  color: var(--orange-deep);
  font-weight: 600;
}

@media (min-width: 62em) {
  .area-grid {
    grid-template-columns: 0.85fr 1.2fr;
    gap: 4rem;
    align-items: start;
  }
}

/* ---------- Kontak ---------- */
.contact {
  background: var(--mist);
}

.contact-grid {
  display: grid;
  gap: 2rem;
}

.contact-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.75rem;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-list .tile {
  flex: none;
}

.contact-list b {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--steel-2);
  line-height: 1.3;
}

.contact-list a,
.contact-list span {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.15;
  text-decoration: none;
}

.contact-list a:hover {
  color: var(--orange-deep);
}

.contact-card {
  padding: 2rem 1.6rem;
  background: var(--ink);
  color: var(--white);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  justify-content: center;
}

.contact-card h3 {
  font-size: 2rem;
  line-height: 1.05;
}

.contact-card p {
  color: #c1c7cd;
}

.contact-card .btn {
  width: 100%;
  margin-top: 0.5rem;
}

@media (min-width: 62em) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
  }

  .contact-card {
    padding: 2.5rem;
  }

  .contact-card .btn {
    width: auto;
  }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink-3);
  color: #c1c7cd;
  padding-block: 3rem 0;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.footer-brand strong {
  display: block;
  margin-bottom: 0.6rem;
  font-family: var(--font-head);
  font-size: 1.6rem;
  line-height: 1.1;
  color: var(--white);
}

.footer-brand p {
  max-width: 26rem;
}

.site-footer h2 {
  margin-bottom: 0.7rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

.site-footer address {
  font-style: normal;
}

.site-footer address p + p {
  margin-top: 0.3rem;
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--orange);
  text-decoration: underline;
}

.footer-links {
  display: grid;
  gap: 0.35rem;
}

.copyright {
  padding-block: 1.25rem calc(1.25rem + 4.5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.92rem;
  color: #9aa2ab;
}

@media (min-width: 48em) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 3rem;
  }

  .copyright {
    padding-bottom: 1.25rem;
  }
}

/* ---------- Tombol WhatsApp melayang ---------- */
.wa-float {
  position: fixed;
  right: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  height: 3.6rem;
  min-width: 3.6rem;
  justify-content: center;
  border-radius: 999px;
  background: var(--wa);
  color: #0b3d1c;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.32);
  transition: transform 0.2s, background-color 0.2s;
}

.wa-float:hover {
  transform: translateY(-2px);
  background: #3ee07f;
}

.wa-float .icon {
  width: 1.9rem;
  height: 1.9rem;
}

.wa-float span {
  display: none;
}

@media (min-width: 62em) {
  .wa-float {
    right: 1.75rem;
    bottom: 1.75rem;
    padding-inline: 1.3rem 1.5rem;
  }

  .wa-float .icon {
    width: 1.6rem;
    height: 1.6rem;
  }

  .wa-float span {
    display: inline;
  }
}

/* ---------- Preferensi pengguna ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-delay: 0s !important;
    transition-duration: 0.001ms !important;
  }
}

/* ---------- Portofolio filter ---------- */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin: 0 0 1.5rem;
}

.filter-btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 44px;
  border: 1px solid #d9dde1;
  background: var(--white);
  color: var(--steel);
  padding: .65rem 1rem;
  border-radius: 999px;
  font: inherit;
  font-weight: 600;
  letter-spacing: .01em;
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(20,22,25,.04);
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.filter-btn small {
  display: inline-grid;
  place-items: center;
  min-width: 23px;
  height: 23px;
  padding: 0 .35rem;
  border-radius: 999px;
  background: #eef0f2;
  color: var(--steel-2);
  font-size: .72rem;
  font-weight: 700;
}

.filter-btn:hover {
  transform: translateY(-1px);
  border-color: var(--orange);
  box-shadow: 0 7px 18px rgba(20,22,25,.08);
}

.filter-btn.is-active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
  box-shadow: 0 8px 20px rgba(20,22,25,.14);
}

.filter-btn.is-active small {
  background: var(--orange);
  color: var(--white);
}

.gallery-item.is-hidden { display: none; }

/* ---------- Proses pemasangan ---------- */
.work-process { background: var(--white); }

.process-gallery {
  display: grid;
  gap: 1rem;
}

.process-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mist);
  box-shadow: 0 8px 24px rgba(20,22,25,.06);
}

.process-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.process-card:nth-child(2) img {
  object-fit: contain;
  background: #eef0f2;
}

.process-card figcaption {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  padding: 1.1rem 1.15rem 1.2rem;
}

.process-card strong { font-size: 1.12rem; line-height: 1.25; }
.process-card span { color: var(--text-soft); font-size: .94rem; line-height: 1.55; }

/* ---------- Testimoni ---------- */
.testimonials {
  background: linear-gradient(180deg, #f4f5f3 0%, #ecefed 100%);
}

.testimonial-grid {
  display: grid;
  gap: 1.25rem;
}

.testimonial-card {
  position: relative;
  padding: 1.5rem;
  border: 1px solid #dfe2e4;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(20,22,25,.07);
  transition: transform .2s ease, box-shadow .2s ease;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(20,22,25,.1);
}

.testimonial-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .85rem;
}

.quote-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff1e9;
  color: var(--orange);
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1;
}

.stars {
  color: var(--orange);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.testimonial-card blockquote {
  margin: 0;
  color: var(--ink-2);
  font-size: 1.02rem;
  line-height: 1.7;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid #eceeef;
}

.avatar {
  display: grid;
  place-items: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
}

.testimonial-person div {
  display: grid;
  gap: .12rem;
}

.testimonial-person strong { font-size: .92rem; }
.testimonial-person span { color: var(--text-soft); font-size: .78rem; }

.testimonial-note {
  max-width: 760px;
  margin: 1.25rem auto 0;
  padding: .85rem 1rem;
  border-left: 3px solid var(--orange);
  background: rgba(255,255,255,.7);
  color: var(--steel-2);
  font-size: .84rem;
  line-height: 1.5;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(10,12,15,.9);
}

.lightbox[hidden] { display: none; }

.lightbox img {
  max-width: min(1200px, 94vw);
  max-height: 86vh;
  object-fit: contain;
  border-radius: 6px;
}

.lightbox-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  background: rgba(0,0,0,.35);
  color: #fff;
  font-size: 1.7rem;
  cursor: pointer;
}

@media (min-width: 48em) {
  .process-gallery,
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ==========================================================
   FINAL PUBLIC POLISH — memastikan seluruh section konsisten
   ========================================================== */
.section { padding: clamp(4.5rem, 7vw, 6.5rem) 0; }
.wrap { width: min(1160px, calc(100% - 2rem)); margin-inline: auto; }

.section-head { max-width: 760px; margin: 0 0 2.25rem; }
.section-head h2, .split-head h2 { font-size: clamp(2.2rem, 5vw, 3.5rem); line-height: 1.02; letter-spacing: -.02em; }
.section-head p, .split-head p { margin-top: .85rem; font-size: 1.03rem; line-height: 1.7; color: var(--text-soft); }

.services { background: #f7f8f8; }
.service-grid { display:grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap:1.25rem; }
.service-card { min-height:100%; padding:1.7rem; border:1px solid #e1e4e6; border-radius:14px; background:#fff; box-shadow:0 10px 30px rgba(20,22,25,.06); }
.service-card::before { height:4px; width:3.5rem; border-radius:0 4px 4px 0; }
.service-card h3 { font-size:1.7rem; }
.service-card p { line-height:1.65; }
.tile { border-radius:12px; }

.why { background: var(--ink); }
.why-grid { display:grid; grid-template-columns:minmax(260px,.8fr) minmax(0,1.4fr); gap:4rem; align-items:start; }
.why-list { grid-template-columns:repeat(2,minmax(0,1fr)); column-gap:2rem; }
.why-item { padding:1.25rem 0; }
.why-item h3 { font-size:1.35rem; }

.gallery { background:#fff; }
.gallery-filters { display:flex; flex-wrap:wrap; gap:.65rem; margin:0 0 1.5rem; }
.filter-btn { appearance:none; border:1px solid #d7dce0 !important; background:#fff !important; color:#343a40 !important; display:inline-flex !important; align-items:center; gap:.55rem; min-height:44px; padding:.55rem .9rem; border-radius:999px !important; font:600 .92rem var(--font-body); cursor:pointer; box-shadow:0 4px 14px rgba(20,22,25,.05); }
.filter-btn small { display:inline-grid !important; place-items:center; min-width:24px; height:24px; padding:0 .35rem; border-radius:999px; background:#eef1f3; color:#5b636c; font-size:.72rem; }
.filter-btn.is-active { background:var(--ink) !important; color:#fff !important; border-color:var(--ink) !important; }
.filter-btn.is-active small { background:var(--orange); color:#fff; }
.gallery-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); grid-auto-rows:220px; gap:1rem; }
.shot { min-height:0; border-radius:12px; box-shadow:0 8px 24px rgba(20,22,25,.08); }
.shot:first-child { grid-column:span 2; grid-row:span 2; }
.shot:last-child { grid-column:auto; }
.shot img { object-fit:cover; }

.process { background:#f4f5f3; }
.steps { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:1rem; }
.step { display:block; padding:1.5rem; border:1px solid #dde1e4; border-radius:14px; background:#fff; box-shadow:0 8px 24px rgba(20,22,25,.05); }
.step::after { display:none !important; }
.step-num { width:3rem; height:3rem; border-radius:10px; }
.step h3 { margin-top:1.15rem; }

.work-process { background:#fff; }
.process-gallery { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:1.25rem; }
.process-card { border-radius:14px; background:#fff; box-shadow:0 10px 28px rgba(20,22,25,.08); }
.process-card img { height:260px; aspect-ratio:auto; object-fit:cover; }
.process-card:nth-child(2) img { object-fit:contain; background:#eef0f2; }
.process-card figcaption { min-height:125px; padding:1.2rem 1.25rem 1.35rem; }
.process-card strong { font-size:1.12rem; }

.testimonials { background:linear-gradient(180deg,#f5f6f5 0%,#ecefed 100%); }
.testimonial-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:1.25rem; }
.testimonial-card { height:100%; padding:1.5rem; border-radius:14px; background:#fff; border:1px solid #dfe3e5; box-shadow:0 10px 28px rgba(20,22,25,.07); }
.testimonial-top { min-height:42px; }
.testimonial-card blockquote { font-size:1rem; }

.cta { border-top:1px solid rgba(36,40,45,.08); border-bottom:1px solid rgba(36,40,45,.08); }
.cta .btn { border-radius:10px; }
.area { background:#fff; }
.area-grid { grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr); align-items:center; }
.area-list { gap:.75rem; }
.area-list li { border-radius:999px; background:#f4f5f3; }
.contact { background:#f4f5f3; }
.contact-grid { grid-template-columns:1fr 1fr; gap:3rem; align-items:stretch; }
.contact-card { border-radius:14px; padding:2.2rem; box-shadow:0 12px 30px rgba(20,22,25,.12); }
.site-footer { border-top:1px solid rgba(255,255,255,.06); }

@media (max-width: 61.99em) {
  .service-grid,.process-gallery,.testimonial-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .why-grid,.area-grid,.contact-grid { grid-template-columns:1fr; }
  .steps { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width: 47.99em) {
  .wrap { width:min(100% - 1.25rem, 1160px); }
  .service-grid,.process-gallery,.testimonial-grid,.steps,.why-list,.gallery-grid { grid-template-columns:1fr; }
  .gallery-grid { grid-auto-rows:auto; }
  .shot:first-child,.shot:last-child { grid-column:auto; grid-row:auto; }
  .shot { aspect-ratio:4/3; }
  .process-card img { height:auto; aspect-ratio:4/3; }
  .process-card:nth-child(2) img { aspect-ratio:4/3; }
  .section { padding:3.75rem 0; }
}
