:root {
  --color-ink: #17110d;
  --color-ink-soft: #4e443c;
  --color-muted: #78695d;
  --color-cream: #fbf7ef;
  --color-sand: #efe3d2;
  --color-tan: #c79562;
  --color-tan-dark: #9e673b;
  --color-line: rgba(23, 17, 13, 0.12);
  --color-panel: #221813;
  --shadow-soft: 0 22px 70px rgba(23, 17, 13, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
  --motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --motion-duration: 0.85s;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  color: var(--color-ink);
  background: var(--color-cream);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top left, rgba(199, 149, 98, 0.22), transparent 36rem),
    radial-gradient(circle at 85% 10%, rgba(34, 24, 19, 0.08), transparent 28rem);
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  z-index: -1;
}

img,
svg {
  max-width: 100%;
}

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

a:hover {
  color: var(--color-tan-dark);
}

p {
  margin: 0 0 1rem;
  color: var(--color-ink-soft);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

h1,
h2,
h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

h1 {
  max-width: 18ch;
  font-size: clamp(2.125rem, 4vw, 3rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

h1 em {
  color: #b8966c;
  font-family: "Poppins", sans-serif;
  font-style: italic;
  font-weight: 600;
}

h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.125rem);
  line-height: 1.3;
}

h3 {
  font-size: 1.05rem;
  line-height: 1.35;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.section > .container {
  position: relative;
  z-index: 1;
}

.section-muted {
  background: linear-gradient(
    180deg,
    rgba(245, 236, 224, 0.72) 0%,
    rgba(239, 227, 210, 0.58) 50%,
    rgba(233, 218, 198, 0.65) 100%
  );
  border-block: 1px solid var(--color-line);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--color-ink);
  color: #fff;
  border-radius: var(--radius-sm);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(251, 247, 239, 0.82);
  backdrop-filter: blur(18px);
  transition:
    background 0.35s var(--motion-ease),
    border-color 0.35s ease,
    box-shadow 0.35s var(--motion-ease);
  animation: motionHeaderIn 0.8s var(--motion-ease) both;
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: block;
  flex: 0 0 auto;
  border-radius: 0;
  background: url("../logo-kl-removebg-preview.png") center / contain no-repeat;
  color: transparent;
  font-size: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1.8rem);
  color: var(--color-muted);
  font-size: 0.95rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  color: inherit;
}

.btn-primary,
.btn-small {
  color: #fff;
  background: var(--color-ink);
  box-shadow: 0 14px 36px rgba(23, 17, 13, 0.18);
}

.btn-primary:hover,
.btn-small:hover {
  color: #fff;
  background: #2b1d15;
}

.btn-secondary {
  color: var(--color-ink);
  background: rgba(255, 255, 255, 0.55);
  border-color: var(--color-line);
}

.btn-small {
  min-height: 42px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
}

.hero {
  padding-top: clamp(4rem, 8vw, 7rem);
  overflow: hidden;
}

.hero-grid,
.split-grid,
.feature-grid,
.final-cta-grid,
.footer-grid,
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.hero-subheadline {
  max-width: 42rem;
  margin-top: 1.4rem;
  font-family: "Open Sans", sans-serif;
  font-size: clamp(1rem, 1.4vw, 1.16rem);
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--color-tan-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  font-family: "Open Sans", sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
}

.hero .cta-row .btn {
  font-family: "Open Sans", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2rem 0 0.75rem;
}

.cta-microcopy {
  max-width: 38rem;
  margin: 0 0 1.25rem;
  color: var(--color-muted);
  font-size: 0.92rem;
}

.trust-badges,
.check-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.trust-badges li,
.check-list li {
  padding: 0.72rem 0.9rem;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  color: var(--color-ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

.trust-badges li::before {
  content: "✓";
  margin-right: 0.45rem;
  color: var(--color-tan-dark);
}

.hero-card {
  position: relative;
}

.image-placeholder {
  min-height: 280px;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  border: 1px dashed rgba(23, 17, 13, 0.25);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(23, 17, 13, 0.72), rgba(158, 103, 59, 0.45)),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.08) 0 10px, transparent 10px 20px);
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.image-placeholder span {
  display: block;
  font-size: 1.05rem;
  font-weight: 900;
}

.image-placeholder small {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255,255,255,0.78);
}

.image-placeholder-large {
  min-height: clamp(430px, 55vw, 620px);
}

.quote-card {
  width: min(85%, 360px);
  position: absolute;
  right: -1rem;
  bottom: 1.5rem;
  padding: 1.25rem;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: var(--radius-md);
  background: rgba(251, 247, 239, 0.9);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.quote-card strong,
.quote-card span {
  display: block;
}

.quote-card span {
  margin-top: 0.35rem;
  color: var(--color-muted);
  font-size: 0.92rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.5rem;
}

.section-heading.narrow {
  max-width: 620px;
  margin-inline: auto;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  margin-top: 1rem;
  font-size: 1.08rem;
}

.rich-text p {
  font-size: 1.04rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.card,
.panel,
.case-card,
.lead-form {
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.64) 0%, rgba(251, 247, 239, 0.46) 100%);
  box-shadow: 0 12px 38px rgba(23, 17, 13, 0.07);
}

.card {
  padding: 1.35rem;
}

.card p {
  margin: 0.75rem 0 0;
  font-size: 0.95rem;
}

