:root {
  --bg-primary: #141A2E;
  --bg-deeper: #0F1424;
  --bg-elevated: #1A2240;
  --text-primary: #F5F1E8;
  --text-body: #D4D0C8;
  --text-secondary: #B8B3A8;
  --accent-gold: #D4AF6F;
  --border-subtle: rgba(232, 228, 220, 0.15);
  --midnight: var(--bg-primary);
  --midnight-2: var(--bg-deeper);
  --navy: #18203a;
  --charcoal: #171e33;
  --graphite: #202846;
  --panel: rgba(26, 34, 64, 0.76);
  --panel-soft: rgba(26, 34, 64, 0.48);
  --line: rgba(232, 228, 220, 0.1);
  --line-strong: var(--border-subtle);
  --silver: #E8E4DC;
  --silver-soft: #D4D0C8;
  --silver-mute: #9B958A;
  --gold: var(--accent-gold);
  --gold-soft: #E0BF82;
  --text: var(--text-primary);
  --text-mute: var(--text-body);
  --text-dim: var(--text-secondary);
  --success: #97bea1;
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  --shadow-soft: 0 24px 72px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--bg-primary);
  color: var(--text);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(212, 175, 111, 0.05), transparent 60%),
    radial-gradient(ellipse 70% 45% at 100% 82%, rgba(26, 34, 64, 0.28), transparent 72%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.58;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.07 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

a {
  color: inherit;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  position: relative;
  min-height: 100vh;
}

.grid-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 74% 64% at 50% 42%, black 36%, transparent 90%);
  opacity: 0.78;
}

.container {
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  z-index: 2;
}

.main-content {
  position: relative;
  z-index: 2;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--text);
  line-height: 0;
}

.brand-logo {
  display: block;
  width: 320px;
  height: auto;
}

.brand-mark {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  line-height: 1;
}

.brand-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 36px;
  line-height: 0.88;
  letter-spacing: 0.06em;
  background: linear-gradient(180deg, #fafafa 0%, #d7d8de 38%, #8e939f 72%, #f8f8f9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.brand-subrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-sub {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  white-space: nowrap;
  background: linear-gradient(180deg, #f7e8b4 0%, #c99f5c 45%, #f1d796 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.brand-sub-line {
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 106, 0.88), transparent);
  flex-shrink: 0;
}

.site-nav .brand-mark {
  width: 52px;
  height: 52px;
}

.site-nav .brand-logo {
  width: 300px;
}

.site-nav .brand-name {
  font-size: 34px;
}

.footer .brand-mark {
  width: 58px;
  height: 58px;
}

.footer .brand-logo {
  width: 280px;
}

.footer .brand-name {
  font-size: 38px;
}

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 20px 0;
  backdrop-filter: blur(12px);
  background: rgba(15, 20, 36, 0.84);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 10px 32px rgba(4, 7, 16, 0.22);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 32px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border: 1px solid rgba(232, 228, 220, 0.14);
  background: rgba(26, 34, 64, 0.42);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.lang-switch-sep {
  color: rgba(232, 228, 220, 0.34);
}

.lang-option {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
  transition: color 0.3s ease, opacity 0.3s ease;
  opacity: 0.72;
}

.lang-option:hover,
.lang-option:focus-visible,
.lang-option.is-active {
  color: var(--text-primary);
  opacity: 1;
}

.lang-option.is-active {
  color: var(--accent-gold);
}

.nav-menu {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-menu a {
  color: #E8E4DC;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.84;
  transition: color 0.3s ease, opacity 0.3s ease;
  position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--accent-gold);
  opacity: 1;
}

.nav-menu a.active::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent-gold);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border-subtle);
  background: rgba(26, 34, 64, 0.88);
  color: var(--text);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
  position: relative;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform 0.3s ease;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.site-nav.is-open .nav-toggle span {
  background: transparent;
}

.site-nav.is-open .nav-toggle span::before {
  transform: translateY(6px) rotate(45deg);
}

.site-nav.is-open .nav-toggle span::after {
  transform: translateY(-6px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  min-height: 48px;
  border: 1px solid var(--accent-gold);
  background: rgba(212, 175, 111, 0.08);
  color: var(--accent-gold);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(212, 175, 111, 0.18);
  transform: translateX(-101%);
  transition: transform 0.3s ease;
  z-index: 0;
}

.btn span {
  position: relative;
  z-index: 1;
}

.btn:hover::before,
.btn:focus-visible::before {
  transform: translateX(0);
}

.btn:hover,
.btn:focus-visible {
  color: var(--text-primary);
  background: rgba(212, 175, 111, 0.12);
  transform: translateY(-1px);
}

.btn-ghost {
  border-color: rgba(232, 228, 220, 0.4);
  background: rgba(232, 228, 220, 0.02);
  color: #E8E4DC;
}

.btn-ghost::before {
  background: rgba(232, 228, 220, 0.12);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  color: var(--text-primary);
  background: rgba(232, 228, 220, 0.08);
}

.btn-lg {
  padding: 16px 32px;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.45;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  top: 6px;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  overflow: visible;
}

.eyebrow::before,
.section-label::before {
  content: "";
  width: 32px;
  height: 1px;
  background: rgba(232, 228, 220, 0.65);
}

.section-pad {
  padding: 92px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 64px;
  margin-bottom: 48px;
}

.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 3.8vw, 54px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  max-width: 760px;
}

