:root {
  --ink: #171514;
  --ink-soft: #26211d;
  --paper: #fbf8f1;
  --paper-2: #f1eadf;
  --muted: #6f675f;
  --line: rgba(23, 21, 20, 0.12);
  --gold: #f0bf47;
  --gold-light: #ffe4a3;
  --gold-deep: #8b6416;
  --green: #11845f;
  --blue: #244a73;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(23, 21, 20, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

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

button,
input,
select {
  font: inherit;
}

.shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 40;
  top: 14px;
  left: 50%;
  width: min(1160px, calc(100% - 28px));
  min-height: 62px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 10px 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(23, 21, 20, 0.78);
  color: var(--white);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 900;
  font-size: clamp(0.76rem, 2.1vw, 0.98rem);
  line-height: 1.05;
}

.brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 7px;
  background: var(--gold);
  color: #111;
  font-size: 0.8rem;
  box-shadow: inset 0 -8px 12px rgba(0, 0, 0, 0.08);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.84rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.82);
}

.nav-links a:hover {
  color: var(--gold);
}

.menu-toggle {
  display: none;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-weight: 900;
}

.header-cta,
.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 7px;
  font-weight: 900;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-cta {
  padding: 0 16px;
  background: var(--green);
  color: var(--white);
  font-size: 0.86rem;
}

.header-cta:hover,
.primary-btn:hover,
.secondary-btn:hover,
.price-card a:hover,
.text-link:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: end;
  overflow: hidden;
  padding: 116px 24px 54px;
  color: var(--white);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url("assets/testimonials/testimoni-16.jpeg");
  background-size: cover;
  background-position: center 42%;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.7) 44%, rgba(0, 0, 0, 0.3) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0) 52%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 370px);
  align-items: end;
  gap: 24px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 16px;
  font-size: clamp(3rem, 8.4vw, 7.2rem);
  line-height: 0.9;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.16rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2.3vw, 1.22rem);
  line-height: 1.55;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.primary-btn,
.secondary-btn {
  padding: 0 22px;
}

.primary-btn {
  border: 0;
  background: var(--gold);
  color: #171107;
  box-shadow: 0 16px 34px rgba(240, 191, 71, 0.26);
  cursor: pointer;
}

.secondary-btn {
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.primary-btn.dark {
  background: var(--ink);
  color: var(--white);
  box-shadow: none;
}

.hero-panel {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.panel-label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 10px;
  border-radius: 7px;
  background: rgba(17, 132, 95, 0.24);
  color: #bff7df;
  font-size: 0.78rem;
  font-weight: 900;
}

.hero-panel strong {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 1.4rem;
  line-height: 1.05;
}

.hero-panel p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.panel-list {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.panel-list span {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 800;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1120px, calc(100% - 32px));
  margin: -34px auto 0;
  position: relative;
  z-index: 5;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.trust-item {
  padding: 26px;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item span {
  display: block;
  margin-bottom: 16px;
  color: var(--green);
  font-weight: 900;
}

.trust-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.trust-item p,
.section-head p,
.service-card p,
.process-grid p,
.proof-copy p,
.quote-copy p,
.price-card p,
.faq-list p,
.final-cta p,
.site-footer span,
.site-footer small {
  color: var(--muted);
  line-height: 1.65;
}

.trust-item p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.section {
  padding: 86px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head.split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 32px;
}

.section-head.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-head.compact {
  max-width: 560px;
}

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

.service-card,
.process-grid article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-code {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--gold-deep);
  font-size: 0.76rem;
  font-weight: 900;
}

.price-section {
  padding: 82px 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0)),
    var(--paper-2);
}

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

.price-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.price-card.featured {
  background: var(--ink);
  color: var(--white);
}

.price-card span {
  width: fit-content;
  margin-bottom: 28px;
  padding: 8px 10px;
  border-radius: 7px;
  background: rgba(240, 191, 71, 0.18);
  color: var(--gold-deep);
  font-size: 0.78rem;
  font-weight: 900;
}

.price-card.featured span {
  color: var(--gold);
}

.price-card strong {
  display: block;
  margin: 4px 0 16px;
  color: var(--green);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  font-weight: 900;
}

.price-card.featured strong {
  color: var(--gold);
}

.price-card.featured p {
  color: rgba(255, 255, 255, 0.72);
}

.price-card a {
  width: fit-content;
  margin-top: auto;
  padding-bottom: 4px;
  border-bottom: 2px solid currentColor;
  color: var(--green);
  font-weight: 900;
}

.price-card.featured a {
  color: var(--gold);
}