.dark-panel {
  padding: clamp(2rem, 4vw, 3.25rem);
  background:
    radial-gradient(circle at 100% 0%, rgba(199, 149, 98, 0.28), transparent 45%),
    radial-gradient(circle at 0% 100%, rgba(158, 103, 59, 0.18), transparent 40%),
    linear-gradient(145deg, #2a1d14 0%, var(--color-panel) 45%, #3d2a20 100%);
  color: #fff;
}

.dark-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.dark-panel .eyebrow {
  color: var(--color-tan);
}

.capability-list {
  display: grid;
  gap: 1rem;
}

.capability-list div {
  padding: 1.25rem;
  border-left: 4px solid var(--color-tan);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: rgba(255, 255, 255, 0.55);
}

.capability-list strong,
.capability-list span {
  display: block;
}

.capability-list span {
  margin-top: 0.35rem;
  color: var(--color-muted);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: steps;
}

.timeline li {
  min-height: 170px;
  padding: 1.25rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-cream);
  counter-increment: steps;
}

.timeline li::before {
  content: counter(steps, decimal-leading-zero);
  display: block;
  margin-bottom: 1rem;
  color: var(--color-tan-dark);
  font-weight: 900;
}

.timeline strong,
.timeline span {
  display: block;
}

.timeline span {
  margin-top: 0.45rem;
  color: var(--color-muted);
  font-size: 0.92rem;
}

.workflow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.workflow-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.3rem;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--color-line);
  overflow: hidden;
}

.workflow-step::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(199, 149, 98, 0.14), transparent 55%),
    radial-gradient(circle at 0% 100%, rgba(239, 227, 210, 0.45), transparent 50%);
  pointer-events: none;
}

.workflow-step:nth-child(even)::before {
  background:
    radial-gradient(circle at 0% 0%, rgba(199, 149, 98, 0.12), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(239, 227, 210, 0.4), transparent 50%);
}

.workflow-step__num {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(145deg, #f8f0e6, var(--color-sand));
  color: var(--color-tan-dark);
  font-weight: 900;
  font-size: 0.95rem;
  line-height: 1;
  box-shadow: 0 0 0 4px rgba(239, 227, 210, 0.7);
}

.workflow-step__body {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
  padding: 0.85rem 0.95rem 0.9rem 1.1rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(251, 247, 239, 0.92) 0%, rgba(255, 255, 255, 0.55) 100%);
  border: 1px solid rgba(199, 149, 98, 0.14);
  overflow: hidden;
}

.workflow-step__body::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  bottom: 0.85rem;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--color-tan) 0%, rgba(199, 149, 98, 0.18) 100%);
}

.workflow-step__body::after {
  content: "";
  position: absolute;
  right: -1.2rem;
  bottom: -1.4rem;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 149, 98, 0.1) 0%, transparent 68%);
  pointer-events: none;
}

.workflow-step__title {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--color-ink);
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.workflow-step__title::after {
  content: "";
  display: block;
  width: 2.2rem;
  height: 2px;
  margin-top: 0.45rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-tan-dark), rgba(199, 149, 98, 0.15));
}

.workflow-step__desc {
  position: relative;
  z-index: 1;
  margin: 0.55rem 0 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--color-muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-grid .image-placeholder {
  min-height: 240px;
  box-shadow: none;
}

.case-card,
.two-cards {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: center;
}

.case-card {
  padding: clamp(1.5rem, 4vw, 3rem);
}

.case-section {
  overflow: hidden;
}

.case-heading {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.case-study-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 14px 42px rgba(23, 17, 13, 0.08);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.case-study-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 56px rgba(23, 17, 13, 0.12);
}

.case-study-card__visual {
  position: relative;
  min-height: 168px;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  overflow: hidden;
}

.case-study-card:nth-child(1) .case-study-card__visual {
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.42), transparent 42%),
    linear-gradient(145deg, #3d2a20 0%, #6b4a33 48%, #9e673b 100%);
}

.case-study-card:nth-child(2) .case-study-card__visual {
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.35), transparent 40%),
    linear-gradient(145deg, #2a211c 0%, #4e443c 52%, #78695d 100%);
}

.case-study-card:nth-child(3) .case-study-card__visual {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.3), transparent 45%),
    linear-gradient(145deg, #221813 0%, #3d2a20 45%, #c79562 100%);
}

.case-study-card__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -32deg,
      rgba(255, 255, 255, 0.04) 0,
      rgba(255, 255, 255, 0.04) 2px,
      transparent 2px,
      transparent 10px
    );
  pointer-events: none;
}

.case-study-card__visual-label {
  position: relative;
  z-index: 1;
  padding: 0.55rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(23, 17, 13, 0.28);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.case-study-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.35rem 1.35rem 1.5rem;
}