.section-title em,
.page-hero-title em,
.service-line-title em,
.cta-title em {
  font-style: italic;
  color: var(--text-primary);
  font-weight: 300;
}

.display-title em {
  font-style: italic;
  color: var(--accent-gold);
  font-weight: 300;
}

.section-copy,
.muted-copy {
  color: var(--text-mute);
  font-size: 16px;
  line-height: 1.75;
}

.display-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(42px, 5.5vw, 82px);
  line-height: 1.02;
  letter-spacing: -0.015em;
}

.hero-home {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 80px;
  padding: 160px 0 100px;
  position: relative;
  isolation: isolate;
}

.page-home .hero-home {
  min-height: auto;
  padding-bottom: 24px;
}

.page-home .values.section-pad {
  padding-top: 24px;
  padding-bottom: 28px;
}

.page-home .values .section-head {
  margin-bottom: 28px;
}

.page-home .insight-strip {
  padding-top: 28px;
  padding-bottom: 28px;
}

.page-home .insight-strip + .section-pad {
  padding-top: 28px;
}

.page-home .home-services.section-pad {
  padding-top: 28px;
  padding-bottom: 28px;
}

.page-home .home-services .section-head {
  margin-bottom: 28px;
}

.page-home .home-services + .process-section.section-pad {
  padding-top: 28px;
}

.hero-home::before {
  content: "";
  position: absolute;
  inset: 72px 32px 24px;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle at 42% 34%, rgba(26, 34, 64, 0.72) 0%, rgba(26, 34, 64, 0.38) 24%, rgba(15, 20, 36, 0) 62%);
}

.hero-home > * {
  position: relative;
  z-index: 1;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-meta {
  margin-bottom: 32px;
}

.page-home .hero-meta {
  display: inline-flex;
  align-items: center;
  overflow: visible;
  line-height: 1.45;
  top: 10px;
  padding-top: 0;
}

.page-home .hero-meta::before {
  display: none;
}

.hero-sub {
  margin-top: 28px;
  margin-bottom: 40px;
  max-width: 560px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-mute);
}

.hero-sub strong,
.page-hero-sub strong {
  color: var(--text-primary);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.hero-stat-value {
  display: block;
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1;
  color: var(--text-primary);
  font-weight: 500;
}

.hero-stat-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.hero-visual,
.visual-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: linear-gradient(135deg, rgba(32, 40, 70, 0.98), rgba(15, 20, 36, 0.94));
  box-shadow: var(--shadow-soft);
}

.hero-visual-home {
  aspect-ratio: 1;
  max-width: 560px;
  justify-self: end;
  width: 100%;
  background: #0d1323;
}

.hero-visual-service {
  max-width: 520px;
  justify-self: end;
  width: 100%;
  background: #0d1323;
}

.process-hero-visual {
  aspect-ratio: 971 / 1619;
  max-width: 410px;
  justify-self: end;
  width: 100%;
  background: #0d1323;
}

.contact-hero-visual {
  aspect-ratio: 1;
  max-width: 500px;
  justify-self: end;
  width: 100%;
  background: #0d1323;
}

.hero-visual-home::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(8, 11, 20, 0.08), rgba(8, 11, 20, 0.3)),
    radial-gradient(circle at 50% 52%, rgba(212, 175, 111, 0.08), transparent 36%),
    radial-gradient(circle at 50% 50%, rgba(15, 20, 36, 0) 36%, rgba(15, 20, 36, 0.42) 100%);
}

.hero-visual-service::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(8, 11, 20, 0.16), rgba(8, 11, 20, 0.36)),
    radial-gradient(circle at 54% 48%, rgba(212, 175, 111, 0.06), transparent 34%),
    radial-gradient(circle at 50% 48%, rgba(15, 20, 36, 0) 34%, rgba(15, 20, 36, 0.48) 100%);
}

.hero-visual-home::after {
  content: "";
  position: absolute;
  inset: 22px;
  z-index: 1;
  pointer-events: none;
  border: 1px solid rgba(232, 228, 220, 0.08);
}

.hero-visual-service::after {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 1;
  pointer-events: none;
  border: 1px solid rgba(232, 228, 220, 0.08);
}

.hero-home-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 58% 50%;
  filter: brightness(0.72) saturate(0.92) contrast(1.05);
}

.hero-service-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 56% 50%;
  filter: brightness(0.72) saturate(0.9) contrast(1.04);
}

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

.about-hero-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  padding: 24px;
}

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

.coord,
.corner-label {
  position: absolute;
  z-index: 2;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-shadow: 0 1px 12px rgba(8, 11, 20, 0.9);
}

.coord.tl,
.corner-label.tl {
  top: 14px;
  left: 16px;
}

.coord.tr,
.corner-label.tr {
  top: 14px;
  right: 16px;
  color: var(--accent-gold);
}

.coord.bl,
.corner-label.bl {
  bottom: 14px;
  left: 16px;
}

.coord.br,
.corner-label.br {
  bottom: 14px;
  right: 16px;
}

.hero-visual img,
.hero-visual svg,
.visual-frame img,
.visual-frame svg,
.art-block svg,
.service-visual svg,
.mini-visual img,
.mini-visual svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-visual-home svg {
  display: none;
}

.hero-visual-service svg {
  display: none;
}

.ring-rotating {
  transform-origin: 50% 50%;
  animation: spin 80s linear infinite;
}

