:root {
  --bg-light: #F4EFE7;
  --bg-light-alt: #EFE7DB;
  --bg-dark: #081018;
  --bg-dark-alt: #0D1722;
  --text-dark: #0A0E12;
  --text-light: #F5F1E8;
  --text-muted: #7D776E;
  --text-subtle: #5A655B;
  --accent-moss: #566E57;
  --accent-terracotta: #C9784E;
  --accent-sand: #D9C6AF;
  --border-soft: rgba(10, 14, 18, 0.1);
  --border-strong: rgba(10, 14, 18, 0.16);
  --border-dark: rgba(245, 241, 232, 0.12);
  --border-dark-strong: rgba(245, 241, 232, 0.18);
  --shadow-soft: 0 24px 60px rgba(10, 14, 18, 0.08);
  --shadow-deep: 0 28px 80px rgba(0, 0, 0, 0.28);
  --radius-sm: 16px;
  --radius-md: 18px;
  --radius-lg: 32px;
  --radius-full: 999px;
  --container: 1240px;
  --section-space: clamp(4.5rem, 7vw, 6.8rem);
  --section-space-sm: clamp(2.6rem, 5vw, 4.5rem);
  --content-gap: clamp(2rem, 4vw, 4rem);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", Helvetica, Arial, sans-serif;
  --transition: 220ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(calc(100% - 2.5rem), var(--container));
  margin: 0 auto;
}

.section-padding {
  padding: var(--section-space) 0;
}

section[id],
footer[id] {
  scroll-margin-top: 104px;
}

.section-padding-sm {
  padding: var(--section-space-sm) 0;
}

.section-dark {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 18%, rgba(86, 110, 87, 0.11), transparent 18%),
    linear-gradient(160deg, rgba(201, 120, 78, 0.08), transparent 35%),
    linear-gradient(180deg, #050b11 0%, var(--bg-dark) 42%, var(--bg-dark-alt) 100%);
  color: var(--text-light);
}

.accent-text {
  color: var(--accent-moss);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(20px);
  background: rgba(244, 239, 231, 0.94);
  border-bottom: 1px solid rgba(10, 14, 18, 0.08);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand-mark {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-terracotta), var(--accent-sand));
  box-shadow: 0 0 0 8px rgba(201, 120, 78, 0.08);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.site-nav a {
  transition: color var(--transition), opacity var(--transition), transform var(--transition);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text-dark);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.75rem 1.1rem;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform var(--transition), background-color var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--text-dark);
  color: var(--text-light);
  box-shadow: var(--shadow-soft);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent-moss);
}

.button-secondary {
  border-color: rgba(10, 14, 18, 0.14);
  color: var(--text-dark);
  background: rgba(255, 255, 255, 0.3);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(10, 14, 18, 0.32);
  background: rgba(255, 255, 255, 0.7);
}

.button-block {
  width: 100%;
}

.nav-cta {
  margin-left: 0.75rem;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  width: 52px;
  height: 52px;
  border: 1px solid var(--border-soft);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
}

.menu-toggle span {
  width: 18px;
  height: 1.5px;
  margin: 0 auto;
  background: var(--text-dark);
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 0;
  min-height: auto;
  background:
    radial-gradient(circle at 92% 4%, rgba(201, 120, 78, 0.08), transparent 18%),
    linear-gradient(180deg, #f4efe7 0%, #efe7db 100%);
}

.shape-layer-hero {
  z-index: 1;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(390px, 0.9fr) minmax(560px, 1.1fr);
  align-items: stretch;
  gap: clamp(1.25rem, 2.5vw, 2.4rem);
  min-height: 650px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 45rem;
  padding: clamp(4.2rem, 7vw, 5.8rem) 0 2.4rem;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--text-muted);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: rgba(245, 241, 232, 0.72);
}

.hero-title,
.section-title,
.oversized-display {
  margin: 0;
  font-family: var(--font-display);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero-title {
  max-width: 12.8ch;
  font-size: clamp(4.05rem, 6.8vw, 5.9rem);
  font-weight: 600;
  line-height: 0.92;
}

.hero-body {
  max-width: 27rem;
  margin: 1.55rem 0 0;
  font-size: 0.86rem;
  color: var(--text-subtle);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.9rem;
}

.hero-visual {
  position: relative;
  min-height: 650px;
  isolation: isolate;
}

.architectural-panel {
  position: absolute;
  inset: -7.2rem -13vw 0 -1%;
  z-index: 1;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(8, 16, 24, 0), rgba(8, 16, 24, 0.2)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(217, 198, 175, 0.22));
  border: 1px solid rgba(10, 14, 18, 0.06);
  overflow: hidden;
  box-shadow: none;
  clip-path: ellipse(47% 70% at 66% 47%);
}