.case-study-card__tag {
  display: inline-block;
  width: fit-content;
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(199, 149, 98, 0.16);
  color: var(--color-tan-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.case-study-card__body h3 {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.25;
}

.case-study-card__body p {
  flex: 1;
  margin: 0.85rem 0 1.1rem;
  font-size: 0.94rem;
  line-height: 1.6;
}

.case-study-card__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.case-study-card__stats li {
  padding: 0.45rem 0.72rem;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--color-ink-soft);
  font-size: 0.8rem;
  font-weight: 700;
}

.case-study-card__stats li:first-child {
  border-color: rgba(199, 149, 98, 0.45);
  background: rgba(199, 149, 98, 0.14);
  color: var(--color-tan-dark);
}

.case-note {
  max-width: 52rem;
  margin: 1.75rem auto 0;
  text-align: center;
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.case-cta {
  justify-content: center;
  margin-top: 1.5rem;
}

.two-cards {
  align-items: stretch;
}

.emphasis-card {
  padding: clamp(1.5rem, 3vw, 2.4rem);
}

.emphasis-card .eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.emphasis-card h2 {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.25;
}

.emphasis-card p {
  font-size: 0.94rem;
  line-height: 1.6;
}

.faq-layout {
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

details {
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.62);
  overflow: hidden;
}

summary {
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  font-weight: 800;
}

details p {
  padding: 0 1.25rem 1.1rem;
}

.final-cta {
  color: #fff;
  background:
    radial-gradient(circle at 15% 10%, rgba(199, 149, 98, 0.35), transparent 28rem),
    var(--color-panel);
}

.final-cta p {
  color: rgba(255, 255, 255, 0.72);
}

.final-cta .eyebrow {
  color: var(--color-tan);
}

.final-cta .btn-primary {
  background: var(--color-tan);
  color: var(--color-ink);
}

.final-cta .btn-secondary {
  color: #fff;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
}

.lead-form {
  padding: clamp(1.2rem, 3vw, 2rem);
  background: #fff;
  color: var(--color-ink);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-row {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

label {
  font-weight: 800;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.82rem 0.9rem;
  border: 1px solid rgba(23, 17, 13, 0.18);
  border-radius: var(--radius-sm);
  font: inherit;
  color: var(--color-ink);
  background: #fff;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
.btn:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(199, 149, 98, 0.5);
  outline-offset: 3px;
}

.form-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-note,
.form-status {
  margin: 1rem 0 0;
  color: var(--color-muted) !important;
  font-size: 0.84rem;
}

.form-status:not(:empty) {
  padding: 0.9rem 1rem;
  border: 1px solid rgba(158, 103, 59, 0.25);
  border-radius: var(--radius-sm);
  background: var(--color-cream);
  color: var(--color-ink-soft) !important;
}

.whatsapp-float {
  position: fixed;
  right: clamp(1rem, 2.5vw, 1.5rem);
  bottom: clamp(1rem, 2.5vw, 1.5rem);
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  max-width: calc(100vw - 2rem);
  padding: 0.72rem 1.05rem 0.72rem 0.82rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: linear-gradient(145deg, #2fd06e 0%, #25d366 55%, #1da851 100%);
  color: #fff;
  box-shadow:
    0 14px 34px rgba(23, 17, 13, 0.16),
    0 6px 16px rgba(37, 211, 102, 0.28);
  font-family: "Open Sans", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  transition:
    transform 0.3s var(--motion-ease),
    box-shadow 0.3s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  color: #fff;
  transform: translateY(-3px);
  box-shadow:
    0 18px 40px rgba(23, 17, 13, 0.2),
    0 8px 20px rgba(37, 211, 102, 0.34);
  outline: none;
}

.whatsapp-float__icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.whatsapp-float__icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.whatsapp-float__label {
  white-space: nowrap;
}

.site-footer {
  padding: 2.5rem 0;
  background: linear-gradient(155deg, #2a1d14 0%, #3a281c 38%, #4a3528 68%, #2e2118 100%);
  color: #fff;
}

.site-footer p,
.site-footer address {
  color: rgba(255,255,255,0.68);
}

.footer-grid {
  align-items: start;
}

.footer-brand {
  position: static;
  transform: none;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.9rem;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: normal;
}

.footer-brand:hover {
  color: var(--color-tan);
}

.footer-brand .brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.18em;
}

address {
  font-style: normal;
}

.footer-contact-lines {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.55rem;
  margin-top: 0.15rem;
}

.footer-contact-sep {
  color: rgba(255, 255, 255, 0.45);
}

.footer-contact-link {
  color: var(--color-tan);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-link:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-location-link {
  display: inline-block;
  margin-top: 0.55rem;
  max-width: 28rem;
  line-height: 1.55;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.15rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.footer-social-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.32);
  transform: translateY(-1px);
}

.footer-social-link--instagram:hover {
  color: #fff;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: transparent;
}

.footer-social-link--facebook:hover {
  color: #fff;
  background: #1877f2;
  border-color: transparent;
}

.footer-social-link--tiktok:hover {
  color: #fff;
  background: #010101;
  border-color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 980px) {
  .hero-grid,
  .split-grid,
  .feature-grid,
  .final-cta-grid,
  .footer-grid,
  .faq-layout,
  .case-card,
  .two-cards {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .product-grid,
  .timeline,
  .gallery-grid,
  .case-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  h1 {
    max-width: 18ch;
  }

  .hero-copy > h1 {
    max-width: 100%;
    font-size: clamp(1.95rem, 4.8vw, 2.55rem);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 1.2rem, var(--container));
  }

  .nav {
    min-height: 68px;
  }

  .nav .btn-small {
    display: none;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .section {
    padding: 3.5rem 0;
  }

  .cta-row,
  .check-list {
    align-items: stretch;
    flex-direction: column;
  }

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

  .btn {
    width: 100%;
  }

  .quote-card {
    position: static;
    width: 100%;
    margin-top: 1rem;
  }

  .card-grid,
  .product-grid,
  .timeline,
  .gallery-grid,
  .case-grid,
  .workflow,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .image-placeholder-large {
    min-height: 300px;
  }

  .whatsapp-float {
    right: max(0.85rem, env(safe-area-inset-right, 0px));
    bottom: max(0.85rem, env(safe-area-inset-bottom, 0px));
    min-height: 44px;
    padding: 0.65rem 0.9rem 0.65rem 0.72rem;
    font-size: 0.78rem;
    z-index: 95;
  }

  .whatsapp-float__icon {
    width: 1.85rem;
    height: 1.85rem;
  }

  .site-footer {
    padding-bottom: calc(4.5rem + env(safe-area-inset-bottom, 0px));
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Header & hero style: editorial split layout, soft blush/cream palette, Poppins + Open Sans typography. */
:root {
  --color-ink: #0a0a0a;
  --color-ink-soft: #2c2c2c;
  --color-muted: #6b6b6b;
  --color-cream: #faf9f7;
  --color-sand: #f5f0eb;
  --color-tan: #b8966c;
  --color-tan-dark: #9f7a4f;
  --color-line: #e0dbd5;
}

body {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  color: var(--color-ink-soft);
  background: var(--color-cream);
}

body::before {
  display: none;
}

h1,
h2,
h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}

h1 {
  max-width: 14ch;
  font-size: clamp(2.125rem, 4.2vw, 3rem);
  line-height: 1.25;
}

h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.125rem);
  line-height: 1.3;
}

h3 {
  font-size: 1.05rem;
  line-height: 1.35;
}

h1 em {
  color: var(--color-tan);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--color-line);
  background: rgba(251, 247, 239, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition:
    background 0.35s var(--motion-ease),
    border-color 0.35s ease,
    box-shadow 0.35s var(--motion-ease);
}

.nav-topbar {
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 5vw, 80px);
  position: relative;
}

.nav-contact-link,
.nav-links a {
  font-family: "Open Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--color-ink-soft);
}

.nav-contact-link:hover,
.nav-links a:hover {
  color: var(--color-ink);
  opacity: 1;
}

.nav-contact-link {
  opacity: 0.72;
}

.nav-topbar-end {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-toggle {
  font-family: "Open Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--color-ink-soft);
  background: transparent;
  border: 1px solid rgba(10, 10, 10, 0.14);
  border-radius: 2px;
  padding: 0.45rem 0.65rem;
  cursor: pointer;
  opacity: 0.85;
  transition: color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.lang-toggle:hover,
.lang-toggle:focus-visible {
  color: var(--color-ink);
  border-color: rgba(10, 10, 10, 0.28);
  opacity: 1;
  outline: none;
}

.nav-topbar .brand {
  min-width: 0;
  max-width: calc(100% - 4.5rem);
  gap: 0.55rem;
  color: var(--color-ink);
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-topbar .brand span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-topbar .brand .brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 0;
  background: url("../logo-kl-removebg-preview.png") center / contain no-repeat;
  color: transparent;
  font-size: 0;
}

.nav {
  min-height: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(24px, 5vw, 80px);
  border-top: 1px solid rgba(10, 10, 10, 0.05);
  background: rgba(250, 249, 247, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.4rem, 3vw, 2rem);
  color: var(--color-ink-soft);
}

.nav-links a {
  position: relative;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 1px;
  background: var(--color-ink);
  transition: width 0.35s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.hero.section {
  padding: 0;
}

.hero {
  overflow: hidden;
  background: linear-gradient(125deg, #e8dccf 0%, #f5f0eb 42%, #d4b896 100%);
}

.hero-grid {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: calc(90vh - 94px);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(5rem, 8vw, 7rem) clamp(24px, 5vw, 80px);
  padding-right: clamp(40px, 5vw, 80px);
  background:
    radial-gradient(ellipse at 0% 100%, rgba(232, 213, 196, 0.72) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 0%, rgba(212, 184, 150, 0.45) 0%, transparent 45%),
    radial-gradient(ellipse at 60% 60%, rgba(201, 168, 136, 0.16) 0%, transparent 70%),
    linear-gradient(150deg, #f5f0eb 0%, #ece1d5 42%, #f2ebe4 100%);
}

.hero .eyebrow {
  margin-bottom: 1.5rem;
  color: var(--color-tan);
  font-family: "Open Sans", sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  line-height: 1.4;
}

.hero-copy > h1 {
  max-width: 26ch;
  font-size: clamp(2.1rem, 3.8vw, 2.95rem);
  line-height: 1.18;
}

.hero-copy > h1 em {
  display: block;
  margin-top: 0.18em;
  font-size: 0.85em;
  line-height: 1.32;
  letter-spacing: 0;
}

.hero-subheadline {
  max-width: 31rem;
  margin-top: 1.75rem;
  margin-bottom: 0;
  color: var(--color-ink-soft);
  font-family: "Open Sans", sans-serif;
  font-size: clamp(1rem, 1.3vw, 1.08rem);
  font-weight: 400;
  line-height: 1.75;
}

.hero .cta-row {
  gap: 1rem;
  margin-top: 2.4rem;
  margin-bottom: 0;
}

.hero .btn {
  min-height: 50px;
  border-radius: 0;
  padding: 0.95rem 1.45rem;
  font-family: "Open Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: none;
}

.hero .btn-primary {
  border-color: var(--color-ink);
  background: var(--color-ink);
  color: #fff;
}

.hero .btn-secondary {
  border-color: var(--color-ink);
  background: transparent;
  color: var(--color-ink);
}

.hero .btn-secondary:hover {
  background: var(--color-ink);
  color: #fff;
}

.cta-microcopy {
  max-width: 31rem;
  margin-top: 1.2rem;
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 0.92rem;
}

.hero-details {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2rem);
  margin-top: clamp(2.5rem, 5vw, 3.75rem);
  padding-top: 2.4rem;
  border-top: 1px solid var(--color-line);
}

.hero-detail-num {
  display: block;
  color: var(--color-ink);
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  font-weight: 600;
  line-height: 1;
}

.hero-detail-label {
  display: block;
  margin-top: 0.45rem;
  color: var(--color-muted);
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  line-height: 1.45;
  text-transform: uppercase;
}

.hero-detail-divider {
  width: 1px;
  height: 42px;
  background: var(--color-line);
}

.hero-card {
  min-height: inherit;
  position: relative;
  overflow: hidden;
}

.hero-card .image-placeholder {
  height: 100%;
  min-height: 100%;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.12), rgba(10, 10, 10, 0.34)),
    radial-gradient(circle at 45% 35%, rgba(245, 240, 235, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(44, 44, 44, 0.88), rgba(184, 150, 108, 0.5)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.07) 0 10px, transparent 10px 20px);
}

.hero-card .image-placeholder span {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 600;
}

.hero-card .image-placeholder small {
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.82);
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
}

.hero-card .quote-card {
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  border-radius: 0;
  background: rgba(250, 249, 247, 0.9);
}

@media (max-width: 980px) {
  .nav-topbar {
    height: 56px;
  }

  .nav-contact-link {
    font-size: 0.66rem;
  }

  .nav-topbar .brand {
    font-size: 1.15rem;
  }

  .nav {
    overflow-x: auto;
    justify-content: flex-start;
  }

  .nav-links {
    display: flex;
    min-width: max-content;
    gap: 1.25rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    min-height: 68vh;
  }

  .hero-card {
    min-height: 56vh;
  }
}

@media (max-width: 640px) {
  .nav-topbar {
    padding: 0 1rem;
  }

  .nav-topbar .brand {
    gap: 0.4rem;
    font-size: 0.92rem;
  }

  .nav-topbar .brand .brand-mark {
    width: 40px;
    height: 40px;
  }

  .nav-topbar-end {
    gap: 0.65rem;
  }

  .lang-toggle {
    font-size: 0.66rem;
    padding: 0.4rem 0.55rem;
  }

  .nav-contact-link {
    max-width: 6.5rem;
    text-align: right;
    line-height: 1.2;
  }

  .hero-copy {
    min-height: auto;
    padding: 3.75rem 1.15rem 3rem;
  }

  .hero .eyebrow {
    max-width: 100%;
    font-size: 0.66rem;
    letter-spacing: 0.16em;
    line-height: 1.65;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(1.875rem, 7vw, 2.375rem);
    line-height: 1.22;
  }

  .hero-copy > h1 {
    max-width: 100%;
    font-size: clamp(1.8rem, 6.8vw, 2.3rem);
    line-height: 1.22;
  }

  .hero-copy > h1 em {
    font-size: 0.86em;
    line-height: 1.36;
  }

  h2 {
    font-size: clamp(1.375rem, 5.5vw, 1.875rem);
    line-height: 1.32;
  }

  .hero-subheadline {
    max-width: 100%;
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .hero .cta-row {
    align-items: stretch;
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero .btn {
    width: 100%;
    min-height: 48px;
    padding-inline: 1rem;
    letter-spacing: 0.12em;
  }

  .hero-details {
    display: grid;
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
  }

  .hero-detail-label {
    letter-spacing: 0.1em;
  }

  .hero-detail-divider {
    display: none;
  }

  .hero-card {
    min-height: auto;
    overflow: visible;
  }

  .hero-card .quote-card {
    position: static;
    width: calc(100% - 2rem);
    margin: 1rem auto 0;
  }
}

.hero-image {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 980px) {
  .hero-image {
    min-height: 56vh;
  }
}

@media (max-width: 640px) {
  .hero-image {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
  }
}

.gallery-item {
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: contain;
  object-position: center;
  background: var(--color-surface);
}

.gallery-item figcaption {
  padding: 0.9rem 1rem;
  color: var(--color-muted);
  font-size: 0.92rem;
}

/* ── Motion & visual atmosphere ── */

@keyframes motionFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes motionFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes motionHeroImage {
  from {
    opacity: 0;
    transform: scale(1.08);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes motionFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes motionShimmer {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}

@keyframes motionHeaderIn {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes motionEyebrowDraw {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 2.5rem;
    opacity: 1;
  }
}

@keyframes motionPulseSoft {
  0%, 100% {
    box-shadow: 0 0 0 4px rgba(239, 227, 210, 0.7);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(199, 149, 98, 0.18);
  }
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 1000;
  pointer-events: none;
  background: rgba(23, 17, 13, 0.05);
}

.scroll-progress__bar {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--color-tan-dark), var(--color-tan));
  transition: transform 0.12s linear;
  will-change: transform;
}

.site-header.is-scrolled {
  background: rgba(251, 247, 239, 0.97);
  border-bottom-color: rgba(158, 103, 59, 0.15);
  box-shadow: 0 10px 30px rgba(23, 17, 13, 0.08);
}

.site-header.is-scrolled .nav {
  background: rgba(250, 249, 247, 0.95);
}

.nav-links a.is-active {
  color: var(--color-ink);
}

.nav-links a.is-active::after {
  width: 100%;
  background: var(--color-tan-dark);
}

.hero-copy > .eyebrow {
  animation: motionFadeUp 0.9s var(--motion-ease) 0.1s both;
}

.hero-copy > h1 {
  animation: motionFadeUp 0.95s var(--motion-ease) 0.22s both;
}

.hero-copy > .hero-subheadline {
  animation: motionFadeUp 0.95s var(--motion-ease) 0.34s both;
}

.hero-copy > .cta-row {
  animation: motionFadeUp 0.95s var(--motion-ease) 0.46s both;
}

.hero-copy > .cta-microcopy {
  animation: motionFadeUp 0.95s var(--motion-ease) 0.54s both;
}

.hero-copy > .hero-details {
  animation: motionFadeUp 0.95s var(--motion-ease) 0.64s both;
}

.hero-media {
  position: relative;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(23, 17, 13, 0.08) 0%, transparent 28%, transparent 72%, rgba(23, 17, 13, 0.22) 100%),
    linear-gradient(90deg, rgba(23, 17, 13, 0.12), transparent 22%, transparent 78%, rgba(23, 17, 13, 0.1));
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 5px;
  z-index: 3;
  background: repeating-linear-gradient(
    90deg,
    var(--color-tan) 0 8px,
    transparent 8px 14px
  );
  opacity: 0.55;
}

.hero-media-frame {
  width: 100%;
  height: 100%;
  min-height: inherit;
  overflow: hidden;
  animation: motionHeroImage 1.3s var(--motion-ease) 0.35s both;
}

.hero-media-frame .hero-image {
  width: 100%;
  height: 100%;
  min-height: inherit;
  will-change: transform;
}

.hero-card .quote-card {
  z-index: 4;
  animation: motionFadeUp 1s var(--motion-ease) 0.75s both, motionFloat 7s ease-in-out 2.2s infinite;
}

.motion-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity var(--motion-duration) var(--motion-ease),
    transform var(--motion-duration) var(--motion-ease);
  transition-delay: var(--motion-item-delay, 0ms);
}

.motion-reveal--left {
  transform: translate3d(-36px, 24px, 0);
}

.motion-reveal--right {
  transform: translate3d(36px, 24px, 0);
}

.motion-reveal.is-visible,
.motion-reveal--left.is-visible,
.motion-reveal--right.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.eyebrow {
  position: relative;
  display: inline-block;
}

.eyebrow::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  margin-top: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-tan-dark), rgba(199, 149, 98, 0.15));
}

.eyebrow.motion-reveal.is-visible::after,
.section-heading.is-visible .eyebrow::after {
  animation: motionEyebrowDraw 0.7s var(--motion-ease) 0.15s both;
}

.section-muted {
  position: relative;
}

.section-muted::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 45% at 88% 12%, rgba(199, 149, 98, 0.12), transparent),
    radial-gradient(ellipse 50% 40% at 8% 88%, rgba(158, 103, 59, 0.09), transparent),
    repeating-linear-gradient(
      90deg,
      rgba(158, 103, 59, 0.04) 0 1px,
      transparent 1px 48px
    );
  opacity: 0.65;
}