.proof-band {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: stretch;
  background: var(--ink-soft);
  color: var(--white);
}

.proof-image {
  min-height: 430px;
}

.proof-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proof-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 7vw, 74px);
}

.proof-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.text-link {
  width: fit-content;
  margin-top: 10px;
  border-bottom: 2px solid var(--gold);
  color: var(--gold);
  font-weight: 900;
}

.process-section {
  padding-bottom: 70px;
}

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

.process-grid article {
  min-height: 190px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f1e6 100%);
}

.process-grid span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 30px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold);
  font-weight: 900;
}

.quote-section {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  background: var(--ink);
  color: var(--white);
}

.quote-bg {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image: url("assets/testimonials/testimoni-15.jpeg");
  background-size: cover;
  background-position: center;
}

.quote-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: 28px;
  align-items: start;
}

.quote-copy {
  position: sticky;
  top: 100px;
}

.quote-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.quote-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.quote-points span {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.86rem;
  font-weight: 800;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
}

.quote-form label.full,
.form-btn {
  grid-column: 1 / -1;
}

.quote-form input,
.quote-form select {
  width: 100%;
  min-height: 48px;
  padding: 0 12px;
  border: 1px solid rgba(23, 21, 20, 0.18);
  border-radius: 7px;
  background: var(--white);
  color: var(--ink);
  outline: 0;
}

.quote-form input:focus,
.quote-form select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(17, 132, 95, 0.12);
}

.form-btn {
  margin-top: 6px;
}

.testimonials {
  overflow: hidden;
  padding-top: 78px;
  background: var(--paper-2);
}

.gallery {
  width: min(1280px, calc(100% - 24px));
  margin: 0 auto;
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 170px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.gallery-item {
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: #ddd3c4;
  cursor: zoom-in;
  box-shadow: 0 10px 24px rgba(23, 21, 20, 0.08);
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.04);
  filter: saturate(1.08);
}

.faq-section {
  padding: 84px 0 20px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.faq-list summary {
  padding: 20px;
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
}

.final-cta {
  width: min(1120px, calc(100% - 32px));
  margin: 80px auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: clamp(28px, 5vw, 48px);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
}

.final-cta h2 {
  max-width: 760px;
  margin-bottom: 10px;
  font-size: clamp(1.85rem, 4.6vw, 3.35rem);
}

.final-cta .eyebrow {
  color: #5b3b07;
}

.final-cta p {
  margin-bottom: 0;
  color: #5b3b07;
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px max(24px, calc((100vw - 1120px) / 2));
  background: var(--ink);
  color: var(--white);
}

.site-footer strong,
.site-footer small {
  display: block;
}

.site-footer small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer span {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.86rem;
  text-align: right;
}

.floating-whatsapp {
  position: fixed;
  z-index: 30;
  right: 18px;
  bottom: 18px;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(17, 132, 95, 0.34);
}

.lightbox {
  position: fixed;
  z-index: 60;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.86);
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(100%, 1080px);
  max-height: 88vh;
  border-radius: 8px;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.36);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
}

@media (max-width: 980px) {
  .site-header {
    top: 8px;
    width: calc(100% - 16px);
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border-radius: 8px;
    background: rgba(23, 21, 20, 0.96);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 12px;
    border-radius: 7px;
  }

  .nav-links a:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  .hero {
    min-height: 92vh;
    padding: 106px 16px 44px;
  }

  .hero-content,
  .trust-strip,
  .service-grid,
  .price-grid,
  .process-grid,
  .proof-band,
  .quote-layout,
  .section-head.split,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero-panel,
  .quote-copy {
    position: static;
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .service-card,
  .process-grid article {
    min-height: auto;
  }

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

  .gallery-item.wide {
    grid-column: span 2;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer span {
    text-align: left;
  }
}

@media (max-width: 600px) {
  .brand {
    max-width: 214px;
  }

  .brand-mark {
    flex-basis: 34px;
    width: 34px;
    height: 34px;
  }

  .header-cta {
    display: none;
  }

  h1 {
    font-size: clamp(2.55rem, 15vw, 4.35rem);
  }

  .hero-bg {
    background-position: center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.56) 100%),
      linear-gradient(0deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0) 54%);
  }

  .hero-panel {
    padding: 18px;
  }

  .section {
    padding: 64px 0;
  }

  .quote-form {
    grid-template-columns: 1fr;
  }

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

  .gallery-item,
  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 340px;
  }

  .floating-whatsapp {
    width: 54px;
    height: 54px;
  }
}