.architectural-panel::before,
.architectural-panel::after {
  content: "";
  position: absolute;
  inset: 0;
}

.architectural-panel::before {
  background:
    repeating-linear-gradient(64deg, rgba(10, 14, 18, 0.12) 0 1px, transparent 1px 20px),
    linear-gradient(115deg, rgba(255, 255, 255, 0.3), transparent 40%),
    linear-gradient(180deg, rgba(8, 16, 24, 0.01), rgba(8, 16, 24, 0.14));
  opacity: 0.88;
}

.architectural-panel::after {
  background:
    linear-gradient(165deg, transparent 0 52%, rgba(8, 16, 24, 0.32) 52% 67%, rgba(8, 16, 24, 0.16) 67% 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 40%);
  opacity: 0.78;
}

.panel-frame,
.panel-column,
.panel-arch,
.panel-line {
  position: absolute;
}

.panel-frame-a {
  inset: 11% 8% 7% 39%;
  border: 1px solid rgba(8, 16, 24, 0.1);
}

.panel-frame-b {
  inset: 18% 22% 9% 55%;
  border-left: 1px solid rgba(8, 16, 24, 0.09);
  border-right: 1px solid rgba(8, 16, 24, 0.08);
}

.panel-column {
  bottom: 0;
  left: 56%;
  width: 16%;
  height: 68%;
  background: linear-gradient(180deg, rgba(8, 16, 24, 0.08), rgba(8, 16, 24, 0.42));
  box-shadow: -30px 0 60px rgba(8, 16, 24, 0.08);
}

.panel-arch {
  inset: -5% 4% auto 13%;
  height: 106%;
  border: 1px solid rgba(8, 16, 24, 0.1);
  border-bottom: none;
  border-top-left-radius: 620px;
  border-top-right-radius: 620px;
}

.panel-line {
  width: 170%;
  height: 1px;
  left: -36%;
  bottom: 16%;
  background: linear-gradient(90deg, transparent, rgba(8, 16, 24, 0.2), transparent);
  transform: rotate(-20deg);
}

@media screen and (min-width: 1400px) {
  .hero-person {
    right: -15% !important;
  }
}

@media screen and (min-width: 1920px) {
  .hero-person {
    right: -25% !important;
  }
}

.hero-person {
  position: absolute;
  right: 0%;
  bottom: 0;
  z-index: 3;
  width: min(40vw, 1000px);
  height: auto;
  max-width: none;
  filter: grayscale(0.72) contrast(1.08) saturate(0.55);
  transform: translateX(0);
  transform-origin: bottom center;
}

.hero-green-mass {
  position: absolute;
  right: -20vw;
  bottom: 0;
  z-index: 4;
  width: min(40vw, 560px);
  height: 37%;
  border-top-left-radius: 100% 96%;
  background:
    linear-gradient(180deg, rgba(86, 110, 87, 0.94), rgba(8, 16, 24, 0.75)),
    var(--accent-moss);
  opacity: 0.96;
}

.hero-green-mass::before {
  content: "";
  position: absolute;
  inset: 20% -6% auto 5%;
  height: 42%;
  border-top-left-radius: 100% 90%;
  border-top: 1px solid rgba(245, 241, 232, 0.08);
  background: rgba(8, 16, 24, 0.08);
}

.metric-card {
  position: absolute;
  left: 13%;
  top: 19%;
  z-index: 5;
  width: min(282px, 47%);
  padding: 1.35rem 1.45rem;
  border-radius: 12px;
  background: rgba(245, 241, 232, 0.94);
  border: 1px solid rgba(10, 14, 18, 0.07);
  box-shadow: 0 30px 70px rgba(10, 14, 18, 0.16);
}