.card,
.emphasis-card,
.case-study-card,
.workflow-step,
.capability-list div {
  transition:
    transform 0.35s var(--motion-ease),
    box-shadow 0.35s var(--motion-ease),
    border-color 0.35s ease;
}

.card:hover,
.emphasis-card:hover {
  transform: translateY(-6px);
  border-color: rgba(199, 149, 98, 0.35);
  box-shadow: 0 20px 48px rgba(23, 17, 13, 0.12);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.product-category-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 12px 38px rgba(23, 17, 13, 0.07);
  transition: transform 0.4s var(--motion-ease), box-shadow 0.4s var(--motion-ease);
}

.product-category-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: cover;
  object-position: center;
  background: var(--color-surface);
  transition: transform 0.7s var(--motion-ease);
}

.product-category-card__placeholder {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  padding: 1rem;
  background: linear-gradient(145deg, rgba(231, 226, 219, 0.9), rgba(255, 255, 255, 0.72));
  color: var(--color-muted);
  font-size: 0.88rem;
  text-align: center;
}

.product-category-card figcaption {
  padding: 0.95rem 1rem 1.1rem;
  text-align: center;
}

.product-category-card h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.35;
}

.product-category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(23, 17, 13, 0.14);
}

.product-category-card:hover img {
  transform: scale(1.05);
}

