/* Nelson furniture template base, adapted for Bentang Ekspor. */
:root {
  --b-paper: #f7f7f5;
  --b-ink: #161616;
  --b-muted: #6c6c66;
  --b-line: #e6e6e1;
  --b-green: #203d31;
  --b-green-deep: #122b22;
  --b-amber: #b36b32;
  --b-cream: #eee9dd;
  --b-max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--b-paper);
  color: var(--b-ink);
  font-family: "Montserrat", "DM Sans", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body::selection { background: #d9b89c; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--b-amber); outline-offset: 4px; }

.site-wrap { width: min(calc(100% - 44px), var(--b-max)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(247, 247, 245, .92);
  border-bottom: 1px solid rgba(22, 22, 22, .08);
  backdrop-filter: blur(16px);
}
.site-nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 700; letter-spacing: -.03em; }
.brand-mark { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; color: var(--b-paper); background: var(--b-green); font-family: Georgia, serif; font-size: 17px; }
.brand small { display: block; color: var(--b-muted); font-size: 9px; letter-spacing: .08em; line-height: 1.2; text-transform: uppercase; }
.site-links { display: flex; align-items: center; gap: 25px; color: var(--b-muted); font-size: 12px; font-weight: 600; letter-spacing: .03em; text-transform: uppercase; }
.site-links a:hover { color: var(--b-green); }
.site-cta { display: inline-flex; align-items: center; gap: 8px; color: var(--b-green); font-size: 12px; font-weight: 700; text-transform: uppercase; }
.site-cta::after { content: "↗"; font-size: 16px; }

.hero-template { position: relative; min-height: 655px; display: grid; align-items: center; overflow: hidden; background: #626257; }
.hero-template::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(12, 24, 18, .82) 0%, rgba(12, 24, 18, .48) 44%, rgba(12, 24, 18, .12) 100%); z-index: 1; }
.hero-template::after { content: "illustrative furniture imagery"; position: absolute; right: 30px; bottom: 22px; z-index: 2; color: rgba(255,255,255,.78); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-content-template { position: relative; z-index: 2; max-width: 660px; padding: 92px 0 110px; color: white; }
.kicker { display: inline-flex; align-items: center; gap: 10px; color: #e7c3a0; font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.kicker::before { content: ""; width: 30px; height: 1px; background: currentColor; }
.hero-content-template h1 { max-width: 620px; margin: 24px 0 18px; color: white; font-family: Georgia, "Times New Roman", serif; font-size: clamp(48px, 7vw, 86px); font-weight: 400; letter-spacing: -.055em; line-height: .98; }
.hero-content-template h1 em { color: #e7c3a0; font-style: normal; }
.hero-content-template p { max-width: 530px; margin: 0; color: rgba(255,255,255,.82); font-size: 19px; line-height: 1.5; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button-template { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 0 21px; border: 1px solid transparent; border-radius: 2px; font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; transition: transform .16s ease, background .16s ease, border-color .16s ease; }
.button-template:hover { transform: translateY(-2px); }
.button-template.primary { color: var(--b-green-deep); background: #f4eee4; }
.button-template.primary:hover { background: white; }
.button-template.outline { color: white; border-color: rgba(255,255,255,.65); }
.button-template.outline:hover { border-color: white; background: rgba(255,255,255,.12); }

.metric-strip { border-bottom: 1px solid var(--b-line); background: var(--b-paper); }
.metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.metric { padding: 24px 22px; border-right: 1px solid var(--b-line); }
.metric:first-child { padding-left: 0; }
.metric:last-child { border-right: 0; }
.metric-label { display: block; margin-bottom: 3px; color: var(--b-amber); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.metric strong { display: block; font-family: Georgia, serif; font-size: 24px; font-weight: 400; letter-spacing: -.04em; }
.metric p { margin: 4px 0 0; color: var(--b-muted); font-size: 12px; line-height: 1.4; }

.template-section { padding: 112px 0; }
.template-section.cream { background: var(--b-cream); }
.template-section.green { color: white; background: var(--b-green); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 44px; margin-bottom: 42px; }
.section-heading > div { max-width: 670px; }
.section-heading > p { max-width: 365px; margin: 0 0 4px; color: var(--b-muted); font-size: 15px; }
.green .section-heading > p { color: rgba(255,255,255,.7); }
.section-kicker { display: block; margin-bottom: 12px; color: var(--b-amber); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.green .section-kicker { color: #e5c29d; }
.section-heading h2 { margin: 0; font-family: Georgia, serif; font-size: clamp(38px, 5vw, 62px); font-weight: 400; letter-spacing: -.055em; line-height: 1.03; }

.journey-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--b-line); }
.journey { min-height: 230px; padding: 22px 24px 20px 0; border-right: 1px solid var(--b-line); }
.journey + .journey { padding-left: 24px; }
.journey:last-child { border-right: 0; }
.green .journey { border-color: rgba(255,255,255,.2); }
.journey-number { color: var(--b-amber); font-size: 11px; font-weight: 700; letter-spacing: .1em; }
.green .journey-number { color: #e5c29d; }
.journey h3 { margin: 58px 0 8px; font-size: 21px; font-weight: 500; letter-spacing: -.03em; }
.journey p { margin: 0; color: var(--b-muted); font-size: 14px; line-height: 1.55; }
.green .journey p { color: rgba(255,255,255,.68); }
.journey-arrow { display: block; margin-top: 23px; color: var(--b-amber); font-size: 17px; }
.green .journey-arrow { color: #e5c29d; }

.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; }
.story-image { min-height: 480px; overflow: hidden; }
.story-image img { width: 100%; height: 100%; object-fit: cover; }
.story-copy { display: flex; flex-direction: column; justify-content: center; padding: 58px; background: white; }
.story-copy h2 { margin: 13px 0 17px; font-family: Georgia, serif; font-size: clamp(36px, 4vw, 56px); font-weight: 400; letter-spacing: -.055em; line-height: 1.03; }
.story-copy p { max-width: 430px; color: var(--b-muted); font-size: 16px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; color: var(--b-green); font-size: 12px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.text-link:hover { color: var(--b-amber); }

.collection-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.collection-card { background: white; border: 1px solid var(--b-line); }
.collection-image { position: relative; height: 290px; overflow: hidden; background: var(--b-cream); }
.collection-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.collection-card:hover .collection-image img { transform: scale(1.035); }
.collection-badge { position: absolute; top: 14px; left: 14px; padding: 5px 8px; color: var(--b-green); background: rgba(247,247,245,.9); font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.collection-copy { padding: 20px; }
.collection-copy .code { color: var(--b-amber); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.collection-copy h3 { margin: 8px 0 11px; font-family: Georgia, serif; font-size: 27px; font-weight: 400; letter-spacing: -.04em; line-height: 1; }
.collection-copy p { margin: 0 0 15px; color: var(--b-muted); font-size: 13px; line-height: 1.55; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tags span { padding: 4px 7px; border: 1px solid var(--b-line); color: var(--b-muted); font-size: 9px; letter-spacing: .04em; text-transform: uppercase; }

.checklist-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: start; }
.checklist { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--b-line); }
.checklist li { display: grid; grid-template-columns: 36px 1fr; gap: 14px; padding: 19px 0; border-bottom: 1px solid var(--b-line); }
.check { width: 26px; height: 26px; display: grid; place-items: center; border: 1px solid var(--b-green); border-radius: 50%; color: var(--b-green); font-size: 12px; }
.checklist strong { display: block; margin-bottom: 3px; font-size: 15px; font-weight: 600; }
.checklist span { color: var(--b-muted); font-size: 13px; line-height: 1.45; }
.check-note { padding: 28px; border-left: 3px solid var(--b-amber); background: var(--b-cream); }
.check-note p { margin: 0; color: var(--b-muted); font-family: Georgia, serif; font-size: 23px; line-height: 1.25; }
.check-note small { display: block; margin-top: 20px; color: var(--b-muted); font-family: "Montserrat", sans-serif; font-size: 11px; line-height: 1.5; }

.offer-grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: 70px; align-items: start; }
.offer-copy h2 { max-width: 660px; color: white; margin: 13px 0 18px; font-family: Georgia, serif; font-size: clamp(39px, 5vw, 63px); font-weight: 400; letter-spacing: -.06em; line-height: 1.02; }
.offer-copy > p { max-width: 570px; color: rgba(255,255,255,.7); font-size: 17px; }
.scope-list { margin: 32px 0 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.2); }
.scope-list li { display: flex; justify-content: space-between; gap: 20px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.84); font-size: 13px; }
.scope-list li span { color: #e5c29d; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.price-card { padding: 32px; color: var(--b-ink); background: var(--b-paper); }
.price-card .section-kicker { margin-bottom: 0; }
.price { margin: 18px 0 6px; font-family: Georgia, serif; font-size: clamp(42px, 5vw, 64px); letter-spacing: -.06em; line-height: 1; }
.price-note { margin: 0 0 25px; color: var(--b-muted); font-size: 12px; line-height: 1.55; }
.button-dark { min-height: 48px; display: inline-flex; align-items: center; gap: 9px; padding: 0 20px; color: white; background: var(--b-green); font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.button-dark:hover { background: var(--b-green-deep); }
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 26px; }
.fit { padding: 14px; border: 1px solid var(--b-line); }
.fit h3 { margin: 0 0 5px; font-size: 14px; font-weight: 600; }
.fit p { margin: 0; color: var(--b-muted); font-size: 11px; line-height: 1.45; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.process-card { min-height: 205px; padding: 20px; border: 1px solid var(--b-line); background: white; }
.process-card .code { color: var(--b-amber); font-size: 10px; font-weight: 700; letter-spacing: .1em; }
.process-card h3 { margin: 53px 0 8px; font-family: Georgia, serif; font-size: 25px; font-weight: 400; letter-spacing: -.04em; line-height: 1; }
.process-card p { margin: 0; color: var(--b-muted); font-size: 13px; line-height: 1.5; }

.final-band { padding: 100px 0; color: white; background: var(--b-amber); }
.final-band-grid { display: flex; align-items: end; justify-content: space-between; gap: 50px; }
.final-band h2 { max-width: 700px; margin: 13px 0 0; font-family: Georgia, serif; font-size: clamp(40px, 5vw, 68px); font-weight: 400; letter-spacing: -.06em; line-height: 1; }
.final-band p { max-width: 330px; margin: 0 0 22px; color: rgba(255,255,255,.82); font-size: 14px; }
.final-band .section-kicker { color: white; }
.final-band .button-template { color: var(--b-green); background: white; }

.site-footer { padding: 34px 0; color: var(--b-muted); font-size: 12px; }
.footer-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-row p { margin: 0; }
.footer-links { display: flex; gap: 18px; }
.footer-links a:hover { color: var(--b-green); }
.template-note { margin-top: 16px; color: var(--b-muted); font-size: 10px; }

@media (max-width: 900px) {
  .site-links { display: none; }
  .hero-content-template { padding: 78px 0 88px; }
  .metric-grid { grid-template-columns: 1fr 1fr; }
  .metric, .metric:first-child { padding: 20px 16px; border-bottom: 1px solid var(--b-line); }
  .metric:nth-child(2) { border-right: 0; }
  .metric:nth-child(3), .metric:nth-child(4) { border-bottom: 0; }
  .metric:nth-child(4) { border-right: 0; }
  .journey-grid, .process-grid { grid-template-columns: 1fr 1fr; }
  .journey { min-height: 205px; }
  .journey:nth-child(2) { border-right: 0; }
  .journey:nth-child(n+3) { border-top: 1px solid var(--b-line); }
  .green .journey:nth-child(n+3) { border-color: rgba(255,255,255,.2); }
  .story-grid, .checklist-grid, .offer-grid { grid-template-columns: 1fr; gap: 0; }
  .story-image { min-height: 390px; }
  .story-copy { padding: 48px; }
  .checklist-grid, .offer-grid { gap: 46px; }
  .final-band-grid { display: block; }
  .final-band p { margin-top: 24px; }
}
@media (max-width: 620px) {
  .site-wrap { width: min(calc(100% - 28px), var(--b-max)); }
  .site-nav { min-height: 68px; }
  .site-cta { font-size: 10px; }
  .hero-template { min-height: 620px; }
  .hero-content-template h1 { font-size: clamp(46px, 14vw, 68px); }
  .hero-content-template p { font-size: 17px; }
  .hero-template::after { right: 14px; font-size: 8px; }
  .template-section { padding: 82px 0; }
  .section-heading { display: block; margin-bottom: 30px; }
  .section-heading > p { margin-top: 16px; }
  .journey-grid, .collection-grid, .process-grid { grid-template-columns: 1fr; }
  .journey, .journey + .journey { min-height: auto; padding: 21px 0; border-right: 0; border-bottom: 1px solid var(--b-line); }
  .journey:nth-child(n+3) { border-top: 0; }
  .green .journey { border-color: rgba(255,255,255,.2); }
  .journey:last-child { border-bottom: 0; }
  .journey h3 { margin-top: 28px; }
  .story-image { min-height: 270px; }
  .story-copy { padding: 34px 24px; }
  .collection-image { height: 250px; }
  .fit-grid { grid-template-columns: 1fr; }
  .price-card { padding: 23px; }
  .footer-row { display: block; }
  .footer-links { margin-top: 12px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