.metric-card-label,
.trusted-label,
.case-label,
.service-index,
.step-index,
.form-note {
  margin: 0;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.metric-card-label,
.service-index,
.step-index,
.form-note,
.case-label {
  color: var(--text-muted);
}

.metric-value {
  margin-top: 1rem;
  font-size: clamp(3rem, 6vw, 4.6rem);
  line-height: 0.9;
  font-family: var(--font-display);
  color: var(--text-dark);
}

.metric-copy {
  margin: 0.8rem 0 1.3rem;
  color: var(--text-subtle);
}

.metric-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.metric-grid div {
  position: relative;
  min-height: 58px;
  padding: 0.25rem 0 0.85rem 3.25rem;
  border-bottom: 1px solid rgba(10, 14, 18, 0.08);
}

.metric-grid div:last-child {
  border-bottom: 0;
  padding-bottom: 0.25rem;
}

.metric-grid i {
  position: absolute;
  left: 0;
  top: 0.42rem;
  width: 28px;
  color: var(--accent-moss);
  font-size: 1.45rem;
  line-height: 1;
  text-align: center;
}

.metric-grid strong {
  display: block;
  font-size: 1.28rem;
  color: var(--text-dark);
  line-height: 1.05;
}

.metric-grid span {
  color: var(--text-muted);
  font-size: 0.66rem;
}

.shape-layer {
  pointer-events: none;
  position: absolute;
  inset: 0;
}

.shape-circle,
.shape-arc,
.shape-disc,
.shape-orbit-dot,
.shape-grid {
  position: absolute;
}

.shape-circle {
  border-radius: 50%;
  border: 1px solid rgba(10, 14, 18, 0.09);
}

.shape-circle-xl {
  width: min(53vw, 760px);
  aspect-ratio: 1;
  top: -32%;
  right: 2.8%;
  border-color: rgba(10, 14, 18, 0.105);
}

.shape-disc {
  width: clamp(136px, 11vw, 176px);
  aspect-ratio: 1;
  right: 41.2%;
  top: 16.5%;
  border-radius: 50%;
  background: rgba(201, 120, 78, 0.9);
  box-shadow: 0 24px 60px rgba(201, 120, 78, 0.18);
}

.shape-arc {
  border-radius: 999px;
  border: 1px solid rgba(10, 14, 18, 0.12);
}

.shape-arc-hero {
  width: min(68vw, 920px);
  height: min(68vw, 920px);
  top: 16%;
  left: 42%;
  right: auto;
  border-color: rgba(10, 14, 18, 0.13);
}

.shape-orbit-dot {
  width: 25px;
  aspect-ratio: 1;
  left: 41.2%;
  right: auto;
  top: 70.5%;
  border-radius: 50%;
  background: var(--accent-terracotta);
  box-shadow: 0 0 0 8px rgba(244, 239, 231, 0.72);
}

.shape-grid {
  width: 118px;
  height: 142px;
  right: 1.6%;
  top: 23%;
  background-image: radial-gradient(rgba(10, 14, 18, 0.18) 1px, transparent 0);
  background-size: 14px 14px;
  opacity: 0.26;
}
.logo-marquee {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.logo-track {
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.logo-group {
  display: flex;
  gap: 2.4rem;
  padding-right: 2.4rem;
  flex-shrink: 0;
}

.logo-group span {
  white-space: nowrap;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: rgba(10, 14, 18, 0.52);
}

/* pause khi hover */
.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.trusted-shell {
  display: grid;
  grid-template-columns: 0.9fr 2fr;
  gap: 1.8rem;
  align-items: center;
  border-top: 1px solid rgba(10, 14, 18, 0.1);
  border-bottom: 1px solid rgba(10, 14, 18, 0.1);
  padding: 0.85rem 0;
  overflow:hidden;
}

.trusted-label {
  color: var(--text-muted);
  margin:0;
}
@media (max-width: 768px) {
  .trusted-shell {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .logo-group {
    gap: 1.8rem;
    padding-right: 1.8rem;
  }

  .logo-track {
    animation-duration: 22s;
  }
}
.logo-row {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 1rem;
  align-items: center;
  text-align: center;
  color: rgba(10, 14, 18, 0.52);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.achievement-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
  gap: 1.2rem;
  align-items: stretch;
}

.section-title {
  font-size: clamp(2.2rem, 4.8vw, 4rem);
  font-weight: 600;
}

.section-title-light {
  color: var(--text-light);
}

.achievement-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-left: 1px solid var(--border-dark);
  border-top: 1px solid var(--border-dark);
}

.achievement-item {
  padding: 1.7rem 1.5rem;
  border-right: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  border-top: 0;
}

.achievement-item strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 0.95;
}

.achievement-item span {
  color: rgba(245, 241, 232, 0.72);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.shape-arc-band {
  width: 58vw;
  height: 58vw;
  left: 52%;
  top: -32%;
  border-color: rgba(245, 241, 232, 0.08);
}

.services-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
}

.services-heading {
  position: relative;
  margin-left: -0.05em;
  overflow: hidden;
}

.oversized-display {
  font-size: clamp(5rem, 16vw, 10rem);
  color: rgba(245, 241, 232, 0.95);
  line-height: 0.8;
  transform: translateX(-0.1em);
  text-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  padding-left: 20px;
}

.oversized-display span {
  color: var(--accent-terracotta);
}

.services-content {
  position: relative;
  z-index: 1;
  padding-top: 0.8rem;
}

.services-intro {
  max-width: 32rem;
  margin: 0 0 1.4rem;
  color: rgba(245, 241, 232, 0.7);
  font-size: 0.82rem;
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  position: relative;
}

.service-card-grid::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(245, 241, 232, 0.2), rgba(245, 241, 232, 0.04));
}

