/* ─── VARIABLES ──────────────────────────────────────────────── */
:root {
  --bg: #090909;
  --surface: #141414;
  --border: #232323;
  --mid: #4E4E4E;
  --text: #FFFFFF;
  --text-muted: #888;
  --accent: #FFFFFF;
  --radius: 12px;
  --radius-lg: 20px;
  --gap: 24px;
  --font-display: 'Switzer', sans-serif;
  --font-body: 'Switzer', sans-serif;
  --font-mono: 'Space Grotesk', monospace;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }

/* ─── LAYOUT ─────────────────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ─── HEADER / NAV ───────────────────────────────────────────── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(9, 9, 9, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transform: translateY(0);
  transition: transform 0.28s ease;
}

header.nav--hidden {
  transform: translateY(-100%);
}

/* Body offset untuk fixed navbar */
body > main,
.main-content {
  padding-top: 84px;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  padding: 0 48px;
  gap: 32px;
}

/* Logo group on the left */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav__logo svg {
  height: 36px;
  width: auto;
}

/* Contact button — vertically centered in nav (self-align) */
.nav__contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #000;
  background: #fff;
  border: 1.5px solid #fff;
  padding: 0 28px;
  height: 40px;
  border-radius: 4px;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
  align-self: center;
}
.nav__contact:hover { background: transparent; border-color: #fff; color: #fff; }

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  padding: 80px 32px 64px;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.hero__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

/* Right column */
.hero__right {
  padding-top: 8px;
}

/* In the reference, the description text appears justified */
.hero__desc {
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 13px;
  max-width: 400px;
  line-height: 1.8;
  font-weight: 400;
  text-align: justify;
}

/* Brands section */
.hero__brands {
  margin-top: 48px;
}

.hero__brands-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 16px;
}

/* Left white border line as seen in the reference image */
.hero__brands-list {
  border-top: 1px solid var(--border);
  border-left: 2px solid var(--text);
  padding-left: 16px;
}

.hero__brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  transition: color var(--transition);
  cursor: default;
}

.hero__brand-row:hover {
  color: var(--text-muted);
}

.hero__arrow {
  font-size: 16px;
  opacity: 0.9;
}

/* ─── FILTERS ────────────────────────────────────────────────── */
.filters {
  padding: 0 32px 48px;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-btn {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 13px;
  padding: 8px 18px;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

/* ─── PROJECTS CONTAINER ─────────────────────────────────────── */
#projects {
  padding: 0 32px 120px;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* ─── LOADER ─────────────────────────────────────────────────── */
#loader {
  display: none;
  justify-content: center;
  align-items: center;
  padding: 80px;
}
.loader__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mid);
  margin: 0 4px;
  animation: pulse 1.2s ease-in-out infinite;
}
.loader__dot:nth-child(2) { animation-delay: 0.2s; }
.loader__dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes pulse {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1); }
}

/* ─── TAGS ───────────────────────────────────────────────────── */
.tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 4px;
}
.tag--muted { opacity: 0.5; }

/* ─── BENTO 1 — Featured Large ───────────────────────────────── */
.bento--1 {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--gap);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 500px;
}

.bento__hero {
  position: relative;
  overflow: hidden;
}
.bento__hero img {
  transition: transform 0.6s ease;
}
.bento--1:hover .bento__hero img { transform: scale(1.03); }

.bento__sidebar {
  padding: 40px 40px 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento__meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.bento__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.bento__desc {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  flex: 1;
}

.bento__link {
  display: inline-block;
  margin-top: 24px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--border);
  padding-bottom: 4px;
  transition: var(--transition);
  align-self: flex-start;
}
.bento__link:hover { color: var(--text); border-color: var(--text); }

.bento__thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 24px;
  height: 80px;
}
.bento__thumb {
  border-radius: 8px;
  overflow: hidden;
}

/* ─── BENTO 2 — Mosaic ───────────────────────────────────────── */
.bento--2 {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.bento__mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 300px 200px;
  gap: 3px;
}