.ring-rotating-rev {
  transform-origin: 50% 50%;
  animation: spin 60s linear infinite reverse;
}

.values {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, transparent, rgba(26, 34, 64, 0.28));
}

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

.value-card {
  padding: 40px 28px;
  border-left: 1px solid var(--line);
  transition: background 0.35s ease;
}

.value-card:first-child {
  border-left: 0;
}

.value-card:hover {
  background: rgba(232, 228, 220, 0.04);
}

.value-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 28px;
}

.value-num {
  display: block;
  margin-bottom: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--text-secondary);
}

.value-title {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.value-desc {
  font-size: 13px;
  color: var(--text-mute);
  line-height: 1.7;
}

.insight-strip {
  padding: 76px 0;
}

.insight-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.insight-visual {
  aspect-ratio: 4 / 3;
  background: #101725;
}

.insight-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(8, 11, 20, 0.14), rgba(8, 11, 20, 0.32)),
    radial-gradient(circle at 50% 50%, rgba(212, 175, 111, 0.06), transparent 34%);
}

.insight-visual::after {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 1;
  pointer-events: none;
  border: 1px solid rgba(232, 228, 220, 0.08);
}

.insight-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.82) saturate(0.94) contrast(1.03);
}

.insight-title {
  margin: 24px 0;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  line-height: 1.15;
}

.insight-copy p {
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-mute);
}

.insight-points {
  list-style: none;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.insight-points li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  padding: 12px 0;
  font-size: 14px;
  color: var(--text-body);
}

.insight-points li::before {
  content: "";
  width: 16px;
  height: 1px;
  background: rgba(232, 228, 220, 0.72);
  align-self: center;
  margin-top: 11px;
}

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

.services-section {
  padding: 92px 0;
}

.service-preview-card,
.placeholder-card {
  background: linear-gradient(180deg, rgba(32, 40, 70, 0.42), rgba(20, 26, 46, 0.26));
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.service-preview-card::before,
.placeholder-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 228, 220, 0.86), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.service-preview-card:hover,
.placeholder-card:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
}

.service-preview-card:hover::before,
.placeholder-card:hover::before {
  transform: translateX(0);
}

.art-block {
  position: relative;
  aspect-ratio: 16 / 10;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: linear-gradient(135deg, var(--midnight-2), var(--graphite));
}

.service-preview-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.84) saturate(0.94) contrast(1.03);
}

.art-block-label {
  position: absolute;
  top: 16px;
  left: 20px;
  z-index: 2;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.service-preview-body {
  padding: 32px 32px 36px;
}

.service-preview-title,
.placeholder-card h3 {
  margin-bottom: 16px;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.service-preview-desc,
.placeholder-card p,
.placeholder-card li {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-mute);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  text-decoration: none;
  text-transform: uppercase;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--silver);
  transition: gap 0.3s ease, color 0.3s ease;
}

.service-link:hover {
  gap: 16px;
  color: var(--text-primary);
}

.process-section {
  background: rgba(26, 34, 64, 0.24);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 64px;
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 42px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: rgba(232, 228, 220, 0.7);
  opacity: 0.4;
}

.process-step {
  position: relative;
  padding: 0 24px;
}

.process-node {
  position: relative;
  z-index: 2;
  width: 84px;
  height: 84px;
  margin-bottom: 28px;
  border-radius: 50%;
  border: 1px solid rgba(232, 228, 220, 0.44);
  background: var(--midnight);
  display: grid;
  place-items: center;
}

.process-node svg {
  width: 42px;
  height: 42px;
}

.process-node::before {
  content: attr(data-num);
  position: absolute;
  top: -8px;
  right: -8px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(232, 228, 220, 0.44);
  background: var(--midnight);
  color: var(--text-primary);
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 10px;
}

.process-title {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
}

.process-desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-mute);
}

.disclaimer {
  padding: 64px 0;
}

.disclaimer-box,
.legal-statement,
.contact-card,
.form-shell,
.info-panel {
  border: 1px solid var(--line-strong);
  border-left: 2px solid rgba(232, 228, 220, 0.4);
  background: linear-gradient(90deg, rgba(232, 228, 220, 0.045), transparent 60%);
}

.disclaimer-box {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 32px;
  padding: 36px 44px;
}

.disclaimer-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--text-secondary);
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  border-right: 1px solid var(--line);
  padding-right: 24px;
}

.disclaimer-text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-mute);
}

.disclaimer-text strong {
  color: var(--text);
  font-weight: 500;
}

.page-hero {
  padding: 156px 0 60px;
  border-bottom: 1px solid var(--line);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
}

.page-hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(46px, 6vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.015em;
}

.page-hero-sub {
  margin-top: 32px;
  max-width: 520px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-mute);
}

.services-hero {
  padding-bottom: 20px;
}

.services-hero .page-hero-grid {
  align-items: start;
  gap: 64px;
}

.services-hero .hero-meta-line {
  margin-top: 18px;
}

.services-pillars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.services-pillars .pillar-stat {
  display: grid;
  justify-items: start;
  gap: 6px;
}

.services-pillars .pillar-icon {
  width: 50px;
  height: 32px;
  color: rgba(212, 175, 111, 0.88);
  stroke-width: 1.35;
}

.services-pillars .pillar-icon-indonesia {
  width: 56px;
}

.services-pillars .pillar-value,
.services-pillars .pillar-label {
  display: block;
}