.capability-list div:hover {
  transform: translateX(6px);
  border-left-color: var(--color-tan-dark);
  box-shadow: 0 12px 32px rgba(23, 17, 13, 0.08);
}

.dark-panel {
  position: relative;
  overflow: hidden;
}

.dark-panel::after {
  content: "";
  position: absolute;
  right: -3rem;
  bottom: -3rem;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 149, 98, 0.18), transparent 68%);
  pointer-events: none;
}

.timeline li,
.workflow-step {
  position: relative;
}

.timeline li:hover,
.workflow-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(23, 17, 13, 0.1);
}

.gallery-item {
  position: relative;
  transition: transform 0.4s var(--motion-ease), box-shadow 0.4s var(--motion-ease);
}

.gallery-item img {
  transition: transform 0.7s var(--motion-ease);
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 45%, rgba(23, 17, 13, 0.55) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(23, 17, 13, 0.14);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item:hover::before {
  opacity: 1;
}

.gallery-item figcaption {
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.gallery-item:hover figcaption {
  color: var(--color-ink);
}

.case-study-card__visual {
  transition: transform 0.6s var(--motion-ease);
}

.case-study-card:hover .case-study-card__visual {
  transform: scale(1.03);
}

.craftsmanship .image-placeholder,
.craftsmanship-image,
.export-section .split-grid > div:first-child {
  position: relative;
  overflow: hidden;
}

.craftsmanship-image {
  min-height: 280px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.craftsmanship-image img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  display: block;
  object-fit: cover;
}

.craftsmanship-image[hidden],
.craftsmanship .image-placeholder[hidden] {
  display: none;
}

.craftsmanship .image-placeholder::after,
.hero-card .image-placeholder::after,
.gallery-grid .image-placeholder::after,
.product-category-card__placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(255, 255, 255, 0.12) 50%, transparent 60%);
  transform: translateX(-130%);
  animation: motionShimmer 6s ease-in-out infinite;
  pointer-events: none;
}

