@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/montserrat-400.woff2") format("woff2");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/montserrat-700.woff2") format("woff2");
}

:root {
  --bg: #f7fffe;
  --bg-cool: #e7f6f4;
  --bg-dark: #1a3331;
  --bg-white: #ffffff;
  --hero-a: #93d9d4;
  --hero-b: #5fbab4;
  --hero-c: #2a9b94;
  --text: #1a3331;
  --text-muted: #5a7471;
  --accent: #2a9b94;
  --accent-soft: #93d9d4;
  --line: rgba(26, 51, 49, 0.12);
  --paper: #f7fffe;
  --paper-2: #5fbab4;
  --ink: #1a3331;
  --clay: #2a9b94;
  --radius-sm: 0px;
  --radius-md: 0px;
}

html { scroll-behavior: smooth; }

::selection {
  background: var(--hero-b);
  color: #fff;
}

body {
  font-family: "Montserrat", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.font-display,
.hero__title,
.work__name,
.services__title,
.services__item-title,
.proof__title,
.quotes__quote,
.konsultasi__title,
.faq__title,
.work__note {
  font-family: "Montserrat", sans-serif !important;
  font-weight: 400;
}

a, button, summary { cursor: pointer; }

.header__logo img {
  width: 206px;
  height: auto;
  display: block;
}

.header__nav a {
  color: #fff;
  transition: opacity 0.4s;
}

.hero__screen img {
  display: block;
  width: 100%;
  height: 42vh;
  min-height: 220px;
  object-fit: cover;
  object-position: center top;
}

#hero, #work, #note, #services, #proof, #quotes, #faq, #konsultasi {
  scroll-margin-top: 1.5rem;
}

.folio {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero {
  background: linear-gradient(165deg, var(--hero-a) 0%, var(--hero-b) 48%, var(--hero-c) 100%);
  color: #fff;
}

.hero__title {
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
}

.work__shot,
.quotes__film-link {
  overflow: hidden;
  border-radius: 0;
  background: #eef6f5;
}

.work__shot img,
.quotes__poster {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.work__shot--a img { object-position: center 40%; }
.work__shot--b img { object-position: center 30%; }

.work__shot:hover img,
.quotes__film-link:hover .quotes__poster {
  transform: scale(1.02);
}

.btn {
  display: inline-flex;
  align-items: center;
  height: 52px;
  padding: 0 28px;
  border-radius: 0;
  background: #1a3331;
  color: #f7fffe;
  font-size: 14px;
  font-weight: 400;
}
.btn:hover { opacity: 0.6; }

.hero .btn {
  background: #fff;
  color: #1a3331;
}

details.faq__item summary { list-style: none; }
details.faq__item summary::-webkit-details-marker { display: none; }
.faq__q { display: flex; justify-content: space-between; gap: 1rem; align-items: baseline; }
.faq__q::after { content: "+"; color: var(--accent); }
details.faq__item[open] .faq__q::after { content: "–"; }
