:root {
  --charcoal: #151411;
  --charcoal-2: #1f1b17;
  --espresso: #2b211b;
  --warm-panel: #27211b;
  --warm-line: rgba(216, 193, 160, 0.22);
  --sand: #d8c1a0;
  --sand-2: #b9996d;
  --ivory: #f4eadc;
  --muted: #b8a995;
  --deep-green: #2f4a3f;
  --wood: #8a6244;
  --max: 1180px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ivory);
  background: var(--charcoal);
  font-family: Optima, "Avenir Next", "Segoe UI", system-ui, sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(216, 193, 160, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216, 193, 160, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.42;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, transparent, var(--sand), #f3dfbe);
  box-shadow: 0 0 18px rgba(216, 193, 160, 0.38);
}

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

button,
input,
textarea {
  font: inherit;
}

button,
a.button,
.menu-toggle {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 12px;
  z-index: 20;
  padding: 10px 14px;
  color: var(--charcoal);
  background: var(--sand);
  transform: translateY(-140%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 12;
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 28px;
  align-items: center;
  min-height: 76px;
  padding: 0 34px;
  background: rgba(21, 20, 17, 0.86);
  border-bottom: 1px solid var(--warm-line);
  backdrop-filter: blur(18px);
}

.brand {
  display: grid;
  gap: 2px;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  letter-spacing: 0;
}

.brand-location {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.desktop-nav a,
.footer-links a {
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.footer-links a:hover {
  color: var(--ivory);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--warm-line);
  border-radius: 999px;
}

.lang-button {
  min-width: 42px;
  min-height: 34px;
  padding: 0 12px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.lang-button.is-active {
  color: var(--charcoal);
  background: var(--sand);
}

.header-cta {
  padding: 11px 16px;
  color: var(--charcoal);
  background: var(--sand);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  transition: background 180ms ease, transform 180ms ease;
}

.header-cta:hover,
.button-primary:hover {
  background: #ebd5b5;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--warm-line);
  border-radius: var(--radius);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--ivory);
}

.mobile-nav {
  position: fixed;
  inset: 76px 16px auto;
  z-index: 11;
  display: none;
  grid-template-columns: 1fr;
  gap: 6px;
  padding: 12px;
  background: rgba(31, 27, 23, 0.96);
  border: 1px solid var(--warm-line);
  border-radius: var(--radius);
  backdrop-filter: blur(18px);
}

.mobile-nav.is-open {
  display: grid;
}

.mobile-nav a {
  padding: 12px;
  color: var(--muted);
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: calc(100vh - 76px);
  overflow: hidden;
}

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

.hero-media {
  transform: translateY(var(--hero-drift, 0));
  transition: transform 120ms linear;
}

.generated-hero {
  background:
    radial-gradient(circle at 76% 18%, rgba(216, 193, 160, 0.26), transparent 16%),
    radial-gradient(circle at 84% 36%, rgba(47, 74, 63, 0.32), transparent 18%),
    linear-gradient(118deg, #171410 8%, #201913 34%, #2a1f18 58%, #16130f 100%);
}

.generated-hero::before,
.generated-hero::after {
  content: "";
  position: absolute;
  inset: 0;
}

.generated-hero::before {
  background:
    linear-gradient(rgba(244, 234, 220, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 234, 220, 0.04) 1px, transparent 1px);
  background-size: 82px 82px;
  opacity: 0.44;
  mask-image: linear-gradient(120deg, transparent 14%, black 42%, black 100%);
}

.generated-hero::after {
  background:
    radial-gradient(circle at 72% 68%, rgba(216, 193, 160, 0.15), transparent 20%),
    linear-gradient(0deg, rgba(10, 10, 10, 0.34), transparent 42%);
}

.hero-beam,
.hero-column,
.hero-slab,
.hero-waterline,
.hero-reflection {
  position: absolute;
}

.hero-beam {
  width: 44vw;
  max-width: 620px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244, 234, 220, 0.4), transparent);
  filter: blur(0.2px);
  transform: rotate(-17deg);
  opacity: 0.7;
}

.beam-1 { right: -4%; top: 22%; }
.beam-2 { right: -1%; top: 43%; opacity: 0.42; }
.beam-3 { right: 8%; top: 65%; opacity: 0.24; }

.hero-structure {
  position: absolute;
  right: 6%;
  bottom: 6%;
  width: min(48vw, 700px);
  height: min(62vh, 560px);
}

.hero-column {
  bottom: 10%;
  width: 2px;
  background: linear-gradient(180deg, rgba(244, 234, 220, 0.72), rgba(216, 193, 160, 0.12));
  box-shadow: 0 0 18px rgba(216, 193, 160, 0.12);
}

.c1 { left: 10%; height: 56%; }
.c2 { left: 34%; height: 64%; }
.c3 { left: 60%; height: 72%; }
.c4 { left: 84%; height: 80%; }

.hero-slab {
  left: 4%;
  height: 1px;
  background: linear-gradient(90deg, rgba(244, 234, 220, 0.08), rgba(244, 234, 220, 0.72), rgba(244, 234, 220, 0.08));
}

.s1 { top: 22%; width: 74%; transform: skewX(-26deg); }
.s2 { top: 48%; width: 82%; transform: skewX(-26deg); }
.s3 { top: 76%; width: 90%; transform: skewX(-26deg); }

.hero-waterline {
  left: 0;
  right: 0;
  bottom: 3%;
  height: 18%;
  background:
    linear-gradient(180deg, rgba(216, 193, 160, 0.04), rgba(21, 20, 17, 0.58)),
    repeating-linear-gradient(90deg, rgba(244, 234, 220, 0.08) 0 1px, transparent 1px 24px);
  border-top: 1px solid rgba(244, 234, 220, 0.16);
}

.hero-reflection {
  right: 10%;
  bottom: 0;
  width: min(38vw, 460px);
  height: 38%;
  background: linear-gradient(180deg, rgba(216, 193, 160, 0.14), transparent 62%);
  filter: blur(18px);
  transform: skewX(-28deg);
  opacity: 0.44;
}

.hero-canvas {
  z-index: 1;
  opacity: 0.72;
  mix-blend-mode: screen;
}

.hero-overlay {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(21, 20, 17, 0.92) 0%, rgba(21, 20, 17, 0.74) 43%, rgba(21, 20, 17, 0.34) 100%),
    linear-gradient(0deg, rgba(21, 20, 17, 0.96) 0%, rgba(21, 20, 17, 0.1) 44%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 90px 0 46px;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.42fr);
  gap: 40px;
  align-items: end;
}

