/* ============================================================
   VOYER DESIGN — konsultasi.voyerdesign.com
   Design tokens matched to voyerdesign.com brand:
   warm white/cream ground, brass-orange accent, near-black footer.
   Serif caps (Cormorant Garamond) for hero/CTA display moments,
   Poppins bold caps for section headers, Inter for body/UI.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600&family=Poppins:wght@600;700&family=Inter:wght@400;500;600&display=swap');

:root {
  --bg: #ffffff;
  --bg-soft: #f7f4ef;
  --surface: #f7f4ef;
  --surface-raised: #f1ebe1;
  --ink: #1c1a17;
  --ink-muted: #6e6459;
  --ink-faint: #9c9186;
  --brass: #b0762a;
  --brass-bright: #c68a3d;
  --brass-dim: #8f5f1e;
  --hairline: rgba(28, 26, 23, 0.12);
  --hairline-strong: rgba(28, 26, 23, 0.24);
  --wa: #25d366;

  --footer-bg: #181818;
  --footer-ink: #f5f3ef;
  --footer-muted: #ababab;
  --footer-hair: rgba(255, 255, 255, 0.12);

  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --display: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --max: 1180px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 24px;
  --shadow: 0 1px 2px rgba(28, 26, 23, 0.04), 0 12px 32px rgba(28, 26, 23, 0.07);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3 {
  line-height: 1.2;
  margin: 0;
  color: var(--ink);
}

h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 58px);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 36px);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--brass);
  position: relative;
  padding-bottom: 20px;
}
h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 2px;
  background: var(--brass);
}
.cta-band h2::after,
.section-head.centered h2::after {
  left: 50%;
  transform: translateX(-50%);
}

h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  text-transform: none;
  letter-spacing: 0.01em;
  color: var(--ink);
}

p { margin: 0; }

.eyebrow {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-faint);
  margin-bottom: 12px;
  display: block;
}

.lead {
  font-size: 17px;
  color: var(--ink-muted);
  max-width: 46ch;
  line-height: 1.75;
}

.hairline { border: none; border-top: 1px solid var(--hairline); margin: 0; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
  max-width: 100%;
}

@media (max-width: 480px) {
  .btn { white-space: normal; text-align: center; }
}

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

.btn-brass {
  background: var(--brass);
  color: #fff;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 16px 30px;
}
.btn-brass:hover { background: var(--brass-bright); }

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--hairline);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.brand span {
  font-family: var(--display);
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
  letter-spacing: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.main-nav a {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.main-nav a:hover { color: var(--brass); }

.main-nav a.active {
  color: var(--brass);
  border-color: var(--brass);
}

.header-cta { display: flex; align-items: center; gap: 20px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--ink);
  font-size: 26px;
  cursor: pointer;
  line-height: 1;
}

@media (max-width: 860px) {
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .header-cta { display: none; }
}

/* ---------- Hero ---------- */

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 34px;
  flex-wrap: wrap;
}

/* ---------- Full-bleed image hero + trust band ---------- */

.hero-full {
  position: relative;
  height: 620px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-full-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-full-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 9, 7, 0.45) 0%, rgba(10, 9, 7, 0.55) 55%, rgba(15, 13, 11, 0.92) 100%);
}

.hero-full-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 32px;
}

.hero-full-content .eyebrow { color: var(--brass-bright); }
.hero-full-content h1 { color: #ffffff; margin-bottom: 0; }

@media (max-width: 760px) {
  .hero-full { height: 460px; }
}

.trust-band {
  background: var(--footer-bg);
  padding: 72px 0 88px;
  text-align: center;
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--footer-hair);
  border-radius: 999px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--brass-bright);
  margin-bottom: 28px;
}

.trust-heading {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(26px, 3.4vw, 40px);
  color: var(--footer-ink);
  text-transform: none;
  letter-spacing: 0;
  padding-bottom: 0;
  margin: 0 auto 18px;
  max-width: 720px;
}
.trust-heading::after { content: none; }
.trust-heading span { color: var(--brass-bright); }

.trust-band .lead {
  color: var(--footer-muted);
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 880px;
  margin: 0 auto 44px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--footer-hair);
  border-radius: var(--radius);
  padding: 28px 20px;
  min-width: 0;
}