.services-pillars .pillar-value {
  color: var(--text-primary);
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.02em;
  font-family: var(--serif);
  font-weight: 500;
  text-transform: none;
}

.services-pillars .pillar-label {
  max-width: 180px;
  color: var(--text-secondary);
  font-size: 12px;
  line-height: 1.25;
  letter-spacing: 0.18em;
}

.services-hero + .services-section {
  padding-top: 36px;
}

.hero-meta-line {
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--text-secondary);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-meta-line span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-meta-line span::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(232, 228, 220, 0.72);
}

.services-pillars span::before {
  display: none;
}

.services-stack {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.service-line {
  position: relative;
  border: 1px solid var(--line-strong);
  background: linear-gradient(135deg, rgba(32, 40, 70, 0.52), rgba(20, 26, 46, 0.34));
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease;
}

.service-line::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 228, 220, 0.82), transparent);
  transform: translateX(-100%);
  transition: transform 0.8s ease;
}

.service-line:hover {
  transform: translateY(-2px);
  border-color: rgba(232, 228, 220, 0.24);
}

.service-line:hover::before {
  transform: translateX(0);
}

.service-line-inner {
  display: grid;
  grid-template-columns: 0.85fr 1fr 1.2fr;
  min-height: 420px;
}

.service-visual {
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background: linear-gradient(135deg, var(--midnight-2), var(--midnight));
}

.service-visual-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.84) saturate(0.94) contrast(1.03);
}

.service-visual .personal-service-image {
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
  object-position: 50% 46%;
  transform: none;
}

.service-visual-label,
.service-visual-ref {
  position: absolute;
  top: 20px;
  z-index: 2;
  font-family: var(--mono);
  text-transform: uppercase;
}

.service-visual-label {
  left: 20px;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--text-secondary);
}

.service-visual-ref {
  right: 20px;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--text-dim);
}

.service-line-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 48px 40px;
  border-right: 1px solid var(--line);
  background: radial-gradient(circle at 20% 30%, rgba(232, 228, 220, 0.045), transparent 60%);
}

.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.service-meta .tag {
  padding: 4px 10px;
  border: 1px solid var(--line);
  color: var(--text-dim);
  font-size: 10px;
}

.service-line-title {
  margin-bottom: 20px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.service-line-desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-mute);
  margin-bottom: 32px;
}

.service-foot {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.service-foot::before {
  content: "";
  width: 18px;
  height: 1px;
  background: rgba(232, 228, 220, 0.72);
}

.service-line-scope {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sub-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.sub-label::before {
  content: "";
  width: 24px;
  height: 1px;
  background: rgba(232, 228, 220, 0.72);
}

.sub-list {
  list-style: none;
}

.sub-list li {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.3s ease;
}

.sub-list li:last-child {
  border-bottom: 0;
}

.sub-list li:hover {
  padding-left: 8px;
}

.sub-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--text-dim);
}

.sub-text {
  font-size: 15px;
  color: var(--text);
}

.sub-dot {
  width: 6px;
  height: 6px;
  border: 1px solid var(--silver-mute);
  border-radius: 50%;
  opacity: 0.6;
}

.legal-section {
  background: rgba(26, 34, 64, 0.22);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.legal-grid,
.contact-grid,
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 80px;
  align-items: start;
}

.legal-title,
.cta-title {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.legal-title {
  margin-bottom: 32px;
  font-size: clamp(30px, 3.2vw, 44px);
}

.mini-visual {
  width: 100%;
  max-width: 430px;
  aspect-ratio: 1448 / 1086;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, var(--graphite), var(--midnight-2));
  overflow: hidden;
}

.legal-statement {
  padding: 40px 48px;
}

.legal-statement p {
  margin-bottom: 28px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--silver);
}

.legal-statement p strong {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  font-style: italic;
  color: var(--text-primary);
}

.legal-prohibited {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  list-style: none;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.legal-prohibited li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-mute);
}

.legal-prohibited li::before {
  content: "×";
  position: absolute;
  left: 0;
  top: -2px;
  font-family: var(--serif);
  font-size: 18px;
  color: var(--text-primary);
}

.cta-section {
  position: relative;
  overflow: hidden;
  padding: 108px 0;
  text-align: center;
}

.cta-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 34, 64, 0.52), transparent 60%);
  z-index: 0;
}

.cta-section .container {
  z-index: 2;
}

.cta-meta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.cta-meta::before,
.cta-meta::after {
  content: "";
  width: 32px;
  height: 1px;
  background: rgba(232, 228, 220, 0.72);
}

.cta-title {
  max-width: 760px;
  margin: 0 auto 32px;
  font-size: clamp(36px, 4.4vw, 64px);
}

.cta-sub {
  max-width: 520px;
  margin: 0 auto 48px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-mute);
}

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

.placeholder-card {
  padding: 32px;
}

.placeholder-card .card-index {
  display: block;
  margin-bottom: 18px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.placeholder-card ul {
  list-style: none;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.placeholder-card li + li {
  margin-top: 10px;
}

.timeline-stack {
  display: grid;
  gap: 20px;
  margin-top: 40px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 22px;
  padding: 24px 28px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(32, 40, 70, 0.38), rgba(20, 26, 46, 0.24));
}

.timeline-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 1px solid rgba(232, 228, 220, 0.4);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--text-primary);
}

.timeline-item h3 {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.15;
}

.timeline-item p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-mute);
}