.service-card {
  min-height: 210px;
  padding: 1.2rem;
  border-radius: 14px;
  border: 1px solid rgba(245, 241, 232, 0.14);
  background: rgba(255, 255, 255, 0.03);
  transition: transform var(--transition), border-color var(--transition), opacity var(--transition), background-color var(--transition);
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(245, 241, 232, 0.28);
  background: rgba(255, 255, 255, 0.05);
}

.service-card h3 {
  max-width: 14ch;
  margin: 0.8rem 0 0.85rem;
  font-size: clamp(1.05rem, 1.2vw, 1.3rem);
  line-height: 1.05;
}

.service-card p:last-child {
  margin: 0;
  max-width: 28ch;
  color: rgba(245, 241, 232, 0.68);
  font-size: 0.78rem;
}

.shape-circle-services {
  width: min(62vw, 980px);
  aspect-ratio: 1;
  left: -24%;
  bottom: -44%;
  border-color: rgba(245, 241, 232, 0.08);
}

.shape-arc-services {
  width: min(78vw, 1280px);
  height: min(78vw, 1280px);
  right: -26%;
  top: 12%;
  border-color: rgba(245, 241, 232, 0.08);
}

.shape-grid-services {
  left: 27%;
  top: 62%;
  background-image: radial-gradient(rgba(245, 241, 232, 0.2) 1px, transparent 0);
  opacity: 0.16;
}

.section-heading {
  max-width: 54rem;
  margin-bottom: 1.1rem;
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.section-aside {
  max-width: 26rem;
  margin: 0;
  color: var(--text-subtle);
}

.approach-section {
  position: relative;
  overflow: hidden;
  background: var(--bg-light);
}

.approach-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 440px) minmax(0, 1fr);
  gap: clamp(48px, 5vw, 88px);
  align-items: start;
  padding: clamp(3rem, 5vw, 4.5rem) 0;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.approach-intro {
  position: relative;
  z-index: 2;
  max-width: 440px;
  min-width: 0;
}

.approach-intro .section-title {
  max-width: 9.8em;
  font-size: clamp(2.6rem, 4.4vw, 4.6rem);
  line-height: 0.96;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.approach-intro .button {
  margin-top: 1.8rem;
  background: rgba(255, 255, 255, 0.28);
}

.approach-steps {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 2.8vw, 44px);
  min-width: 0;
  max-width: 100%;
}

.approach-line {
  position: absolute;
  left: 24px;
  right: 24px;
  top: 23px;
  height: 2px;
  background-image: linear-gradient(90deg,
      rgba(10, 14, 18, 0.42) 50%,
      transparent 0);
  background-size: 8px 2px;
  background-repeat: repeat-x;
  pointer-events: none;
}

.approach-step {
  position: relative;
  min-width: 0;
  padding-top: 4.35rem;
}

.step-node {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-dark-alt);
  color: var(--text-light);
  border: 3px solid var(--bg-light);
  box-shadow: 0 0 0 1px rgba(10, 14, 18, 0.22);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
}