.hero-instrument {
  align-self: end;
  padding: 18px;
  background: rgba(31, 27, 23, 0.48);
  border: 1px solid rgba(216, 193, 160, 0.28);
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px) saturate(1.1);
}

.instrument-header {
  display: grid;
  gap: 4px;
}

.instrument-header span {
  color: var(--sand-2);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.instrument-header strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 500;
}

.instrument-plan {
  position: relative;
  min-height: 250px;
  margin: 18px 0;
  overflow: hidden;
  background:
    linear-gradient(rgba(216, 193, 160, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216, 193, 160, 0.06) 1px, transparent 1px),
    rgba(21, 20, 17, 0.46);
  background-size: 28px 28px;
  border: 1px solid rgba(216, 193, 160, 0.16);
  border-radius: var(--radius);
}

.instrument-plan svg {
  position: absolute;
  inset: 18px;
  width: calc(100% - 36px);
  height: calc(100% - 36px);
  fill: none;
  stroke: rgba(244, 234, 220, 0.68);
  stroke-width: 2;
  stroke-linecap: square;
  filter: drop-shadow(0 0 14px rgba(216, 193, 160, 0.16));
}

.instrument-plan path {
  stroke-dasharray: 620;
  stroke-dashoffset: 620;
  animation: drawPlan 4.8s ease forwards infinite;
}

.plan-node {
  position: absolute;
  z-index: 2;
  width: 11px;
  height: 11px;
  border: 1px solid var(--sand);
  background: rgba(21, 20, 17, 0.8);
  transform: rotate(45deg);
  box-shadow: 0 0 24px rgba(216, 193, 160, 0.4);
}

.n1 { left: 14%; top: 24%; }
.n2 { right: 18%; top: 24%; }
.n3 { left: 32%; bottom: 20%; }
.n4 { right: 18%; bottom: 20%; }

.hero-instrument dl {
  display: grid;
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(216, 193, 160, 0.14);
  border-radius: var(--radius);
  background: rgba(216, 193, 160, 0.12);
}

.hero-instrument dl div {
  padding: 12px;
  background: rgba(21, 20, 17, 0.54);
}

.hero-instrument dt {
  color: var(--ivory);
  font-size: 14px;
  font-weight: 800;
}