.bento__tile { overflow: hidden; position: relative; }
.bento__tile img { transition: transform 0.5s ease; }
.bento__tile:hover img { transform: scale(1.05); }

.bento__tile--1 { grid-column: 1; grid-row: 1 / 3; }
.bento__tile--2 { grid-column: 2; grid-row: 1; }
.bento__tile--3 { grid-column: 3; grid-row: 1; }
.bento__tile--4 { grid-column: 2 / 4; grid-row: 2; }

.bento__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  border-top: 1px solid var(--border);
}

.bento__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.bento__year {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
}

.bento--2 .bento__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-top: 6px;
  letter-spacing: -0.02em;
}

.bento--2 .bento__link {
  font-size: 20px;
  margin: 0;
  padding: 0;
  border: none;
}

/* ─── GRID STANDARD ──────────────────────────────────────────── */
.grid-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.grid-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}
.grid-card:hover { transform: translateY(-4px); border-color: var(--mid); }

.grid-card__img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.grid-card__img img { transition: transform 0.5s ease; }
.grid-card:hover .grid-card__img img { transform: scale(1.05); }

.grid-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(9, 9, 9, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  opacity: 0;
  transition: var(--transition);
}
.grid-card:hover .grid-card__overlay { opacity: 1; }

.grid-card__body { padding: 20px; }
.grid-card__meta { display: flex; gap: 8px; margin-bottom: 12px; }
.grid-card__title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.grid-card__desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ─── SITE FOOTER (big wordmark style — used on index.html & project.html) ─── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 64px 40px 0;
  background: var(--bg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.site-footer__top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 56px;
  flex-wrap: wrap;
}

.site-footer__tagline {
  max-width: 320px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.45;
  letter-spacing: -0.01em;
}
.site-footer__tagline p { margin-bottom: 6px; }
.site-footer__tagline p:last-child { margin-bottom: 0; }

.site-footer__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.site-footer__row {
  display: flex;
  gap: 18px;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.site-footer__row span {
  color: var(--text-muted);
  min-width: 70px;
}
.site-footer__row a,
.site-footer__row em {
  color: var(--text);
  font-style: normal;
}
.site-footer__row a:hover {
  opacity: 1;
  text-decoration: underline;
}

.site-footer__rights {
  text-align: right;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
.site-footer__rights div:first-child { margin-bottom: 6px; }

.site-footer__wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 10.5vw, 180px);
  line-height: 0.78;
  letter-spacing: -0.03em;
  white-space: nowrap;
  text-align: left;
  color: var(--text);
  user-select: none;
  width: 100%;
  margin-top: auto;
  margin-bottom: 0;
  padding-bottom: 0.02em;
}

@media (max-width: 768px) {
  .site-footer { padding: 48px 20px 0; }
  .site-footer__top { flex-direction: column; gap: 28px; padding-bottom: 32px; }
  .site-footer__rights { text-align: left; }
  .site-footer__wordmark { font-size: clamp(40px, 13.5vw, 90px); }
}

/* ─── STATES ─────────────────────────────────────────────────── */
.empty, .error {
  color: var(--text-muted);
  text-align: center;
  padding: 80px;
  font-size: 14px;
  width: 100%;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-wrap { grid-template-columns: repeat(2, 1fr); }
  .bento--1 { grid-template-columns: 1fr; min-height: auto; }
  .bento__sidebar { padding: 32px; }
  .hero { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  nav, .hero, .filters, #projects { padding-left: 20px; padding-right: 20px; }
  .hero { padding-top: 48px; }
  .hero__title { font-size: 36px; }
  .bento__mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 160px;
  }
  .bento__tile--1 { grid-column: 1 / 3; grid-row: 1; }
  .bento__tile--2 { grid-column: 1; grid-row: 2; }
  .bento__tile--3 { grid-column: 2; grid-row: 2; }
  .bento__tile--4 { grid-column: 1 / 3; grid-row: 3; }
  .grid-wrap { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 12px; text-align: center; }
  .hero__brands-list { padding-left: 12px; }
}