.stat-card svg {
  width: 28px;
  height: 28px;
  color: var(--brass-bright);
  margin: 0 auto 14px;
  display: block;
}

.stat-card strong {
  display: block;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--brass-bright);
  margin-bottom: 4px;
}

.stat-card span { font-size: 13px; color: var(--footer-muted); }

@media (max-width: 700px) {
  .stat-grid { grid-template-columns: 1fr; }
}

.showcase-strip {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  margin-top: 52px;
  padding-bottom: 10px;
}

.showcase-card {
  position: relative;
  flex: 0 0 220px;
  height: 280px;
  border-radius: var(--radius);
  overflow: hidden;
  scroll-snap-align: start;
}

.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.showcase-card:hover img { transform: scale(1.08); }

.showcase-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 9, 7, 0) 45%, rgba(10, 9, 7, 0.85) 100%);
}

.showcase-card span {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  z-index: 2;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
}

@media (max-width: 700px) {
  .showcase-card { flex: 0 0 170px; height: 220px; }
}

/* ---------- Section scaffolding ---------- */

section { padding: 96px 0; }
section.tight { padding: 64px 0; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 56px;
}

.section-head .lead { margin-top: 14px; }

.section-head.centered {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.section-head.centered .lead { margin-left: auto; margin-right: auto; }

@media (max-width: 720px) {
  .section-head { flex-direction: column; align-items: flex-start; }
}

.tile-link {
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid var(--brass);
  padding-bottom: 3px;
  color: var(--ink);
}

/* ---------- Why us / differentiators ---------- */

.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.diff-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

.diff-item {
  position: relative;
  padding: 26px 24px 22px;
  background: var(--surface);
  border-radius: var(--radius);
  min-width: 0;
}
.diff-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  width: 28px;
  height: 2px;
  background: var(--brass);
  border-radius: 2px;
}
.diff-item h3 { font-size: 18px; margin-bottom: 8px; }
.diff-item p { font-size: 14px; color: var(--ink-muted); }

@media (max-width: 900px) {
  .diff-grid, .diff-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .diff-grid, .diff-grid.cols-3 { grid-template-columns: 1fr; }
}

/* ---------- Deliverables (5-up small cards) ---------- */

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

@media (max-width: 1000px) {
  .deliverables-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .deliverables-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) {
  .deliverables-grid { grid-template-columns: 1fr; }
}

/* ---------- Pricing packages ---------- */

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.price-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 44px 40px;
  border: 1px solid transparent;
  min-width: 0;
}

.price-card.featured {
  border-color: var(--brass);
  box-shadow: var(--shadow);
}

.price-card .price-tag {
  font-family: var(--serif);
  font-size: clamp(26px, 6vw, 38px);
  font-weight: 500;
  color: var(--brass-bright);
  margin: 14px 0 26px;
  overflow-wrap: break-word;
}

.price-card .price-tag span {
  display: block;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-faint);
  margin-top: 6px;
}

.price-list {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-list li {
  position: relative;
  padding-left: 24px;
  font-size: 14.5px;
  color: var(--ink-muted);
}

.price-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brass);
  font-weight: 700;
}

.price-note {
  font-size: 13px;
  color: var(--ink-faint);
  margin-top: 24px;
}

@media (max-width: 800px) {
  .price-grid { grid-template-columns: 1fr; }
}

/* ---------- Checklist grid (technical drawings) ---------- */

.check-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 32px;
}

.check-grid div {
  position: relative;
  min-width: 0;
  padding-left: 24px;
  font-size: 14.5px;
  color: var(--ink-muted);
}

.check-grid div::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brass);
  font-weight: 700;
}

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

/* ---------- Video proof cards ---------- */

.video-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
}

.video-card { width: 280px; max-width: 100%; }

.video-card video {
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius);
  background: #000;
  object-fit: cover;
  display: block;
}

.video-caption {
  display: block;
  text-align: center;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.video-card.featured { width: 320px; }

.testimonial-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  max-width: 560px;
  margin: 28px auto 10px;
  text-align: center;
}

.testimonial-name {
  display: block;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-muted);
}

/* ---------- Gallery ---------- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.gallery-grid a {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
}
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-grid a:hover img { transform: scale(1.08); }

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

/* ---------- Process steps ---------- */