.hero-instrument dd {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.section-kicker {
  margin: 0 0 14px;
  color: var(--sand-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.02;
}

h1 {
  max-width: 970px;
  font-size: clamp(48px, 7.8vw, 104px);
}

h2 {
  max-width: 820px;
  font-size: clamp(34px, 5vw, 64px);
}

h3 {
  font-size: 20px;
  line-height: 1.2;
}

.hero-subtitle,
.hero-support,
.intro-copy,
.section-heading p,
.section-grid p,
.contact-copy p {
  color: var(--muted);
  font-size: 18px;
}

.hero-subtitle {
  max-width: 720px;
  margin: 28px 0 0;
  color: #ecdfcb;
  font-size: clamp(19px, 2vw, 25px);
}

.hero-support {
  max-width: 640px;
  margin: 14px 0 0;
}

.hero-bullets,
.text-list {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  color: #e8dccb;
}

.hero-bullets li,
.text-list li {
  position: relative;
  padding-left: 22px;
}

.hero-bullets li::before,
.text-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border: 1px solid var(--sand);
  transform: rotate(45deg);
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button-primary {
  color: var(--charcoal);
  background: var(--sand);
}

.button-secondary {
  color: var(--ivory);
  border-color: var(--warm-line);
  background: rgba(255, 255, 255, 0.045);
}

.button-secondary:hover {
  transform: translateY(-1px);
  border-color: rgba(216, 193, 160, 0.52);
  background: rgba(255, 255, 255, 0.08);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  max-width: 990px;
  margin: 48px 0 0;
  overflow: hidden;
  border: 1px solid var(--warm-line);
  border-radius: var(--radius);
  background: var(--warm-line);
}

.trust-strip div {
  position: relative;
  padding: 18px;
  background: rgba(21, 20, 17, 0.78);
  overflow: hidden;
}

.trust-strip div::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-110%);
  background: linear-gradient(90deg, transparent, rgba(216, 193, 160, 0.16), transparent);
  animation: metricSweep 7s ease-in-out infinite;
}

.trust-strip dt {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ivory);
  font-size: 26px;
}

.trust-strip dd {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.section {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 92px 0;
}

.intro-section {
  padding-top: 112px;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.8fr);
  gap: 70px;
  align-items: start;
}

.intro-copy p:first-child,
.section-grid p:first-child {
  margin-top: 0;
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 34px;
}

.section-heading.narrow {
  max-width: 760px;
}

.signature-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 0.8fr);
  gap: 42px;
  align-items: center;
}

.signature-visual {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: rgba(39, 33, 27, 0.66);
  border: 1px solid var(--warm-line);
  border-radius: var(--radius);
}

.signature-visual::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(216, 193, 160, 0.18);
}

.jakarta-map {
  position: absolute;
  inset: 28px;
  background:
    radial-gradient(circle at 65% 28%, rgba(216, 193, 160, 0.18), transparent 19%),
    linear-gradient(rgba(216, 193, 160, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216, 193, 160, 0.045) 1px, transparent 1px);
  background-size: auto, 34px 34px, 34px 34px;
}

.jakarta-map svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: rgba(216, 193, 160, 0.42);
  stroke-width: 2;
}

.jakarta-map path:first-child,
.jakarta-map path:nth-child(2) {
  stroke: rgba(244, 234, 220, 0.66);
  stroke-dasharray: 640;
  stroke-dashoffset: 640;
  animation: drawPlan 6s ease forwards infinite;
}

.map-pin {
  position: absolute;
  z-index: 2;
  width: 14px;
  height: 14px;
  border: 1px solid var(--sand);
  background: rgba(216, 193, 160, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(216, 193, 160, 0.04), 0 0 28px rgba(216, 193, 160, 0.28);
  animation: pulsePin 2.8s ease-in-out infinite;
}

.pin-1 { left: 23%; top: 62%; }
.pin-2 { left: 54%; top: 48%; animation-delay: 0.4s; }
.pin-3 { right: 16%; top: 27%; animation-delay: 0.9s; }

.signature-copy p {
  color: var(--muted);
  font-size: 18px;
}

.signal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 28px;
}

.signal-grid span {
  padding: 15px 18px;
  color: var(--ivory);
  background: rgba(216, 193, 160, 0.07);
  border: 1px solid rgba(216, 193, 160, 0.16);
  border-radius: var(--radius);
}