@media (max-width: 480px) {
  .bento__thumbs { grid-template-columns: repeat(2, 1fr); }
}

/* ─── ANIMATIONS ─────────────────────────────────────────────── */
.bento, .grid-card {
  animation: fadeUp 0.5s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── APPEND THESE RULES TO YOUR EXISTING style.css ────────── */
/* ─── (Add below the existing content, before the last @media) */

/* ─── FEATURED TAG ───────────────────────────────────────────── */
.tag--featured {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.25);
  color: var(--text);
}

/* ─── IMAGE PLACEHOLDER (when image URL is empty) ────────────── */
.img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--surface);
  border: 1px dashed var(--border);
  min-height: 200px;
}

/* ─── PORTABLE TEXT BODY (rich content in bento1) ────────────── */
.bento__body {
  flex: 1;
  overflow: hidden;
}

/* Paragraphs */
.body__p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 12px;
}
.body__p:last-child { margin-bottom: 0; }

/* Headings */
.body__h2 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 20px 0 8px;
  color: var(--text);
}
.body__h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 16px 0 6px;
  color: var(--text);
}

/* Blockquote */
.body__quote {
  border-left: 2px solid var(--text);
  padding-left: 16px;
  margin: 16px 0;
  color: var(--text-muted);
  font-style: italic;
  font-size: 14px;
  line-height: 1.7;
}

/* Links inside body */
.body__p a,
.body__quote a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: 0.8;
  transition: opacity var(--transition);
}
.body__p a:hover { opacity: 1; }

/* Body image blocks */
.body__figure {
  margin: 20px 0;
}
.body__figure img {
  border-radius: var(--radius);
  width: 100%;
  height: auto;
  object-fit: cover;
}
.body__figure--half {
  max-width: 50%;
}
.body__figure--small {
  max-width: 30%;
}
.body__caption {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 8px;
  text-align: center;
  letter-spacing: 0.04em;
}
/* ═══════════════════════════════════════════════════════════════════
   CONTACT MODAL — popup form (no page navigation), submits to Google
   Sheet via Apps Script. See js/core/contact-modal.js
   White theme, 2 kolom: form (kiri) + testimonial panel (kanan).
   ═══════════════════════════════════════════════════════════════════ */
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.contact-modal.is-open { display: flex; }

.contact-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.contact-modal.is-open .contact-modal__overlay { opacity: 1; }

/* Panel — 2 kolom, tinggi dibatasi supaya TIDAK PERNAH butuh scrollbar */
.contact-modal__panel {
  position: relative;
  display: flex;
  width: min(860px, 94vw);
  max-height: min(480px, 88vh);
  overflow: hidden;               /* no scroll, ever */
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 40px 90px rgba(0,0,0,0.5);
  transform: translateY(18px) scale(0.97);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}
.contact-modal.is-open .contact-modal__panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.contact-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
  width: 32px;
  height: 32px;
  border: none;
  background: rgba(255,255,255,0.85);
  color: #0a0a0a;
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.contact-modal__close:hover { background: #fff; }

/* ── LEFT — form. Putih di luar, lalu ada box abu di dalam (inset-nya
   sama kayak frame foto di kanan) — bukan abu full ke pinggir. ──── */
.contact-modal__left {
  flex: 1 1 52%;
  min-width: 0;
  padding: 8px;
  overflow: hidden;
  background: #fff;
}
.contact-modal__left-inner {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  background: #ececec;
  border-radius: 12px;
  padding: 22px 28px;
  overflow: hidden;         /* content is sized to always fit — never scrolls */
}

.contact-modal__logo { display: block; margin-bottom: 10px; }

.contact-modal__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 4px;
}
.contact-modal__subtitle {
  font-size: 11.5px;
  color: #6b6b6b;
  line-height: 1.4;
  margin-bottom: 12px;
}