.step-node::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: 1px;
  height: 32px;
  background: rgba(10, 14, 18, 0.3);
}

.approach-step h3 {
  margin: 0 0 0.65rem;
  font-size: clamp(1rem, 1.1vw, 1.18rem);
  line-height: 1.15;
  white-space: nowrap;
}

.approach-step p {
  margin: 0;
  max-width: 15.5rem;
  color: var(--text-subtle);
  font-size: clamp(0.82rem, 0.88vw, 0.95rem);
  line-height: 1.65;
  word-break: normal;
  overflow-wrap: normal;
}

.approach-crop {
  position: absolute;
  right: max(-180px, -13vw);
  bottom: -46%;
  z-index: 1;
  width: min(28vw, 380px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--accent-moss);
  opacity: 0.95;
}

@media (max-width: 1100px) {
  .approach-band {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .approach-intro,
  .approach-intro .section-title {
    max-width: 720px;
  }

  .approach-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 3rem;
  }
}

@media (max-width: 640px) {
  .approach-band {
    padding: 3rem 0;
  }

  .approach-steps {
    grid-template-columns: 1fr;
  }

  .approach-line {
    display: none;
  }

  .approach-step h3 {
    white-space: normal;
  }
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.filter-chip {
  padding: 0.5rem 0.75rem;
  min-height: 36px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(10, 14, 18, 0.1);
  background: rgba(255, 255, 255, 0.45);
  color: var(--text-muted);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--transition), border-color var(--transition), background-color var(--transition), transform var(--transition);
}

.filter-chip:hover,
.filter-chip:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(10, 14, 18, 0.28);
  color: var(--text-dark);
}

.filter-chip.is-active {
  background: var(--text-dark);
  color: var(--text-light);
  border-color: var(--text-dark);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.case-card {
  display: grid;
  grid-template-rows: 148px auto;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(10, 14, 18, 0.08);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
}

.case-card:hover,
.case-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(10, 14, 18, 0.12);
}

.case-card.is-hidden {
  display: none;
}

.case-card-featured {
  grid-row: auto;
}

.case-visual {
  background-color: var(--accent-sand);
}

.visual-real-estate {
  background:
    linear-gradient(180deg, rgba(8, 16, 24, 0.18), rgba(8, 16, 24, 0.45)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 55%),
    linear-gradient(90deg, rgba(217, 198, 175, 0.18) 0 34%, transparent 34% 38%, rgba(217, 198, 175, 0.18) 38% 62%, transparent 62% 66%, rgba(217, 198, 175, 0.18) 66% 100%),
    linear-gradient(180deg, #7e8b93, #303b44);
}

.visual-beauty {
  background:
    radial-gradient(circle at 70% 20%, rgba(201, 120, 78, 0.42), transparent 20%),
    linear-gradient(180deg, rgba(8, 16, 24, 0.08), rgba(8, 16, 24, 0.36)),
    linear-gradient(135deg, #d4c0b1, #93867c);
}

.visual-fnb {
  background:
    linear-gradient(180deg, rgba(8, 16, 24, 0.12), rgba(8, 16, 24, 0.4)),
    radial-gradient(circle at 24% 34%, rgba(217, 198, 175, 0.32), transparent 18%),
    linear-gradient(135deg, #6c746c, #283038);
}

.visual-retail {
  background:
    linear-gradient(180deg, rgba(8, 16, 24, 0.08), rgba(8, 16, 24, 0.44)),
    linear-gradient(90deg, rgba(217, 198, 175, 0.12) 0 10%, transparent 10% 16%, rgba(217, 198, 175, 0.12) 16% 30%, transparent 30% 100%),
    radial-gradient(circle at 78% 28%, rgba(201, 120, 78, 0.28), transparent 22%),
    linear-gradient(135deg, #16212a, #49555b);
}

.case-content {
  padding: 1.1rem 1.1rem 1.2rem;
}

.case-content h3,
.insight-card h3 {
  margin: 0.55rem 0 0.8rem;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.15;
}

.case-content p:not(.case-label),
.insight-card p:not(.case-label),
.cta-copy p:last-child {
  color: var(--text-subtle);
}

.metric-list {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin: 0.75rem 0 0.95rem;
}

.metric-list span {
  padding-top: 0.45rem;
  border-top: 1px solid rgba(10, 14, 18, 0.08);
  font-size: 0.68rem;
  color: var(--text-dark);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-moss);
  transition: transform var(--transition), color var(--transition);
}

.text-link::after {
  content: "+";
}

.text-link:hover,
.text-link:focus-visible {
  transform: translateX(4px);
  color: var(--accent-terracotta);
}

.text-link-light {
  color: rgba(245, 241, 232, 0.82);
}

.text-link-light:hover,
.text-link-light:focus-visible {
  color: var(--accent-sand);
}

/* Work section header — two-row layout */
.work-section-header {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.work-section-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.industries-section {
  background: rgba(255, 255, 255, 0.28);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.industry-grid span {
  padding: 1.3rem 1.25rem;
  min-height: 56px;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(10, 14, 18, 0.16);
  font-size: 1rem;
}

.insight-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.5rem;
}

.insight-card {
  padding: 1.8rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(10, 14, 18, 0.09);
}

.insight-card-featured {
  grid-row: span 2;
  background:
    linear-gradient(180deg, rgba(201, 120, 78, 0.08), rgba(255, 255, 255, 0.6)),
    rgba(255, 255, 255, 0.58);
}

.closing-cta {
  padding-bottom: calc(var(--section-space) - 0.5rem);
}

.cta-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.85fr);
  gap: clamp(2.25rem, 5vw, 4.5rem);
  align-items: start;
}

.cta-copy {
  position: relative;
  z-index: 1;
  max-width: 34rem;
}

.cta-copy p:last-child {
  color: rgba(245, 241, 232, 0.72);
  font-size: 0.92rem;
}

.cta-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1.5rem;
  margin-top: 1.6rem;
  color: rgba(245, 241, 232, 0.78);
  font-size: 0.72rem;
}

.cta-points span {
  position: relative;
  padding-left: 1.2rem;
}

.cta-points span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.32rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  border: 1px solid rgba(217, 198, 175, 0.72);
  background: rgba(86, 110, 87, 0.24);
}