.cards,
.image-card-grid,
.team-grid,
.audience-grid,
.project-grid {
  display: grid;
  gap: 16px;
}

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

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

.info-card,
.service-card,
.image-card,
.team-card,
.audience-grid article,
.operations-panel,
.contact-form {
  background: rgba(39, 33, 27, 0.72);
  border: 1px solid var(--warm-line);
  border-radius: var(--radius);
}

.info-card,
.service-card,
.audience-grid article {
  min-height: 210px;
  padding: 26px;
}

.info-card,
.service-card,
.image-card,
.team-card,
.project-card {
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.info-card:hover,
.service-card:hover,
.image-card:hover,
.team-card:hover,
.project-card:hover {
  transform: translateY(-3px);
  border-color: rgba(216, 193, 160, 0.48);
}

.card-index {
  display: block;
  margin-bottom: 40px;
  color: var(--sand-2);
  font-family: Georgia, "Times New Roman", serif;
}

.info-card p,
.service-card p,
.image-card p,
.team-card p {
  color: var(--muted);
}

.service-card {
  display: grid;
  align-content: space-between;
  min-height: 260px;
}

.service-card span {
  color: var(--sand);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
}

.delivery-map {
  display: grid;
  grid-template-columns: minmax(140px, 0.8fr) minmax(36px, 0.22fr) minmax(140px, 0.8fr) minmax(36px, 0.22fr) minmax(140px, 0.8fr) minmax(36px, 0.22fr) minmax(140px, 0.8fr);
  gap: 12px;
  align-items: center;
  margin-top: 22px;
  padding: 18px;
  background: rgba(21, 20, 17, 0.5);
  border: 1px solid var(--warm-line);
  border-radius: var(--radius);
}

.delivery-stage {
  min-height: 92px;
  padding: 16px;
  background: rgba(39, 33, 27, 0.7);
  border: 1px solid rgba(216, 193, 160, 0.15);
  border-radius: var(--radius);
}

.delivery-stage span {
  display: block;
  margin-bottom: 16px;
  color: var(--sand-2);
  font-family: Georgia, "Times New Roman", serif;
}

.delivery-stage strong {
  font-weight: 700;
}

.delivery-stage.active {
  border-color: rgba(216, 193, 160, 0.45);
  box-shadow: 0 0 36px rgba(216, 193, 160, 0.08);
}

.delivery-line {
  height: 1px;
  overflow: hidden;
  background: rgba(216, 193, 160, 0.16);
}

.delivery-line::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--sand), transparent);
  animation: lineTravel 2.6s ease-in-out infinite;
}

.operations {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.82fr);
  gap: 42px;
  align-items: stretch;
}

.operations-copy p {
  color: var(--muted);
  font-size: 18px;
}

.operations-panel {
  padding: 30px;
  background: #211b16;
}

.operations-orbit {
  position: relative;
  height: 280px;
  margin: 22px 0 26px;
  border: 1px solid rgba(216, 193, 160, 0.14);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 50%, rgba(216, 193, 160, 0.14), transparent 18%),
    linear-gradient(rgba(216, 193, 160, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216, 193, 160, 0.04) 1px, transparent 1px);
  background-size: auto, 32px 32px, 32px 32px;
  overflow: hidden;
}

.operations-orbit::before,
.operations-orbit::after {
  content: "";
  position: absolute;
  inset: 46px;
  border: 1px solid rgba(216, 193, 160, 0.16);
  border-radius: 50%;
}

.operations-orbit::after {
  inset: 78px;
  border-style: dashed;
  animation: orbitSpin 18s linear infinite;
}

.orbit-core,
.orbit-item {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border-radius: 999px;
}

.orbit-core {
  left: 50%;
  top: 50%;
  width: 116px;
  height: 116px;
  color: var(--charcoal);
  background: var(--sand);
  transform: translate(-50%, -50%);
  font-family: Georgia, "Times New Roman", serif;
  text-align: center;
}

.orbit-item {
  width: 82px;
  height: 40px;
  color: var(--ivory);
  background: rgba(21, 20, 17, 0.76);
  border: 1px solid rgba(216, 193, 160, 0.24);
  font-size: 12px;
}

.item-1 { left: 50%; top: 26px; transform: translateX(-50%); }
.item-2 { right: 28px; top: 50%; transform: translateY(-50%); }
.item-3 { left: 50%; bottom: 26px; transform: translateX(-50%); }
.item-4 { left: 28px; top: 50%; transform: translateY(-50%); }