.dev-note {
  margin-top: 28px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.contact-card,
.form-shell,
.info-panel {
  padding: 32px;
}

.contact-card h3,
.form-shell h3,
.info-panel h3 {
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.15;
}

.contact-card p,
.form-shell p,
.info-panel p {
  color: var(--text-mute);
  font-size: 15px;
  line-height: 1.7;
}

.contact-points {
  list-style: none;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 12px;
}

.contact-points li,
.info-panel li {
  color: var(--silver);
  font-size: 15px;
  line-height: 1.7;
}

.form-shell form {
  margin-top: 24px;
}

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

.form-group {
  display: grid;
  gap: 10px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  background: rgba(15, 20, 36, 0.78);
  color: var(--text);
  padding: 14px 16px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(212, 175, 111, 0.6);
  box-shadow: 0 0 0 1px rgba(212, 175, 111, 0.22);
}

.form-group textarea {
  min-height: 160px;
  resize: vertical;
}

.form-note {
  margin-top: 18px;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.7;
}

.footer {
  position: relative;
  z-index: 2;
  padding: 64px 0 28px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, transparent, rgba(15, 20, 36, 0.88));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 48px;
}

.footer-brand .brand {
  margin-bottom: 24px;
}

.footer-tagline {
  max-width: 360px;
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.5;
  color: var(--silver);
  font-style: italic;
}

.footer-col h4 {
  margin-bottom: 20px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.footer-col ul {
  list-style: none;
}

.footer-col li + li {
  margin-top: 12px;
}

.footer-col a,
.footer-col p {
  font-size: 14px;
  color: var(--text-mute);
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--text);
}

.footer-contact-list {
  list-style: none;
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-mute);
  transition: color 0.18s ease;
}

.footer-contact-item:hover {
  color: var(--text-primary);
}

.footer-contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  color: var(--text-secondary);
  transition: border-color 0.18s ease, color 0.18s ease;
}

