/* Gaya utama website statis CV. Kreasi Taman. Warna dibuat natural dan ringan. */
:root {
  --green-900: #183524;
  --green-700: #28583a;
  --green-500: #6f8e46;
  --brown: #8b6042;
  --clay: #b3744d;
  --cream: #f7f4ea;
  --paper: #fffdf7;
  --line: #d9dfd0;
  --ink: #18231c;
  --muted: #657163;
  --white: #ffffff;
  --shadow: 0 18px 52px rgba(24, 53, 36, .13);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

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

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

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 5vw, 74px);
  background: rgba(255, 253, 247, .9);
  border-bottom: 1px solid rgba(217, 223, 208, .8);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand strong,
.brand small {
  display: block;
}

.brand small,
.eyebrow,
.product-category,
.site-footer p {
  color: var(--muted);
  font-size: .84rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  padding: 9px 13px;
  color: #314137;
  font-weight: 750;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: #eef3e8;
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  min-height: calc(100vh - 76px);
  padding: clamp(44px, 7vw, 96px) clamp(18px, 5vw, 74px);
  background: linear-gradient(135deg, #f8f6ec 0%, #edf4e8 55%, #f3eadc 100%);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 10px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(2.35rem, 5.8vw, 5.6rem);
  line-height: .98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.75rem, 3.4vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.28rem;
}

.lead,
.section-heading p,
.section-text p,
.quick-services p,
.service-block p,
.steps span,
.product-body p,
.contact-info p {
  color: var(--muted);
  line-height: 1.7;
}

.lead {
  max-width: 660px;
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  cursor: pointer;
  font-weight: 850;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

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

.btn.primary,
.btn.small {
  background: var(--green-700);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(40, 88, 58, .22);
}

.btn.outline {
  background: rgba(255, 255, 255, .65);
  border-color: var(--line);
  color: var(--green-900);
}

.btn.large {
  min-height: 56px;
}

.btn.small {
  min-height: 42px;
  margin-top: 14px;
  padding: 10px 13px;
  font-size: .92rem;
}

.hero-image {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quick-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0 clamp(18px, 5vw, 74px) clamp(56px, 7vw, 92px);
  margin-top: -30px;
}

.quick-services article,
.product-card,
.service-block,
.contact-info,
.map-wrap {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.quick-services article {
  padding: 24px;
}

.quick-services span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  background: #edf3e7;
  color: var(--green-700);
  font-weight: 900;
}

.section {
  padding: clamp(56px, 8vw, 108px) clamp(18px, 5vw, 74px);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(320px, .75fr);
  gap: clamp(26px, 6vw, 80px);
  align-items: center;
}

.section-heading {
  max-width: 880px;
  margin-bottom: 30px;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.gallery img {
  width: 90%;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.products,
.contact {
  background: #eef3e8;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.filter {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 14px;
  background: var(--white);
  color: var(--green-900);
  cursor: pointer;
  font-weight: 850;
}

.filter.active {
  background: var(--green-700);
  color: var(--white);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.product-card {
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 72px rgba(24, 53, 36, .18);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1.2;
  object-fit: cover;
  background: #e5e5e5;
}

.product-body {
  padding: 20px;
}

.product-category {
  margin-bottom: 8px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-body strong {
  display: block;
  color: var(--brown);
}

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

.service-block {
  display: grid;
  grid-template-columns: minmax(220px, .45fr) 1fr;
  gap: 24px;
  padding: clamp(22px, 4vw, 34px);
  margin-bottom: 16px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.steps li {
  min-height: 136px;
  padding: 18px;
  border-radius: 8px;
  background: #f8f6ee;
}

.steps strong,
.steps span {
  display: block;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(320px, .55fr);
  gap: clamp(24px, 6vw, 76px);
  align-items: start;
}

.contact-info {
  padding: 22px;
}

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

.map-wrap {
  overflow: hidden;
  min-height: 420px;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
  padding: 30px clamp(18px, 5vw, 74px);
  background: var(--green-900);
  color: var(--white);
}

.site-footer p {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, .76);
}

.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 999px;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 16px 36px rgba(20, 92, 51, .28);
  font-weight: 950;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .hero,
  .two-column,
  .contact,
  .service-block {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 820px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .quick-services,
  .steps,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .quick-services {
    margin-top: 0;
    padding-top: 18px;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: auto;
    padding-top: 38px;
  }

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

  .btn {
    width: 100%;
  }

  .wa-float {
    width: 54px;
    height: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