.contact-form {
  position: relative;
  z-index: 1;
  padding: 2rem;
  border-radius: 32px;
  background: rgba(245, 241, 232, 0.09);
  border: 1px solid rgba(245, 241, 232, 0.14);
  backdrop-filter: blur(12px);
}

.contact-form label {
  display: block;
  margin-bottom: 1rem;
}

.contact-form span {
  display: block;
  margin-bottom: 0.45rem;
  color: rgba(245, 241, 232, 0.78);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem 1rem 0.95rem;
  border-radius: 20px;
  border: 1px solid rgba(245, 241, 232, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-light);
  transition: border-color var(--transition), background-color var(--transition);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(245, 241, 232, 0.38);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(245, 241, 232, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.form-note {
  margin-top: 0.9rem;
  color: rgba(245, 241, 232, 0.54);
}

.form-feedback {
  min-height: 1.5rem;
  margin: 0.5rem 0 0;
  color: var(--accent-sand);
}

.shape-circle-cta {
  width: min(52vw, 720px);
  aspect-ratio: 1;
  right: -14%;
  bottom: -30%;
  border-color: rgba(245, 241, 232, 0.12);
}

.shape-arc-cta {
  width: 60vw;
  height: 60vw;
  right: -8%;
  top: -12%;
  border-color: rgba(245, 241, 232, 0.09);
}

.shape-grid-cta {
  right: 10%;
  top: 18%;
  background-image: radial-gradient(rgba(245, 241, 232, 0.24) 1px, transparent 0);
  opacity: 0.18;
}

.site-footer {
  padding: 2rem 0 2.8rem;
  border-top: 1px solid rgba(245, 241, 232, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.brand-footer {
  color: var(--text-light);
}

.footer-copy {
  max-width: 25rem;
  margin: 1rem 0 0;
  color: rgba(245, 241, 232, 0.62);
}

.site-footer h3 {
  margin: 0 0 0.9rem;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.62);
}

.site-footer a {
  display: block;
  margin: 0.45rem 0;
  color: rgba(245, 241, 232, 0.86);
  transition: color var(--transition);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--accent-sand);
}

@media (max-width: 1100px) {
  .site-nav {
    position: fixed;
    z-index: 60;
    top: 92px;
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 28px;
    background: var(--bg-light);
    border: 1px solid rgba(10, 14, 18, 0.08);
    box-shadow: 0 32px 80px rgba(10, 14, 18, 0.18);
    backdrop-filter: blur(18px);
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity var(--transition), transform var(--transition);
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 0.85rem 0.5rem;
  }

  .nav-cta {
    margin: 0.5rem 0 0;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-grid,
  .achievement-grid,
  .services-grid,
  .cta-grid,
  .trusted-shell,
  .work-grid,
  .insight-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-heading-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .work-section-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .hero-visual {
    min-height: 560px;
  }

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

  .section-padding {
    padding: clamp(5rem, 8vw, 7rem) 0;
  }

  .section-padding-sm {
    padding: clamp(2.25rem, 4.5vw, 3.2rem) 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    padding-bottom: 0;
    padding-top:0;
  }

  .hero-title {
    max-width: 12.8ch;
    font-size: clamp(4rem, 10vw, 5.8rem);
  }

  .architectural-panel {
    inset: 0 -18vw 0 12%;
    clip-path: ellipse(54% 72% at 67% 50%);
  }

  .metric-card {
    left: 12%;
    right: auto;
    top: 15%;
    width: min(260px, 46%);
  }

  .hero-person {
    right: 20%;
    width: min(27vw, 250px);
  }

  .hero-green-mass {
    right: -32vw;
    width: min(70vw, 620px);
    height: 42%;
  }

  .shape-circle-xl {
    width: min(76vw, 800px);
    top: 38%;
    right: -12%;
  }

  .shape-arc-hero {
    width: min(86vw, 820px);
    height: min(86vw, 820px);
    left: 23%;
    right: auto;
    top: 45%;
  }

  .shape-disc {
    left: 57%;
    right: auto;
    top: 51%;
  }

  .shape-orbit-dot {
    left: 34%;
    right: auto;
    top: 82%;
  }

  .service-card-grid,
  .achievement-list,
  .industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }


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

  .logo-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .services-content {
    padding-top: 0;
  }

  .oversized-display {
    font-size: clamp(8rem, 28vw, 14rem);
    transform: translateX(-0.06em);
  }

  .shape-circle-services {
    width: min(88vw, 920px);
    left: -32%;
    bottom: -40%;
  }

  .shape-arc-services {
    width: min(110vw, 1200px);
    height: min(110vw, 1200px);
    right: -42%;
    top: 18%;
  }

  .approach-band {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 2.25rem;
    padding: 4rem 0 3rem;
  }

  .approach-intro {
    max-width: 32rem;
  }

  .approach-intro .section-title {
    max-width: 9em;
  }

  .approach-steps {
    gap: clamp(1rem, 2.4vw, 1.5rem);
  }

  .approach-crop {
    width: min(42vw, 360px);
    right: -18%;
    bottom: -32%;
  }
}

@media (min-width: 861px) and (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(1rem, 2vw, 1.7rem);
    min-height: 560px;
  }

  .hero-copy {
    padding: clamp(3.6rem, 6vw, 4.8rem) 0 2rem;
  }

  .hero-title {
    max-width: 13.4ch;
    font-size: clamp(3.15rem, 5.5vw, 4.25rem);
  }

  .hero-body {
    max-width: 23rem;
  }

  .hero-visual {
    min-height: 560px;
  }

  .architectural-panel {
    inset: -5.8rem -18vw 0 -9%;
    clip-path: ellipse(48% 70% at 65% 48%);
  }

  .metric-card {
    left: 8%;
    top: 18%;
    width: min(250px, 58%);
  }

  .hero-person {
    right: 17%;
    width: min(26vw, 250px);
  }

  .hero-green-mass {
    right: -32vw;
    width: min(64vw, 620px);
    height: 45%;
  }

  .shape-circle-xl {
    width: min(58vw, 680px);
    top: -27%;
    right: -4%;
  }

  .shape-arc-hero {
    width: min(78vw, 820px);
    height: min(78vw, 820px);
    left: 38%;
    top: 20%;
  }

  .shape-disc {
    left: auto;
    right: 36%;
    top: 15.5%;
  }

  .shape-orbit-dot {
    left: 40%;
    top: 69%;
  }

  .shape-grid {
    top: 23%;
    right: 1.2%;
  }
}

@media (max-width: 900px) {
  .approach-band {
    gap: 2rem;
  }

  .approach-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 2.25rem;
  }

  .approach-line {
    display: none;
  }

  .approach-step {
    padding-top: 3.75rem;
  }
}

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

  .hero-copy {
    padding-bottom: 0;
  }

  .hero-visual {
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 92px;
  }

  section[id],
  footer[id] {
    scroll-margin-top: 22px;
  }

  .header-shell {
    min-height: 78px;
  }

  .container {
    width: min(calc(100% - 1.5rem), var(--container));
  }

  .section-padding {
    padding: clamp(0.5rem, 1vw, 0.8rem) 0;
  }

  .section-padding-sm {
    padding: clamp(2rem, 6vw, 2.8rem) 0;
  }

  .hero-title {
    max-width: 100%;
    font-size: clamp(2.75rem, 11.4vw, 3.85rem);
    line-height: 0.96;
  }

  .hero-body,
  .services-intro,
  .section-aside {
    font-size: 1rem;
  }

  .hero-visual {
    min-height: 390px;
  }

  .architectural-panel {
    inset: 0.5rem -42vw 0 12%;
    clip-path: ellipse(62% 72% at 66% 50%);
  }

  .metric-card {
    position: absolute;
    left: 0;
    top: 4.25rem;
    width: min(218px, 66%);
    max-width: none;
    padding: 1rem;
    margin-top: 0;
  }

  .metric-grid div {
    min-height: 50px;
    padding-left: 2.7rem;
  }

  .metric-grid strong {
    font-size: 1.05rem;
  }

  .shape-circle-xl {
    width: 124vw;
    top: 48%;
    right: -42%;
  }

  .shape-arc-hero {
    width: 118vw;
    height: 118vw;
    top: 54%;
    left: 18%;
    right: auto;
  }

  .shape-disc {
    width: 96px;
    left: 54%;
    right: auto;
    top: 58%;
  }

  .shape-orbit-dot {
    width: 18px;
    left: 32%;
    right: auto;
    top: 84%;
    box-shadow: 0 0 0 6px rgba(244, 239, 231, 0.72);
  }

  .shape-grid {
    top: 14%;
    right: -4%;
  }

  .hero-person {
    right: 5%;
    bottom: 0;
    width: min(54vw, 232px);
  }

  .hero-green-mass {
    right: -46vw;
    width: 84vw;
    height: 36%;
  }

  .oversized-display {
    font-size: clamp(5.4rem, 23vw, 8.6rem);
    line-height: 0.82;
    transform: translateX(-0.04em);
  }

  .service-card-grid,
  .achievement-list,
  .industry-grid,
  .metric-grid,
  .work-grid,
  .cta-points {
    grid-template-columns: 1fr;
  }

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

  .services-intro {
    margin-bottom: 2.25rem;
  }

  .service-card-grid {
    gap: 1.3rem;
  }

  .service-card {
    min-height: auto;
    padding: 1.2rem 1.2rem 1.1rem;
  }

  .service-card h3,
  .service-card p:last-child {
    max-width: none;
  }

  .shape-circle-services {
    width: 130vw;
    left: -54%;
    bottom: -36%;
  }

  .shape-arc-services {
    width: 152vw;
    height: 152vw;
    right: -82%;
    top: 22%;
  }

  .shape-grid-services {
    left: auto;
    right: 8%;
    top: 72%;
  }

  .approach-band {
    padding: 3.5rem 0 2.5rem;
  }

  .approach-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .approach-line {
    display: block;
    left: 24px;
    right: auto;
    top: 24px;
    bottom: 0.5rem;
    width: 2px;
    height: auto;
    background-image: linear-gradient(180deg, rgba(10, 14, 18, 0.4) 50%, transparent 0);
    background-size: 2px 8px;
    background-repeat: repeat-y;
  }

  .approach-step {
    padding: 0 0 0 4.25rem;
    min-height: 5rem;
  }

  .step-node {
    width: 48px;
    height: 48px;
  }

  .step-node::after {
    display: none;
  }

  .approach-crop {
    width: 68vw;
    right: -44%;
    bottom: -22%;
    opacity: 0.9;
  }

  .case-card {
    grid-template-rows: 160px auto;
  }

  .case-card-featured {
    grid-row: auto;
  }

  .insight-card-featured {
    grid-row: auto;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .achievement-item,
  .case-content,
  .insight-card {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .achievement-item {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .insight-card {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}