.footer-contact-item:hover .footer-contact-icon {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.footer-contact-detail {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.footer-contact-name {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  line-height: 1.2;
}

.footer-contact-handle {
  font-size: 12px;
  color: var(--text-mute);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.18s ease;
}

.footer-contact-item:hover .footer-contact-handle {
  color: var(--accent-gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
}

.footer-bottom .code {
  color: var(--text-body);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  animation: reveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.reveal.d1 {
  animation-delay: 0.1s;
}

.reveal.d2 {
  animation-delay: 0.25s;
}

.reveal.d3 {
  animation-delay: 0.4s;
}

.reveal.d4 {
  animation-delay: 0.55s;
}

.reveal.d5 {
  animation-delay: 0.7s;
}

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

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .container {
    padding: 0 32px;
  }

  .hero-home,
  .page-hero-grid,
  .insight-grid,
  .legal-grid,
  .contact-grid,
  .split-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-home {
    padding: 148px 0 90px;
  }

  .hero-visual-home {
    justify-self: start;
    max-width: 500px;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

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

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px 24px;
  }

  .process-grid::before {
    display: none;
  }

  .service-line-inner {
    grid-template-columns: 1fr;
  }

  .service-visual {
    aspect-ratio: 16 / 9;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-line-copy,
  .service-line-scope {
    padding: 32px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

@media (max-width: 900px) {
  .site-nav .brand-logo {
    width: 250px;
  }

  .site-nav .brand {
    max-width: calc(100% - 92px);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-panel {
    position: absolute;
    top: calc(100% + 14px);
    left: 24px;
    right: 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    padding: 24px;
    border: 1px solid var(--line-strong);
    background: rgba(15, 20, 36, 0.96);
    box-shadow: var(--shadow-soft);
  }

  .site-nav.is-open .nav-panel {
    display: flex;
  }

  .nav-menu {
    flex-direction: column;
    gap: 18px;
  }

  .lang-switch {
    justify-content: center;
    width: 100%;
    padding: 10px 12px;
  }

  .nav-menu a.active::after {
    bottom: -6px;
  }

  .nav-cta {
    width: 100%;
  }

  .hero-meta-line {
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .brand-logo {
    width: 240px;
  }

  .site-nav {
    padding: 16px 0;
  }

  .site-nav .brand-logo {
    width: 176px;
  }

  .footer .brand-logo {
    width: 220px;
  }

  .container {
    padding: 0 30px;
  }

  .section-pad,
  .services-section,
  .legal-section,
  .cta-section {
    padding: 88px 0;
  }

  .hero-home {
    gap: 18px;
    padding: 112px 0 56px;
  }

  .hero-home::before {
    inset: 48px 12px 12px;
  }

  .hero-copy {
    display: contents;
  }

  .hero-home .hero-meta,
  .hero-home .display-title,
  .hero-home .hero-actions,
  .hero-home .hero-sub,
  .hero-home .hero-stats,
  .hero-home .hero-visual-home {
    position: relative;
    z-index: 1;
  }

  .hero-home .hero-meta {
    order: 1;
  }

  .hero-home .display-title {
    order: 2;
  }

  .hero-home .hero-actions {
    order: 3;
  }

  .hero-home .hero-visual-home {
    order: 4;
  }

  .hero-home .hero-sub {
    order: 5;
  }

  .hero-home .hero-stats {
    order: 6;
  }

  .hero-home .hero-meta,
  .hero-home .display-title,
  .hero-home .hero-actions,
  .hero-home .hero-sub {
    padding-left: 14px;
    padding-right: 6px;
  }

  .hero-meta {
    margin-bottom: 8px;
    font-size: 11px;
    letter-spacing: 0.16em;
    gap: 10px;
  }

  .hero-meta::before {
    width: 20px;
  }

  .display-title {
    font-size: clamp(29px, 8.7vw, 37px);
    line-height: 1.02;
    max-width: none;
    letter-spacing: -0.02em;
    text-wrap: normal;
  }

  .display-title br {
    display: block;
  }

  .hero-sub {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-secondary);
    max-width: none;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-bottom: 0;
  }

  .hero-actions .btn:first-child {
    width: 100%;
    min-height: 50px;
  }

  .hero-actions .btn-ghost {
    width: 100%;
    min-height: 50px;
  }

  .hero-stats {
    display: none;
  }

  .hero-visual-home {
    max-width: none;
    width: calc(100% - 14px);
    margin-left: 14px;
    aspect-ratio: 16 / 9;
  }

  .hero-visual-service {
    max-width: none;
    width: calc(100% - 14px);
    margin-left: 14px;
    aspect-ratio: 16 / 10 !important;
  }

  .hero-visual-home::after {
    inset: 12px;
  }

  .hero-visual-service::after {
    inset: 12px;
  }

  .hero-home-image {
    object-position: 56% 44%;
    filter: brightness(0.76) saturate(0.94) contrast(1.04);
  }

  .hero-service-image {
    object-position: 54% 48%;
    filter: brightness(0.76) saturate(0.92) contrast(1.04);
  }

  .hero-visual-home .coord {
    font-size: 9px;
    letter-spacing: 0.12em;
    padding: 4px 6px;
    border: 1px solid rgba(232, 228, 220, 0.12);
    background: rgba(15, 20, 36, 0.74);
    backdrop-filter: blur(10px);
  }

  .hero-visual-home .coord.tl,
  .hero-visual-home .coord.tr {
    top: 12px;
  }

  .hero-visual-home .coord.tl,
  .hero-visual-home .coord.bl {
    left: 12px;
  }

  .hero-visual-home .coord.tr,
  .hero-visual-home .coord.br {
    right: 12px;
  }

  .hero-visual-home .coord.bl,
  .hero-visual-home .coord.br {
    display: none;
  }

  .hero-visual-service .corner-label {
    font-size: 9px;
    letter-spacing: 0.12em;
    padding: 4px 6px;
    border: 1px solid rgba(232, 228, 220, 0.12);
    background: rgba(15, 20, 36, 0.74);
    backdrop-filter: blur(10px);
  }

  .hero-visual-service .corner-label.tl,
  .hero-visual-service .corner-label.tr {
    top: 12px;
  }

  .hero-visual-service .corner-label.tl,
  .hero-visual-service .corner-label.bl {
    left: 12px;
  }

  .hero-visual-service .corner-label.tr,
  .hero-visual-service .corner-label.br {
    right: 12px;
  }

  .hero-visual-service .corner-label.bl,
  .hero-visual-service .corner-label.br {
    display: none;
  }

  .page-hero {
    padding: 148px 0 72px;
  }

  .hero-stats,
  .values-grid,
  .service-preview-grid,
  .placeholder-grid,
  .process-grid,
  .footer-grid,
  .legal-prohibited,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .value-card {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .value-card:first-child {
    border-top: 0;
  }

  .disclaimer-box {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .disclaimer-tag {
    writing-mode: horizontal-tb;
    transform: none;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-right: 0;
    padding-bottom: 12px;
  }

  .hero-meta-line {
    flex-direction: column;
    align-items: flex-start;
  }

  .services-pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 20px;
  }

  .sub-list li {
    grid-template-columns: 40px 1fr;
  }

  .sub-dot {
    display: none;
  }

  .service-selectable:not(.is-selected) .sub-num {
    animation: num-pulse 2.8s ease-in-out infinite;
  }

  .service-selectable:not(.is-selected):nth-child(1) .sub-num { animation-delay: 0s; }
  .service-selectable:not(.is-selected):nth-child(2) .sub-num { animation-delay: 0.45s; }
  .service-selectable:not(.is-selected):nth-child(3) .sub-num { animation-delay: 0.9s; }
  .service-selectable:not(.is-selected):nth-child(4) .sub-num { animation-delay: 1.35s; }
  .service-selectable:not(.is-selected):nth-child(5) .sub-num { animation-delay: 1.8s; }
  .service-selectable:not(.is-selected):nth-child(6) .sub-num { animation-delay: 2.25s; }

  .service-selectable.is-selected .sub-num {
    animation: none;
  }

  .legal-statement,
  .contact-card,
  .form-shell,
  .info-panel {
    padding: 28px 24px;
  }

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

  .footer-bottom {
    align-items: flex-start;
  }
}

/* ===== SUB-HINT INSTRUCTION ===== */
.sub-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  color: var(--accent-gold);
  opacity: 0.55;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.sub-hint::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 1px;
  background: var(--accent-gold);
  flex-shrink: 0;
}

/* ===== RADAR PING KEYFRAME ===== */
@keyframes radar-ping {
  0%   { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  100% { transform: translate(-50%, -50%) scale(5); opacity: 0; }
}

@keyframes num-pulse {
  0%, 100% { color: var(--text-dim); }
  50%       { color: var(--accent-gold); }
}

/* ===== SERVICE SELECTABLE ITEMS ===== */
.service-selectable {
  cursor: pointer;
  position: relative;
  transition: padding-left 0.25s ease, background 0.2s ease, border-left-color 0.2s ease;
  border-left: 2px solid transparent;
  margin-left: -2px;
}

.service-selectable .sub-dot {
  position: relative;
  overflow: visible;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

/* Radar ping on unselected dots */
.service-selectable:not(.is-selected) .sub-dot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 1px solid var(--accent-gold);
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
  animation: radar-ping 2.8s ease-out infinite;
  pointer-events: none;
}

/* Cascading stagger so items ping one after another */
.service-selectable:not(.is-selected):nth-child(1) .sub-dot::after { animation-delay: 0s; }
.service-selectable:not(.is-selected):nth-child(2) .sub-dot::after { animation-delay: 0.45s; }
.service-selectable:not(.is-selected):nth-child(3) .sub-dot::after { animation-delay: 0.9s; }
.service-selectable:not(.is-selected):nth-child(4) .sub-dot::after { animation-delay: 1.35s; }
.service-selectable:not(.is-selected):nth-child(5) .sub-dot::after { animation-delay: 1.8s; }
.service-selectable:not(.is-selected):nth-child(6) .sub-dot::after { animation-delay: 2.25s; }

/* Pause ping on hover — dot takes over visually */
.service-selectable:hover .sub-dot::after {
  animation-play-state: paused;
  opacity: 0;
}

.service-selectable:hover {
  border-left-color: rgba(212, 175, 111, 0.3);
  background: rgba(212, 175, 111, 0.025);
}

.service-selectable:hover .sub-num {
  color: var(--accent-gold);
}

.service-selectable:hover .sub-text {
  color: var(--text-primary);
}

.service-selectable:hover .sub-dot {
  border-color: var(--accent-gold);
  background-color: rgba(212, 175, 111, 0.38);
  transform: scale(1.4);
}

.service-selectable::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%) scale(0.8);
  font-size: 16px;
  color: var(--accent-gold);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.service-selectable:hover::after {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.service-selectable.is-selected {
  background: rgba(212, 175, 111, 0.05);
  border-left-color: var(--accent-gold);
  padding-left: 8px;
}

.service-selectable.is-selected .sub-num {
  color: var(--accent-gold);
}

.service-selectable.is-selected .sub-text {
  color: var(--text-primary);
}

.service-selectable.is-selected .sub-dot {
  border-color: var(--accent-gold);
  background-color: var(--accent-gold);
  transform: scale(1.2);
  opacity: 1;
}

.service-selectable.is-selected::after {
  content: "✓";
  opacity: 1;
  transform: translateY(-50%) scale(1);
  font-size: 13px;
}

/* ===== STICKY SELECTION BAR ===== */
.selection-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  background: rgba(10, 14, 26, 0.96);
  border-top: 1px solid var(--accent-gold);
  backdrop-filter: blur(16px);
  padding: 14px 0;
  animation: slideUpBar 0.3s ease;
}

@keyframes slideUpBar {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

.selection-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.selection-bar-info {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  flex: 1;
}

.selection-count-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--accent-gold);
  color: var(--bg-primary);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
  line-height: 1;
}

.selection-bar-label {
  font-size: 13px;
  color: var(--text-secondary);
  white-space: nowrap;
  flex-shrink: 0;
}

.selection-chips {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  min-width: 0;
}

.selection-chips::-webkit-scrollbar {
  display: none;
}

.selection-chip {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  padding: 3px 9px;
  border: 1px solid rgba(212, 175, 111, 0.5);
  color: var(--accent-gold);
  background: rgba(212, 175, 111, 0.08);
  white-space: nowrap;
  flex-shrink: 0;
}

.selection-bar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.selection-bar-clear {
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  padding: 9px 16px;
  min-height: 40px;
  font-size: 12px;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.selection-bar-clear:hover {
  color: var(--text-primary);
  border-color: rgba(232, 228, 220, 0.4);
}

.selection-bar-cta {
  padding: 9px 20px;
  min-height: 40px;
  font-size: 12px;
  gap: 8px;
  white-space: nowrap;
}

/* ===== MULTI-SERVICE BANNER (contact page) ===== */
.ssb-service-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}

.ssb-service-item {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.ssb-item-remove {
  width: 18px;
  height: 18px;
  border: 1px solid var(--border-subtle);
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 2px;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.ssb-item-remove:hover {
  color: var(--text-primary);
  border-color: rgba(232, 228, 220, 0.45);
  background: rgba(232, 228, 220, 0.06);
}

/* ===== SERVICE POPUP ===== */
.service-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 11, 22, 0.78);
  backdrop-filter: blur(6px);
  z-index: 200;
  animation: fadeIn 0.2s ease;
}

.service-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 201;
  width: min(480px, calc(100vw - 48px));
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-left: 2px solid var(--accent-gold);
  padding: 40px 40px 36px;
  box-shadow: 0 32px 96px rgba(0, 0, 0, 0.5);
  animation: slideUp 0.25s ease;
}

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

@keyframes slideUp {
  from { opacity: 0; transform: translate(-50%, calc(-50% + 16px)); }
  to   { opacity: 1; transform: translate(-50%, -50%); }
}

.service-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border: 1px solid var(--border-subtle);
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.service-popup-close:hover {
  color: var(--text-primary);
  border-color: var(--accent-gold);
  background: rgba(212, 175, 111, 0.08);
}

.service-popup-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 20px;
}

.service-popup-code {
  font-family: var(--mono);
  font-size: 36px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.service-popup-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.service-popup-line {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.service-popup-cta {
  width: 100%;
  justify-content: space-between;
  gap: 12px;
}

/* ===== SELECTED SERVICE BANNER ===== */
.selected-service-banner {
  margin-bottom: 36px;
}

.ssb-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  border: 1px solid rgba(212, 175, 111, 0.35);
  border-left: 2px solid var(--accent-gold);
  background: rgba(212, 175, 111, 0.06);
}

.ssb-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  min-width: 0;
}

.ssb-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-gold);
  white-space: nowrap;
  flex-shrink: 0;
}

.ssb-code {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--text-primary);
  white-space: nowrap;
  flex-shrink: 0;
}

.ssb-sep {
  color: var(--text-secondary);
  opacity: 0.5;
  flex-shrink: 0;
}

.ssb-name {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.4;
  min-width: 0;
}

.ssb-clear {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border-subtle);
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.ssb-clear:hover {
  color: var(--text-primary);
  border-color: var(--accent-gold);
}

/* ===== CHANNEL SHELL ===== */
.channel-shell {
  border: 1px solid var(--line-strong);
  border-left: 2px solid rgba(232, 228, 220, 0.4);
  padding: 32px;
}

.channel-intro {
  margin-bottom: 24px;
}

.channel-section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.channel-section-label::before {
  content: "";
  width: 20px;
  height: 1px;
  background: rgba(232, 228, 220, 0.6);
}

.channel-heading {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-primary);
}