.contact-form { display: flex; flex-direction: column; gap: 7px; }
.contact-form__row { display: flex; gap: 10px; }
.contact-form__field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.contact-form__field label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  color: #6b6b6b;
}
.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  padding: 6px 11px;
  color: #0a0a0a;
  font-size: 13px;
  font-family: var(--font-body);
  resize: none;
  box-sizing: border-box;
}
.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: #b3b3b3;
}
.contact-form__field input:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: #0a0a0a;
}

.contact-form__submit {
  margin-top: 1px;
  background: #0a0a0a;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 9px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.contact-form__submit:hover { opacity: 0.8; }
.contact-form__submit:disabled { opacity: 0.5; cursor: not-allowed; }

.contact-form__status {
  font-size: 11px;
  text-align: center;
  min-height: 13px;
  color: #6b6b6b;
}
.contact-form__status.success { color: #1a9e56; }
.contact-form__status.error { color: #d63b3b; }

/* ── RIGHT — testimonial / visual panel (carousel) ───────────────
   Tidak ada background ungu lagi. Panel ini sekarang putih polos,
   dan "padding" putih di sini ITULAH yang jadi border/frame di
   sekeliling foto (bukan border CSS di elemen foto). ────────────── */
.contact-modal__right {
  flex: 1 1 48%;
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: 8px;
}

/* Frame — wrapper dengan padding abu di atas. Foto mengisi PENUH
   wrapper ini sebagai background (bukan kotak kecil di dalam slide).
   Tanpa outline/shadow — batasnya cukup dari padding abu saja. */
.contact-modal__frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #111; /* fallback sebelum foto termuat */
}

/* Slides track — holds N testimonial slides stacked absolutely, one active
   at a time, sliding left/right (same technique as the homepage hero). */
.contact-modal__slides {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.contact-testimonial__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px 26px 22px;
  color: #fff;
  transform: translateX(100%);
  transition: transform 0.7s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: 0;
}
.contact-testimonial__slide.is-active { transform: translateX(0); z-index: 2; }
.contact-testimonial__slide.is-prev   { transform: translateX(-100%); z-index: 1; }
.contact-testimonial__slide.is-next   { transform: translateX(100%); z-index: 1; }
/* Snap a slide into position instantly (no easing) before animating in —
   see contact-modal.js goToTestimonial. */
.contact-testimonial__slide.no-transition { transition: none !important; }

/* Foto full-bleed — sekarang JADI background si slide, mengisi penuh
   frame putih di sekelilingnya (bukan kotak 16:9 kecil lagi). */
.contact-testimonial__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.contact-modal__right-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Gradient gelap di atas foto supaya teks di bawah tetap terbaca —
   desain ini yang dipakai, foto tidak disentuh lagi. */
.contact-testimonial__slide::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top,
    rgba(0,0,0,0.78) 0%,
    rgba(0,0,0,0.42) 42%,
    rgba(0,0,0,0) 72%);
  pointer-events: none;
}

/* Text — duduk di atas gradient, di bagian bawah slide. */
.contact-testimonial__body {
  position: relative;
  z-index: 2;
}

.contact-modal__stars {
  color: #ffd84d;
  font-size: 13px;
  letter-spacing: 3px;
  margin-bottom: 10px;
}
.contact-modal__quote {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.contact-modal__author {
  margin-bottom: 0;
}
.contact-modal__author strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}
.contact-modal__author span {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

.contact-modal__arrows {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 8px;
  z-index: 5;
}
.contact-modal__arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}
.contact-modal__arrow:hover { background: rgba(255,255,255,0.22); }

/* ── RESPONSIVE — sembunyikan panel kanan di layar kecil supaya
     tidak perlu scroll horizontal / bertumpuk ──────────────────── */
@media (max-width: 720px) {
  .contact-modal__panel {
    width: min(440px, 92vw);
    max-height: 92vh;
  }
  .contact-modal__right { display: none; }
  .contact-modal__left { flex: 1 1 100%; }
  .contact-modal__left-inner { padding: 30px 26px; }
}