.support-list {
  display: grid;
  gap: 8px;
  margin-top: 22px;
}

.support-list span {
  padding: 14px 16px;
  color: #eadbc7;
  background: rgba(216, 193, 160, 0.075);
  border: 1px solid rgba(216, 193, 160, 0.13);
  border-radius: var(--radius);
}

.closing-line {
  margin: 26px 0 0;
  color: var(--sand);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.25;
}

.image-card {
  overflow: hidden;
}

.split-visuals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  min-height: 260px;
  background: rgba(216, 193, 160, 0.12);
}

.cold-plunge-card .image-shell {
  min-height: 260px;
}

.image-card::before,
.team-card::before,
.project-card::before,
.info-card::before,
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(135deg, rgba(244, 234, 220, 0.12), transparent 42%);
  transition: opacity 220ms ease;
}

.image-card,
.team-card,
.info-card,
.service-card {
  position: relative;
  overflow: hidden;
}

.image-card:hover::before,
.team-card:hover::before,
.project-card:hover::before,
.info-card:hover::before,
.service-card:hover::before {
  opacity: 1;
}

.image-card h3,
.image-card p,
.team-card h3,
.team-card p {
  padding: 0 20px;
}

.image-card h3,
.team-card h3 {
  margin-top: 20px;
}

.image-card p,
.team-card p {
  margin-bottom: 22px;
}

.image-shell {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  background: #2a241f;
}

.image-shell::before,
.image-shell::after {
  content: "";
  position: absolute;
  inset: 0;
}

.image-shell::before {
  background:
    linear-gradient(135deg, rgba(216, 193, 160, 0.28), transparent 38%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 28px);
}

.image-shell::after {
  background: linear-gradient(0deg, rgba(21, 20, 17, 0.34), transparent 52%);
}

.image-shell img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  display: block;
}

.image-shell img.is-missing {
  display: none;
}

.architectural-placeholder::before {
  background:
    linear-gradient(125deg, rgba(184, 153, 109, 0.34), transparent 42%),
    linear-gradient(90deg, rgba(244, 234, 220, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(244, 234, 220, 0.06) 1px, transparent 1px);
  background-size: auto, 72px 72px, 72px 72px;
}

.wellness-placeholder::before {
  background: linear-gradient(135deg, rgba(47, 74, 63, 0.72), rgba(138, 98, 68, 0.32));
}

.material-placeholder::before {
  background: linear-gradient(135deg, rgba(138, 98, 68, 0.62), rgba(216, 193, 160, 0.18));
}

.modular-placeholder::before {
  background: linear-gradient(135deg, rgba(31, 27, 23, 0.88), rgba(216, 193, 160, 0.2));
}

.plunge-placeholder::before {
  background: linear-gradient(135deg, rgba(47, 74, 63, 0.76), rgba(21, 20, 17, 0.4));
}

.villa-placeholder::before {
  background: linear-gradient(135deg, rgba(138, 98, 68, 0.7), rgba(47, 74, 63, 0.36));
}

.hospitality-placeholder::before {
  background: linear-gradient(135deg, rgba(216, 193, 160, 0.34), rgba(21, 20, 17, 0.48));
}

.apartment-placeholder::before {
  background: linear-gradient(135deg, rgba(244, 234, 220, 0.18), rgba(31, 27, 23, 0.72));
}

.construction {
  width: 100%;
  max-width: none;
  padding-left: max(24px, calc((100vw - var(--max)) / 2));
  padding-right: max(24px, calc((100vw - var(--max)) / 2));
  background: #1b1713;
  border-top: 1px solid var(--warm-line);
  border-bottom: 1px solid var(--warm-line);
}

.project-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 42px;
}

.project-card {
  display: grid;
  grid-template-rows: auto auto;
  overflow: hidden;
  border: 1px solid var(--warm-line);
  border-radius: var(--radius);
  background: var(--warm-panel);
}

.project-card .image-shell img,
.image-card .image-shell img {
  transition: transform 700ms ease, filter 700ms ease;
}

.project-card:hover .image-shell img,
.image-card:hover .image-shell img {
  transform: scale(1.045);
  filter: saturate(0.92) contrast(1.04);
}

.project-card .image-shell {
  min-height: 0;
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(180deg, rgba(21, 20, 17, 0.2), rgba(21, 20, 17, 0.35)),
    #221d18;
}