.channel-heading em {
  font-style: italic;
  color: var(--accent-gold);
}

/* ===== CHANNEL CARDS ===== */
.channel-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.channel-card {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border: 1px solid var(--line-strong);
  background: rgba(26, 34, 64, 0.38);
  cursor: pointer;
  text-align: left;
  color: var(--text);
  transition: border-color 0.22s ease, background 0.22s ease, transform 0.15s ease;
  position: relative;
  overflow: hidden;
}

.channel-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(212, 175, 111, 0.06), transparent);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.channel-card:hover {
  border-color: rgba(212, 175, 111, 0.5);
  background: rgba(26, 34, 64, 0.6);
  transform: translateX(2px);
}

.channel-card:hover::before {
  opacity: 1;
}

.channel-card.is-active {
  border-color: var(--accent-gold);
  background: rgba(212, 175, 111, 0.07);
}

.channel-card.is-active::before {
  opacity: 1;
}

.channel-card-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-subtle);
  background: rgba(26, 34, 64, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  flex-shrink: 0;
  transition: color 0.22s ease, border-color 0.22s ease;
  position: relative;
  z-index: 1;
}

.channel-card:hover .channel-card-icon,
.channel-card.is-active .channel-card-icon {
  color: var(--accent-gold);
  border-color: rgba(212, 175, 111, 0.4);
}