.product-category-card__placeholder {
  position: relative;
  overflow: hidden;
}

.workflow-step.is-visible .workflow-step__num {
  animation: motionFadeUp 0.6s var(--motion-ease) both, motionPulseSoft 3.5s ease-in-out 0.8s infinite;
}

.timeline li.is-visible::before {
  animation: motionFadeUp 0.55s var(--motion-ease) 0.1s both;
}

.footer-social-link {
  transition: transform 0.3s var(--motion-ease), opacity 0.3s ease;
}

.footer-social-link:hover {
  transform: translateY(-3px) scale(1.06);
}

.footer-contact-link {
  transition: color 0.25s ease, opacity 0.25s ease;
}

.footer-contact-link:hover {
  opacity: 1;
}

/* Section brown gradient washes */
.problem-solution {
  background: linear-gradient(160deg, #fbf7ef 0%, rgba(239, 227, 210, 0.72) 48%, #f5ede4 100%);
}

#products.section-muted {
  background: linear-gradient(145deg, rgba(233, 218, 198, 0.78) 0%, rgba(251, 247, 239, 0.52) 42%, rgba(239, 227, 210, 0.68) 100%);
}

section[aria-labelledby="capabilities-title"] {
  background: linear-gradient(180deg, #fbf7ef 0%, rgba(212, 184, 150, 0.22) 52%, #fbf7ef 100%);
}

.craftsmanship {
  background: linear-gradient(135deg, #fbf7ef 0%, rgba(239, 227, 210, 0.58) 58%, rgba(199, 149, 98, 0.14) 100%);
}

#process.section-muted {
  background: linear-gradient(200deg, rgba(239, 227, 210, 0.74) 0%, rgba(245, 236, 224, 0.58) 50%, rgba(228, 208, 186, 0.7) 100%);
}

section[aria-labelledby="workflow-title"] {
  background: linear-gradient(125deg, rgba(251, 247, 239, 0.95) 0%, rgba(239, 227, 210, 0.42) 55%, rgba(212, 184, 150, 0.18) 100%);
}

.export-section {
  background: linear-gradient(120deg, rgba(251, 247, 239, 0.96) 0%, rgba(239, 227, 210, 0.48) 55%, rgba(199, 149, 98, 0.16) 100%);
}

#gallery.section-muted {
  background: linear-gradient(215deg, rgba(233, 218, 198, 0.75) 0%, rgba(251, 247, 239, 0.5) 45%, rgba(239, 227, 210, 0.66) 100%);
}