.project-card .image-shell img {
  object-fit: contain;
  object-position: center center;
  padding: 16px 16px 0;
  background: transparent;
}

.project-card span {
  position: static;
  display: inline-flex;
  align-items: center;
  justify-self: start;
  margin: 16px;
  margin-top: 0;
  padding: 10px 14px;
  color: var(--ivory);
  background: rgba(21, 20, 17, 0.72);
  border: 1px solid rgba(216, 193, 160, 0.2);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  font-size: 14px;
  line-height: 1.3;
}

.mini-projects {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.portfolio-link-row {
  display: flex;
  justify-content: flex-start;
  margin-top: 18px;
}

.dual-links {
  margin-top: 24px;
}

.impact-section {
  border-top: 1px solid var(--warm-line);
  border-bottom: 1px solid var(--warm-line);
  background:
    linear-gradient(180deg, rgba(33, 27, 22, 0.28), rgba(21, 20, 17, 0.16)),
    #17130f;
}

.impact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 26px;
  margin-top: 34px;
}

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

.impact-card,
.impact-panel {
  background: rgba(39, 33, 27, 0.74);
  border: 1px solid var(--warm-line);
  border-radius: var(--radius);
}

.impact-card {
  padding: 24px 22px;
  min-height: 100%;
}

.impact-number {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  margin-bottom: 18px;
  color: var(--charcoal);
  background: var(--sand);
  border-radius: 999px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.impact-card h3,
.impact-panel h3 {
  margin: 0 0 12px;
  font-size: 26px;
}

.impact-card p,
.impact-panel p {
  margin: 0;
  color: var(--muted);
}

.impact-panel {
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(216, 193, 160, 0.12), transparent 34%),
    rgba(39, 33, 27, 0.74);
}

.impact-panel-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  margin-bottom: 18px;
  color: var(--sand);
  border: 1px solid rgba(216, 193, 160, 0.2);
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
}

.impact-support-list {
  margin-top: 22px;
}

.consult-strip {
  padding-top: 34px;
  padding-bottom: 34px;
}

.consult-strip-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 28px 30px;
  background:
    radial-gradient(circle at right center, rgba(216, 193, 160, 0.12), transparent 30%),
    rgba(39, 33, 27, 0.78);
  border: 1px solid var(--warm-line);
  border-radius: var(--radius);
}

.consult-strip-card h2 {
  margin: 0 0 10px;
}

.consult-strip-card p:last-child {
  margin: 0;
  color: var(--muted);
}

.mini-projects span {
  padding: 10px 14px;
  color: var(--muted);
  border: 1px solid var(--warm-line);
  border-radius: 999px;
}

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

.featured-lead {
  background:
    linear-gradient(180deg, rgba(216, 193, 160, 0.06), rgba(39, 33, 27, 0.72) 18%),
    rgba(39, 33, 27, 0.72);
}

.portrait {
  min-height: 330px;
}

.portrait-real {
  min-height: 360px;
  background:
    radial-gradient(circle at 50% 14%, rgba(244, 234, 220, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(216, 193, 160, 0.12), rgba(21, 20, 17, 0.12));
}

.portrait-real::before {
  background:
    linear-gradient(180deg, rgba(244, 234, 220, 0.08), transparent 24%),
    linear-gradient(90deg, rgba(244, 234, 220, 0.04) 1px, transparent 1px);
  background-size: auto, 34px 34px;
}

.portrait-real::after {
  background:
    linear-gradient(0deg, rgba(21, 20, 17, 0.56) 0%, rgba(21, 20, 17, 0.16) 28%, transparent 54%);
}

.portrait-real img {
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.95) contrast(1.03);
}

.team-copy {
  display: grid;
  gap: 6px;
  padding: 18px 20px 22px;
}

.team-copy h3,
.team-copy p {
  padding: 0;
  margin: 0;
}

.team-copy h3 {
  font-size: 21px;
}

.team-copy p {
  min-height: 40px;
  font-size: 14px;
}

.portrait-placeholder::before {
  background:
    radial-gradient(circle at 50% 26%, rgba(216, 193, 160, 0.34), transparent 15%),
    linear-gradient(135deg, rgba(31, 27, 23, 0.88), rgba(138, 98, 68, 0.28));
}

.team-support {
  margin: 26px 0 0;
  color: var(--sand);
  font-size: 18px;
}

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