.channel-card-info {
  position: relative;
  z-index: 1;
}

.channel-card-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 3px;
  letter-spacing: 0.01em;
}

.channel-card-desc {
  font-size: 12px;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
}

.channel-card-badge {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid rgba(212, 175, 111, 0.4);
  color: var(--accent-gold);
  background: rgba(212, 175, 111, 0.06);
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.channel-card-badge--copy {
  border-color: rgba(232, 228, 220, 0.25);
  color: var(--text-secondary);
  background: transparent;
}

.channel-card.is-active .channel-card-badge--copy {
  border-color: rgba(212, 175, 111, 0.4);
  color: var(--accent-gold);
}

/* ===== MESSAGE PANEL ===== */
.message-panel {
  margin-top: 16px;
  border: 1px solid rgba(212, 175, 111, 0.4);
  border-left: 2px solid var(--accent-gold);
  background: rgba(212, 175, 111, 0.03);
  padding: 24px;
  animation: slideUp2 0.25s ease;
}

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

.message-panel-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--text-secondary);
}

.message-panel-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.message-channel-name {
  color: var(--accent-gold);
}

.message-box {
  background: rgba(15, 20, 36, 0.6);
  border: 1px solid var(--line-strong);
  padding: 18px 20px;
  margin-bottom: 18px;
}

.message-box p {
  font-size: 15px;
  color: var(--text-primary);
  line-height: 1.65;
  user-select: all;
}

.message-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-copy-msg {
  gap: 8px;
  padding: 10px 18px;
  min-height: 42px;
  font-size: 12px;
}

.channel-action-btn {
  gap: 8px;
  padding: 10px 20px;
  min-height: 42px;
  font-size: 12px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .channel-shell {
    padding: 28px 24px;
  }

  .channel-card {
    grid-template-columns: 40px 1fr auto;
    gap: 12px;
    padding: 12px 14px;
  }

  .selection-bar-label {
    display: none;
  }
}

@media (max-width: 600px) {
  .ssb-left {
    gap: 8px;
  }

  .selection-bar-inner {
    flex-wrap: wrap;
    gap: 12px;
  }

  .selection-bar-info {
    width: 100%;
  }

  .selection-bar-actions {
    width: 100%;
    justify-content: flex-end;
  }

  .message-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-copy-msg,
  .channel-action-btn {
    justify-content: center;
  }
}