.case-section {
  background: linear-gradient(180deg, #fbf7ef 0%, rgba(239, 227, 210, 0.45) 50%, rgba(251, 247, 239, 0.92) 100%);
}

section[aria-labelledby="moq-title"] {
  background: linear-gradient(165deg, rgba(245, 236, 224, 0.74) 0%, rgba(239, 227, 210, 0.58) 55%, rgba(228, 208, 186, 0.68) 100%);
}

#faq {
  background: linear-gradient(170deg, #fbf7ef 0%, rgba(232, 213, 196, 0.38) 62%, #fbf7ef 100%);
}

.problem-solution::after,
.case-section::after,
section[aria-labelledby="capabilities-title"]::after,
.craftsmanship::after,
section[aria-labelledby="workflow-title"]::after,
.export-section::after,
#faq::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 18% 28%, rgba(199, 149, 98, 0.11), transparent),
    radial-gradient(ellipse 60% 45% at 82% 72%, rgba(158, 103, 59, 0.08), transparent);
}

#products.section-muted::after,
#process.section-muted::after,
#gallery.section-muted::after,
section[aria-labelledby="moq-title"]::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.85;
}

#products.section-muted::after {
  background: radial-gradient(ellipse 65% 55% at 12% 18%, rgba(199, 149, 98, 0.14), transparent);
}

#process.section-muted::after {
  background: radial-gradient(ellipse 60% 50% at 88% 22%, rgba(158, 103, 59, 0.12), transparent);
}

#gallery.section-muted::after {
  background: radial-gradient(ellipse 65% 55% at 90% 80%, rgba(199, 149, 98, 0.13), transparent);
}

section[aria-labelledby="moq-title"]::after {
  background:
    radial-gradient(ellipse 55% 45% at 15% 50%, rgba(199, 149, 98, 0.1), transparent),
    radial-gradient(ellipse 55% 45% at 85% 50%, rgba(158, 103, 59, 0.09), transparent);
}

.problem-solution::before,
.case-section::before {
  content: "";
  position: absolute;
  top: 10%;
  z-index: 0;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(199, 149, 98, 0.14), transparent 68%);
  animation: motionFloat 9s ease-in-out infinite;
}

.problem-solution::before {
  right: -4rem;
}

.case-section::before {
  left: -4rem;
  animation-delay: 1.5s;
}

details {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

details[open] {
  border-color: rgba(199, 149, 98, 0.35);
  box-shadow: 0 12px 28px rgba(23, 17, 13, 0.06);
}

details[open] summary {
  color: var(--color-tan-dark);
}

details summary {
  transition: color 0.25s ease;
  list-style: none;
}

details summary::-webkit-details-marker {
  display: none;
}

details summary::after {
  content: "+";
  float: right;
  color: var(--color-tan-dark);
  font-weight: 700;
  transition: transform 0.3s var(--motion-ease);
}

details[open] summary::after {
  transform: rotate(45deg);
}

details .faq-answer {
  animation: motionFadeUp 0.45s var(--motion-ease) both;
}

.btn-primary,
.btn-secondary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after,
.btn-secondary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, 0.14) 50%, transparent 65%);
  transform: translateX(-130%);
  transition: transform 0.65s ease;
}

.btn-primary:hover::after,
.btn-secondary:hover::after {
  transform: translateX(130%);
}

.site-footer {
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 0%, rgba(199, 149, 98, 0.22), transparent 42%),
    radial-gradient(circle at 88% 100%, rgba(158, 103, 59, 0.18), transparent 40%),
    linear-gradient(180deg, rgba(199, 149, 98, 0.06) 0%, transparent 35%, rgba(0, 0, 0, 0.12) 100%);
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