.process {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.process-media { position: relative; }
.process-media img { width: 100%; height: 560px; object-fit: cover; border-radius: var(--radius-lg); }

.steps { border-top: 1px solid var(--hairline); }

.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--hairline);
}

.step .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  color: var(--brass);
}

.step h3 { font-size: 17px; margin-bottom: 6px; }
.step p { font-size: 14px; color: var(--ink-muted); }

@media (max-width: 900px) {
  .process { grid-template-columns: 1fr; gap: 32px; }
  .process-media img { height: 320px; }
}

.field {
  background: var(--bg);
  border: 1px solid var(--hairline-strong);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  width: 100%;
}
.field:focus { outline: none; border-color: var(--brass); }
.field::placeholder { color: var(--ink-faint); }

.form-note { font-size: 12.5px; color: var(--ink-faint); margin-top: 4px; }

.form-success {
  display: none;
  background: rgba(63, 169, 106, 0.12);
  border: 1px solid var(--wa);
  color: var(--ink);
  padding: 16px 18px;
  font-size: 14px;
  border-radius: var(--radius-sm);
}
.form-success.visible { display: block; }

/* ---------- Consultation form ---------- */

.consult {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
}

.consult-form {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 44px;
}

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

.consult-form form { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }

.field-label { font-size: 13px; color: var(--ink-muted); margin-bottom: 6px; display: block; }

select.field { appearance: none; background: var(--bg) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="9"><path d="M1 1l6 6 6-6" stroke="%23b6905c" stroke-width="1.5" fill="none"/></svg>') no-repeat right 16px center; }

.consult-points { display: flex; flex-direction: column; gap: 20px; padding-top: 12px; }

@media (max-width: 900px) {
  .consult { grid-template-columns: 1fr; gap: 36px; }
  .consult-form { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ---------- FAQ ---------- */

.faq-list { border-top: 1px solid var(--hairline); max-width: 860px; }

.faq-item { border-bottom: 1px solid var(--hairline); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16.5px;
  font-weight: 500;
}

.faq-q .icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  position: relative;
}
.faq-q .icon::before,
.faq-q .icon::after {
  content: '';
  position: absolute;
  background: var(--brass);
  transition: transform 0.25s ease;
}
.faq-q .icon::before { width: 100%; height: 1px; top: 50%; left: 0; transform: translateY(-50%); }
.faq-q .icon::after { width: 1px; height: 100%; left: 50%; top: 0; transform: translateX(-50%); }

.faq-item.open .faq-q .icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-a-inner {
  padding: 0 0 26px;
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.75;
  max-width: 70ch;
}

/* ---------- Final CTA band ---------- */

.cta-band {
  text-align: center;
  padding: 100px 0;
  border-top: 1px solid var(--hairline);
}

.cta-band h2 { margin-bottom: 20px; }
.cta-band .lead { margin: 0 auto 36px; text-align: center; }
.cta-band .hero-actions { justify-content: center; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--footer-bg);
  padding: 56px 0 32px;
  font-size: 14px;
  color: var(--footer-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-grid h4 {
  font-family: var(--display);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--footer-ink);
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-grid ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-grid li, .footer-grid a { color: var(--footer-muted); }
.footer-grid a:hover { color: var(--brass-bright); }

.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { width: 34px; height: 34px; border-radius: 50%; }
.footer-brand span { font-family: var(--display); font-weight: 700; font-size: 19px; color: var(--footer-ink); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--footer-hair);
  flex-wrap: wrap;
  gap: 12px;
  color: var(--footer-muted);
}
.footer-bottom a:hover { color: var(--brass-bright); }

@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Mobile nav drawer ---------- */

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 70;
  display: none;
  flex-direction: column;
  padding: 28px 32px;
}
.mobile-nav.open { display: flex; }

.mobile-nav-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 48px; }
.mobile-nav a {
  font-family: var(--display);
  font-weight: 600;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 16px 0;
  border-bottom: 1px solid var(--hairline);
  color: var(--ink);
}
.mobile-nav .btn {
  margin-top: 24px;
  justify-content: center;
  border-bottom: none;
  text-transform: none;
  font-size: 15px;
  letter-spacing: normal;
}