.audience-grid article {
  display: flex;
  align-items: end;
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  line-height: 1.22;
}

.process {
  border-top: 1px solid var(--warm-line);
  border-bottom: 1px solid var(--warm-line);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--warm-line);
  border-radius: var(--radius);
  overflow: hidden;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--sand), transparent);
  transform: scaleX(var(--timeline-progress, 0));
  transform-origin: left;
  z-index: 2;
}

.timeline li {
  min-height: 190px;
  padding: 20px;
  background: rgba(39, 33, 27, 0.72);
  border-right: 1px solid var(--warm-line);
  color: var(--ivory);
}

.timeline li:last-child {
  border-right: 0;
}

.timeline span {
  display: block;
  margin-bottom: 56px;
  color: var(--sand-2);
  font-family: Georgia, "Times New Roman", serif;
}

.timeline strong {
  display: block;
  color: var(--ivory);
  font-weight: 500;
  line-height: 1.4;
}

.process-note {
  margin: 20px 0 0;
  color: var(--muted);
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 0.92fr);
  gap: 48px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--sand);
  font-size: 13px;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  min-width: 0;
  color: var(--ivory);
  background: rgba(21, 20, 17, 0.72);
  border: 1px solid rgba(216, 193, 160, 0.24);
  border-radius: var(--radius);
  outline: none;
}

input {
  min-height: 48px;
  padding: 0 13px;
}

textarea {
  resize: vertical;
  padding: 13px;
}

input:focus,
textarea:focus,
.button:focus-visible,
a:focus-visible,
button:focus-visible {
  border-color: var(--sand);
  outline: 3px solid rgba(216, 193, 160, 0.18);
  outline-offset: 2px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.form-status {
  min-height: 20px;
  margin: 2px 0 0;
  color: var(--sand);
  font-size: 13px;
}

.form-status.is-error {
  color: #f0b6aa;
}

.single-row {
  grid-template-columns: 1fr;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  color: var(--muted);
  border-top: 1px solid var(--warm-line);
}

.site-footer div:first-child {
  display: grid;
  gap: 3px;
}

.site-footer strong {
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.footer-links {
  display: flex;
  gap: 16px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes drawPlan {
  0% {
    stroke-dashoffset: 640;
    opacity: 0.35;
  }
  42%,
  76% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    stroke-dashoffset: -640;
    opacity: 0.42;
  }
}

@keyframes metricSweep {
  0%,
  58% {
    transform: translateX(-110%);
  }
  76%,
  100% {
    transform: translateX(110%);
  }
}

@keyframes pulsePin {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.72;
  }
  50% {
    transform: scale(1.28);
    opacity: 1;
  }
}

@keyframes lineTravel {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}

@keyframes orbitSpin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1060px) {
  .four,
  .project-grid,
  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .timeline li {
    border-bottom: 1px solid var(--warm-line);
  }

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

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    padding: 0 18px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-content,
  .section {
    width: min(100% - 36px, var(--max));
  }

  .hero {
    min-height: auto;
  }

  .hero-layout,
  .signature-section {
    grid-template-columns: 1fr;
  }

  .hero-instrument {
    display: none;
  }

  .hero-content {
    padding: 72px 0 36px;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(21, 20, 17, 0.96) 0%, rgba(21, 20, 17, 0.72) 58%, rgba(21, 20, 17, 0.5) 100%);
  }

  .section {
    padding: 66px 0;
  }

  .section-grid,
  .operations,
  .impact-layout,
  .impact-metrics,
  .consult-strip-card,
  .final-cta,
  .three,
  .four,
  .project-grid,
  .team-grid,
  .audience-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

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

  .delivery-map {
    grid-template-columns: 1fr;
  }

  .delivery-line {
    height: 38px;
    width: 1px;
    justify-self: center;
  }

  .delivery-line::before {
    height: 100%;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--sand), transparent);
    animation-name: lineTravelVertical;
  }

  .timeline li {
    min-height: 132px;
    border-right: 0;
  }

  .timeline span {
    margin-bottom: 28px;
  }

  .site-footer {
    display: grid;
    padding: 28px 18px;
  }
}

@keyframes lineTravelVertical {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(100%);
  }
}

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

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

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

  .hero-canvas,
  .scroll-progress,
  .instrument-plan path,
  .jakarta-map path,
  .map-pin,
  .delivery-line::before,
  .operations-orbit::after,
  .trust-strip div::after {
    animation: none !important;
  }
}