/* Mobile feature parity: sticky header, gradients, MOQ cards, WhatsApp float, hero quote */
@media (max-width: 980px) {
  html {
    scroll-padding-top: 6.5rem;
  }

  body {
    overflow-x: hidden;
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    -webkit-backdrop-filter: blur(20px);
  }

  .nav {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav-links {
    display: flex;
    min-width: max-content;
    gap: 1.15rem;
    padding-inline: 0.15rem;
  }

  .nav-links a {
    flex-shrink: 0;
  }

  .two-cards {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .problem-solution::before,
  .case-section::before {
    width: 8rem;
    height: 8rem;
  }

  .problem-solution::before {
    right: -2.5rem;
  }

  .case-section::before {
    left: -2.5rem;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 7.75rem;
  }

  .site-header.is-scrolled {
    box-shadow: 0 8px 24px rgba(23, 17, 13, 0.1);
  }

  .emphasis-card {
    padding: 1.25rem;
  }

  .emphasis-card .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .emphasis-card h2 {
    font-size: 1.05rem;
    line-height: 1.28;
  }

  .emphasis-card p {
    font-size: 0.9rem;
    line-height: 1.58;
  }

  .hero-card .quote-card {
    width: calc(100% - 2.3rem);
    margin: 1rem auto 0;
    padding: 1.1rem 1.15rem;
    border-radius: var(--radius-md);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.72) 0%, rgba(251, 247, 239, 0.92) 100%);
    border-color: rgba(158, 103, 59, 0.18);
  }

  .hero-card .quote-card strong {
    font-size: 1rem;
    line-height: 1.32;
    color: var(--color-ink);
  }

  .hero-card .quote-card span {
    font-size: 0.88rem;
    line-height: 1.58;
  }

  .whatsapp-float {
    max-width: calc(100vw - 1.7rem);
  }

  .whatsapp-float:active {
    transform: scale(0.98);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .motion-reveal {
    opacity: 1;
    transform: none;
  }

  .hero-image {
    transform: none !important;
  }

  .scroll-progress {
    display: none;
  }
}

/* Product carousel chrome (hint / dots / edge fade) — mobile only */
.product-carousel__hint,
.product-carousel__controls,
.product-carousel__fade {
  display: none;
}

.product-carousel__viewport {
  position: relative;
}

/* Product categories: one-frame horizontal swipe carousel (mobile)
   Placed last so it wins over base .product-grid rules earlier in this file. */
@media (max-width: 768px) {
  #products.section {
    overflow-x: clip;
  }

  #products > .container {
    min-width: 0;
    max-width: 100%;
  }

  .product-carousel {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .product-carousel__hint {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    align-self: center;
    margin: 0;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(158, 103, 59, 0.22);
    background: rgba(255, 255, 255, 0.72);
    color: var(--color-muted, #6b5b4f);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1.3;
    box-shadow: 0 6px 18px rgba(23, 17, 13, 0.06);
    animation: productCarouselHintPulse 2.4s ease-in-out infinite;
  }

  .product-carousel__hint-icon {
    display: inline-flex;
    color: var(--color-tan-dark, #9e673b);
    flex-shrink: 0;
  }

  .product-carousel__hint-icon svg {
    display: block;
  }

  .product-carousel__viewport {
    position: relative;
    min-width: 0;
  }

  #products .product-grid,
  .product-grid.motion-stagger,
  .product-grid {
    display: grid !important;
    grid-template-columns: none !important;
    grid-auto-flow: column !important;
    /* Slight peek of next card so swipe is obvious */
    grid-auto-columns: 86% !important;
    gap: 0.75rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
    scrollbar-width: none;
    padding-bottom: 0.2rem;
  }

  #products .product-grid::-webkit-scrollbar,
  .product-grid::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
  }

  #products .product-grid > .product-category-card,
  .product-grid > .product-category-card {
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
    max-width: none;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .product-category-card:hover {
    transform: none;
  }

  .product-category-card:hover img {
    transform: none;
  }

  .product-carousel__fade {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0.2rem;
    width: 2.4rem;
    pointer-events: none;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.25s ease;
  }

  .product-carousel__fade.is-active {
    opacity: 1;
  }

  .product-carousel__fade--start {
    left: 0;
    background: linear-gradient(90deg, rgba(251, 247, 239, 0.95), transparent);
  }

  .product-carousel__fade--end {
    right: 0;
    background: linear-gradient(270deg, rgba(251, 247, 239, 0.95), transparent);
  }

  .product-carousel__fade--end::after {
    content: "";
    position: absolute;
    top: 42%;
    right: 0.35rem;
    width: 0.55rem;
    height: 0.55rem;
    border-right: 2px solid rgba(158, 103, 59, 0.7);
    border-bottom: 2px solid rgba(158, 103, 59, 0.7);
    transform: translateY(-50%) rotate(-45deg);
    animation: productCarouselChevron 1.4s ease-in-out infinite;
  }

  .product-carousel__controls {
    display: flex;
    justify-content: center;
  }

  .product-carousel__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    min-height: 1rem;
  }

  .product-carousel__dot {
    width: 0.45rem;
    height: 0.45rem;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(158, 103, 59, 0.28);
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease, transform 0.25s ease;
  }

  .product-carousel__dot.is-active {
    width: 1.15rem;
    background: var(--color-tan-dark, #9e673b);
  }

  .product-carousel.is-scrolled .product-carousel__hint {
    opacity: 0.55;
    animation: none;
  }
}

@keyframes productCarouselHintPulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 6px 18px rgba(23, 17, 13, 0.06);
  }
  50% {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(23, 17, 13, 0.1);
  }
}

@keyframes productCarouselChevron {
  0%,
  100% {
    opacity: 0.45;
    transform: translateY(-50%) translateX(0) rotate(-45deg);
  }
  50% {
    opacity: 1;
    transform: translateY(-50%) translateX(3px) rotate(-45deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-carousel__hint,
  .product-carousel__fade--end::after {
    animation: none !important;
  }
}
