* {
  box-sizing: border-box;
}

:root {
  --bg: #050605;
  --panel: #0d0e0d;
  --panel-soft: #111211;
  --line: rgba(255, 255, 255, 0.15);
  --line-strong: rgba(255, 255, 255, 0.25);
  --text: #f4f1eb;
  --muted: rgba(244, 241, 235, 0.72);
  --gold: #ba8f55;
  --gold-light: #d5b077;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --sans: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", sans-serif;
  --serif: "Times New Roman", "Yu Mincho", "Hiragino Mincho ProN", serif;
}

html {
  scroll-behavior: smooth;
  background: #000;
}

body {
  margin: 0;
  background: #000;
  color: var(--text);
  font-family: var(--sans);
}

body.modal-open {
  overflow: hidden;
}

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

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

.page {
  width: min(100%, 864px);
  margin: 0 auto;
  background: var(--bg);
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.9);
}

.site-header,
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 50px;
  padding: 0 28px;
  background: rgba(5, 6, 5, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  transition: border-color 0.3s var(--ease-out), background 0.3s var(--ease-out);
}

.brand {
  display: grid;
  gap: 5px;
  min-width: 112px;
  font-family: var(--serif);
  line-height: 1;
}

.brand span {
  color: #fff;
  font-size: 22px;
  letter-spacing: 4px;
}

.brand small {
  color: var(--gold-light);
  font-family: Arial, sans-serif;
  font-size: 7px;
  letter-spacing: 2px;
}

.global-nav,
.footer nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
  font-size: 9px;
  font-weight: 700;
}

.global-nav a,
.nav-dropdown-toggle {
  color: rgba(244, 241, 235, 0.86);
  transition: color 0.25s var(--ease-out);
}

.global-nav a:hover,
.global-nav a:focus-visible,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible {
  color: var(--gold-light);
}

.nav-group {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

.nav-dropdown-toggle .nav-arrow {
  display: inline-block;
  color: var(--gold-light);
  font-family: "Material Icons";
  font-size: 18px;
  font-weight: normal;
  line-height: 1;
  transition: transform 0.25s var(--ease-out);
  transform: rotate(0deg);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 30;
  display: grid;
  min-width: 172px;
  padding: 12px 10px 10px;
  background:
    radial-gradient(circle at 12% 0%, rgba(213, 176, 119, 0.18), transparent 42%),
    rgba(8, 9, 8, 0.96);
  border: 1px solid rgba(213, 176, 119, 0.28);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.38);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition:
    opacity 0.24s var(--ease-out),
    transform 0.24s var(--ease-out);
}

.nav-dropdown a {
  padding: 10px 12px;
  color: rgba(244, 241, 235, 0.82);
  font-size: 10px;
  line-height: 1.4;
  white-space: nowrap;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
  color: #fff;
  background: rgba(213, 176, 119, 0.1);
}

.nav-group:hover .nav-dropdown,
.nav-group.is-open .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
@media (max-width: 768px) {
  .nav-group:hover .nav-dropdown,
  .nav-group.is-open .nav-dropdown {
    transform: translate(0%, 0);
  }
}

.nav-group:hover .nav-dropdown-toggle .nav-arrow,
.nav-group.is-open .nav-dropdown-toggle .nav-arrow {
  transform: rotate(180deg);
}

.nav-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 8px;
  border: 1px solid rgba(213, 176, 119, 0.4);
  background: rgba(255, 255, 255, 0.035);
  color: #fff;
  cursor: pointer;
}

.nav-menu-toggle span {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: var(--gold-light);
  transition: transform 0.25s var(--ease-out), opacity 0.25s var(--ease-out);
}

.nav-menu-toggle small {
  display: block;
  margin-top: 2px;
  color: rgba(244, 241, 235, 0.68);
  font-size: 7px;
  line-height: 1;
}

.site-header.is-menu-open .nav-menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.is-menu-open .nav-menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .nav-menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.header-button,
.footer-button {
  display: inline-grid;
  min-width: 82px;
  height: 30px;
  place-items: center;
  background: linear-gradient(135deg, #b98a4e, #d1ae75);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 378px;
  overflow: hidden;
  background:
    radial-gradient(circle at 60% 20%, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(90deg, #020302 0%, #070807 46%, #141514 100%);
}

.hero-bg {
  position: absolute;
  inset: 0 0 0 33%;
  background:
    linear-gradient(90deg, rgba(5, 6, 5, 0.98), rgba(5, 6, 5, 0.18) 52%, rgba(5, 6, 5, 0.02)),
    url("./assets/semantic/hero-architecture.jpg") center / cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 480px;
  padding: 58px 0 0 58px;
}

.hero h1,
section h2,
.cta h2 {
  margin: 0;
  color: #fff;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0;
}

.hero h1 {
  font-size: 36px;
  line-height: 1.62;
}

.hero p {
  width: 430px;
  margin: 24px 0 34px;
  color: #f0eee9;
  font-size: 10px;
  font-weight: 700;
  line-height: 2.05;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 154px;
  height: 38px;
  padding: 0 15px 0 28px;
  font-size: 9px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  transition:
    border-color 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease-out),
    transform 0.3s var(--ease-out);
}

.button::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -70%;
  width: 55%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.26), transparent);
  transform: skewX(-18deg);
  transition: left 0.65s var(--ease-out);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.35);
}

.button:hover::before,
.button:focus-visible::before {
  left: 120%;
}

.button span {
  margin-left: 18px;
  font-size: 15px;
}

.button.primary {
  background: linear-gradient(135deg, #b98a4e, #d1ae75);
  color: #fff;
  box-shadow: 0 0 0 rgba(213, 176, 119, 0);
}

.button.ghost {
  min-width: 170px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  color: #fff;
}

.button.ghost:hover,
.button.ghost:focus-visible {
  border-color: rgba(213, 176, 119, 0.8);
}

.side-label {
  position: absolute;
  right: 18px;
  bottom: 34px;
  color: var(--gold-light);
  font-size: 8px;
  letter-spacing: 1px;
  writing-mode: vertical-rl;
}

section {
  padding: 40px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.reveal-target {
  --reveal-x: 0;
  --reveal-y: 22px;
  --reveal-scale: 1;
  --reveal-blur: 0;
  --reveal-delay: 0ms;
  opacity: 0;
  transform: translate3d(var(--reveal-x), var(--reveal-y), 0) scale(var(--reveal-scale));
  filter: blur(var(--reveal-blur));
  transition:
    opacity 0.75s var(--ease-out),
    transform 0.75s var(--ease-out),
    filter 0.75s var(--ease-out);
  transition-delay: var(--reveal-delay);
  will-change: opacity, transform, filter;
}

.reveal-target.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.reveal-from-left {
  --reveal-x: -34px;
  --reveal-y: 0;
}

.reveal-from-right {
  --reveal-x: 34px;
  --reveal-y: 0;
}

.reveal-from-bottom {
  --reveal-y: 30px;
}

.reveal-zoom {
  --reveal-scale: 0.965;
}

.reveal-blur {
  --reveal-blur: 8px;
}

.reveal-line {
  --reveal-x: -22px;
  --reveal-y: 0;
  --reveal-blur: 6px;
}

.hero.reveal-target {
  --reveal-scale: 1.015;
  --reveal-blur: 10px;
  transition-duration: 0.95s;
}

.answer.reveal-target,
.cta.reveal-target {
  transition-duration: 0.9s;
}

.service.reveal-target,
.clients.reveal-target,
.inquiry.reveal-target {
  transition-duration: 0.85s;
}

.answer {
  background:
    linear-gradient(135deg, rgba(186, 143, 85, 0.16), rgba(255, 255, 255, 0.02)),
    #090a09;
}

.answer p:last-child {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 2;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-light);
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.3px;
}

section h2 {
  font-size: 24px;
  line-height: 1.55;
}

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

.section-head > p {
  max-width: 380px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.9;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  white-space: nowrap;
}

.text-link span {
  color: var(--gold-light);
  font-size: 16px;
}

.feature {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 18px;
  background: linear-gradient(90deg, #070807, #111211 54%, #080908);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--line);
}

.feature-list article {
  min-height: 112px;
  padding: 0 17px 0 18px;
  border-right: 1px solid var(--line);
  transition: transform 0.35s var(--ease-out), border-color 0.35s var(--ease-out);
}

.feature-list article:hover {
  transform: translateY(-4px);
  border-color: rgba(213, 176, 119, 0.36);
}

.icon {
  display: block;
  height: 38px;
  color: var(--gold);
  font-size: 31px;
  line-height: 1;
}

.material-icons.icon,
.material-icons.process-icon {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  font-feature-settings: "liga";
  text-transform: none;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
}

.feature h3,
.process h3,
.work-card h3,
.blog h3 {
  margin: 0;
  color: #fff;
  font-size: 10px;
  line-height: 1.65;
}

.feature h3 {
  color: var(--gold-light);
  margin-bottom: 10px;
}

.feature p,
.process p,
.work-card p,
.voice p,
.voice blockquote,
.blog time,
.faq-list p,
.inquiry-copy p,
.cta p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.9;
}

.service {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 34px;
  align-items: center;
  min-height: 292px;
  background:
    radial-gradient(circle at 78% 40%, rgba(255, 255, 255, 0.08), transparent 34%),
    #070807;
}

.service img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

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

.service-panel article {
  position: relative;
  min-height: 118px;
  padding: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.11);
  transition:
    transform 0.35s var(--ease-out),
    border-color 0.35s var(--ease-out),
    background 0.35s var(--ease-out);
}

.service-panel article:hover {
  transform: translateY(-5px);
  border-color: rgba(213, 176, 119, 0.42);
  background: rgba(255, 255, 255, 0.045);
}

.service-panel h3 {
  margin: 0 0 10px;
  color: var(--gold-light);
  font-size: 12px;
  line-height: 1.6;
}

.service-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.9;
}

.service-menu {
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-strong);
}

.service-menu a,
.service-menu button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 29px;
  padding: 0;
  border-bottom: 1px solid var(--line-strong);
  border-top: 0;
  border-right: 0;
  border-left: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 9px;
  font-weight: 700;
  text-align: left;
  transition:
    color 0.25s var(--ease-out),
    padding-left 0.25s var(--ease-out),
    border-color 0.25s var(--ease-out);
}

.service-menu span {
  color: var(--gold-light);
  font-size: 17px;
}

.service-menu button:hover,
.service-menu button:focus-visible {
  color: var(--gold-light);
  padding-left: 8px;
  border-color: rgba(213, 176, 119, 0.58);
}

.service-modal-layer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
  animation: modalLayerIn 0.28s var(--ease-out) both;
}

.service-modal-layer[hidden],
.service-modal[hidden] {
  display: none;
}

.service-modal {
  position: relative;
  width: min(100%, 760px);
  max-height: min(82vh, 720px);
  padding: 42px;
  overflow: auto;
  background:
    radial-gradient(circle at 80% 0%, rgba(213, 176, 119, 0.16), transparent 34%),
    linear-gradient(145deg, #111211, #050605 72%);
  border: 1px solid rgba(213, 176, 119, 0.38);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.72);
  animation: modalPanelIn 0.38s var(--ease-out) both;
}

.service-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.service-modal h2 {
  max-width: 620px;
  margin: 0;
  color: #fff;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.55;
}

.service-modal__lead,
.service-modal__note {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 2;
}

.service-modal__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.service-modal__grid span {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.6;
}

.service-modal__grid span::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-right: 10px;
  flex: 0 0 auto;
  background: var(--gold-light);
}

.service-modal__note {
  padding: 16px 18px;
  background: rgba(213, 176, 119, 0.08);
  border-left: 2px solid rgba(213, 176, 119, 0.72);
}

.service-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 26px;
}

.service-modal__subclose {
  height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 800;
}

.works,
.blog,
.voice,
.faq,
.inquiry {
  background: radial-gradient(circle at 50% 0%, rgba(188, 143, 85, 0.08), transparent 34%), #050605;
}

.card-grid {
  display: grid;
  gap: 10px;
}

.works-grid {
  grid-template-columns: repeat(5, 1fr);
}

.work-card,
.blog article,
.voice article,
.faq-list details {
  position: relative;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    transform 0.35s var(--ease-out),
    border-color 0.35s var(--ease-out),
    background 0.35s var(--ease-out);
}

.work-card:hover,
.blog article:hover,
.voice article:hover,
.faq-list details:hover {
  transform: translateY(-5px);
  border-color: rgba(213, 176, 119, 0.4);
  background: rgba(255, 255, 255, 0.04);
}

.work-card img {
  height: 110px;
  width: 100%;
  object-fit: cover;
}

.work-card div {
  min-height: 104px;
  padding: 13px 10px 12px;
}

.work-card p {
  margin-bottom: 9px;
  color: var(--gold-light);
  font-size: 8px;
}

.work-card a,
.blog article a {
  display: inline-block;
  margin-top: 11px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 8px;
}

.process {
  background:
    linear-gradient(180deg, rgba(5, 6, 5, 0.1), rgba(5, 6, 5, 0.96)),
    radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.1), transparent 38%),
    #080908;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 44px;
  margin-top: 24px;
}

.process-list article {
  position: relative;
}

.process-list article:not(:last-child)::after {
  content: "›";
  position: absolute;
  top: 38px;
  right: -28px;
  color: rgba(255, 255, 255, 0.6);
}

.process-icon {
  display: block;
  margin-bottom: 14px;
  color: var(--gold-light);
  font-size: 34px;
  line-height: 1;
}

.process h3 {
  margin-bottom: 9px;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.faq-list summary {
  position: relative;
  min-height: 54px;
  padding: 16px 44px 12px 18px;
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 17px;
  right: 18px;
  color: var(--gold-light);
  font-size: 18px;
  transition: transform 0.28s var(--ease-out), opacity 0.28s var(--ease-out);
}

.faq-list details[open] summary::after {
  content: "-";
  transform: rotate(180deg);
}

.faq-answer {
  overflow: hidden;
  height: 0;
  opacity: 0;
  transition:
    height 0.42s var(--ease-out),
    opacity 0.3s var(--ease-out);
}

.faq-list details[open] .faq-answer {
  height: auto;
  opacity: 1;
}

.faq-list p {
  margin: 0;
  padding: 0 18px 20px;
  font-size: 11px;
}

.clients {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: stretch;
  background:
    radial-gradient(circle at 18% 24%, rgba(186, 143, 85, 0.14), transparent 30%),
    linear-gradient(135deg, #0b0c0b, #050605 70%);
}

.clients .eyebrow {
  margin-bottom: 10px;
}

.clients__head {
  display: grid;
  align-content: center;
}

.clients h2 {
  font-size: 24px;
  line-height: 1.45;
  white-space: nowrap;
}

.clients__head p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.9;
}

.clients__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: var(--sans);
}

.clients__cards li {
  position: relative;
  display: grid;
  min-height: 128px;
  align-content: start;
  gap: 8px;
  padding: 18px 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.026);
  border: 1px solid rgba(255, 255, 255, 0.11);
  transition:
    transform 0.35s var(--ease-out),
    border-color 0.35s var(--ease-out),
    background 0.35s var(--ease-out);
}

.clients__cards li:hover {
  transform: translateY(-5px);
  border-color: rgba(213, 176, 119, 0.42);
  background: rgba(255, 255, 255, 0.04);
}

.clients__cards li::after {
  content: "";
  position: absolute;
  inset: auto 14px 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(213, 176, 119, 0.75), transparent);
  opacity: 0.55;
}

.clients__kicker {
  color: var(--gold-light);
  font-family: Arial, sans-serif;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.clients__cards strong {
  color: #fff;
  font-size: 16px;
  line-height: 1.35;
}

.clients__cards li > span:last-child {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.75;
}

.clients .text-link {
  grid-column: 2;
  justify-self: end;
  font-size: 12px;
  font-weight: 800;
}

.voice-layout {
  display: grid;
  grid-template-columns: 1fr 268px;
  gap: 10px;
  align-items: stretch;
}

.voice-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.voice article {
  padding: 22px 15px;
}

.voice blockquote {
  position: relative;
  min-height: 76px;
  padding: 0;
}

.voice blockquote::before {
  content: "“";
  display: block;
  margin-bottom: 4px;
  color: rgba(213, 176, 119, 0.55);
  font-family: var(--serif);
  font-size: 28px;
  line-height: 0.7;
}

.voice p {
  color: #fff;
  font-size: 9px;
}

.voice img {
  height: 100%;
  min-height: 166px;
  object-fit: cover;
}

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

.blog article {
  position: relative;
  min-height: 180px;
}

.blog img {
  width: 100%;
  height: 80px;
  object-fit: cover;
}

.blog time,
.blog h3 {
  display: block;
  padding-inline: 12px;
}

.blog time {
  margin-top: 13px;
  font-size: 8px;
}

.blog h3 {
  margin-top: 8px;
}

.blog article a {
  position: absolute;
  right: 13px;
  bottom: 13px;
  color: #fff;
  font-size: 17px;
}

.insight-block {
  margin-top: 28px;
}

.insight-block:first-of-type {
  margin-top: 0;
}

.insight-block > h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 15px;
}

.insight-card,
.news-card {
  position: relative;
  min-height: 225px;
  padding: 18px 16px 42px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.insight-category {
  display: inline-flex;
  margin: 0 0 10px;
  padding: 4px 8px;
  color: #090a09;
  background: var(--gold-light);
  font-size: 8px;
  font-weight: 800;
  line-height: 1;
}

.insight-card time,
.news-card time {
  display: block;
  margin-bottom: 10px;
  color: rgba(244, 241, 235, 0.62);
  font-size: 9px;
  font-weight: 700;
}

.insight-card h3,
.news-card h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 12px;
  line-height: 1.7;
}

.insight-card p:not(.insight-category),
.news-card p,
.empty-text {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.9;
}

.insight-card a,
.news-card a {
  position: absolute;
  right: 16px;
  bottom: 16px;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}

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

.system-column-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 0;
  overflow: hidden;
}

.system-column-thumb {
  position: static !important;
  right: auto !important;
  bottom: auto !important;
  display: block;
  width: 100%;
  height: 180px;
  margin: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(213, 176, 119, 0.22), transparent 38%),
    linear-gradient(135deg, #151615, #050605);
}

.system-column-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.6s var(--ease-out), filter 0.6s var(--ease-out);
}

.system-column-card:hover .system-column-thumb img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.06);
}

.system-column-card:hover .system-column-read {
  color: var(--gold-light);
}

.system-column-thumb span {
  display: grid;
  height: 100%;
  place-items: center;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.system-column-body {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px 16px 44px;
}

.system-column-read {
  position: absolute;
  right: 16px;
  bottom: 16px;
}

.inquiry {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 34px;
  align-items: start;
}

.inquiry-copy p {
  margin-top: 16px;
  font-size: 11px;
}

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

.contact-form label {
  display: grid;
  gap: 7px;
}

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

.contact-form span {
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 0;
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
  font: inherit;
  font-size: 13px;
  outline: none;
}

.contact-form input,
.contact-form select {
  height: 42px;
  padding: 0 13px;
}

.contact-form textarea {
  min-height: 118px;
  padding: 12px 13px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(213, 176, 119, 0.85);
  box-shadow: 0 0 0 2px rgba(213, 176, 119, 0.12);
}

.contact-form button {
  grid-column: 1 / -1;
  justify-self: start;
  min-width: 220px;
  height: 44px;
  border: 0;
  background: linear-gradient(135deg, #b98a4e, #d1ae75);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
}

.contact-panel {
  position: relative;
  padding: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    transform 0.35s var(--ease-out),
    border-color 0.35s var(--ease-out),
    background 0.35s var(--ease-out);
}

.contact-panel:hover {
  transform: translateY(-4px);
  border-color: rgba(213, 176, 119, 0.4);
  background: rgba(255, 255, 255, 0.04);
}

.contact-panel h3 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 16px;
}

.contact-panel ul {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding-left: 1.2em;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.8;
}

.cta {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  min-height: 142px;
  margin: 0 28px 0;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(213, 176, 119, 0.45);
  background: #080908;
}

.cta > div {
  position: relative;
  z-index: 1;
}

.cta h2 {
  font-size: 23px;
}

.cta p {
  max-width: 380px;
  margin-top: 14px;
}

.cta img {
  position: absolute;
  inset: 0 0 0 auto;
  width: 52%;
  height: 100%;
  object-fit: cover;
  opacity: 0.52;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
}

.site-footer {
  margin-top: 28px;
  padding: 44px 36px 0;
  background:
    radial-gradient(circle at 16% 0%, rgba(186, 143, 85, 0.16), transparent 30%),
    #050605;
  border-top: 1px solid rgba(213, 176, 119, 0.24);
  display: grid;
  grid-template-columns: minmax(240px, 1.3fr) repeat(3, minmax(140px, 1fr));
  gap: 34px;
}

.site-footer__brand {
  display: grid;
  align-content: start;
  gap: 18px;
}

.site-footer__brand p {
  max-width: 320px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.9;
}

.site-footer__nav {
  display: grid;
  align-content: start;
  gap: 12px;
}

.site-footer__nav h2 {
  margin: 0 0 4px;
  color: var(--gold-light);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.site-footer__nav a {
  color: rgba(244, 241, 235, 0.78);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
}

.site-footer__nav a:hover,
.site-footer__nav a:focus-visible {
  color: #fff;
}

.site-footer__bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-family: Arial, sans-serif;
  font-size: 10px;
}

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

@keyframes modalPanelIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal-target {
    clip-path: none;
    filter: none;
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 1024px) {
  .page {
    width: min(100%, 1180px);
  }

  .site-header,
  .footer {
    min-height: 64px;
    padding-inline: 36px;
  }

  .global-nav,
  .footer nav {
    gap: 32px;
    font-size: 11px;
  }

  .header-button,
  .footer-button {
    min-width: 108px;
    height: 38px;
    font-size: 11px;
  }

  .hero {
    min-height: 520px;
  }

  .hero-bg {
    inset: 0 0 0 34%;
  }

  .hero-content {
    width: 620px;
    padding: 94px 0 0 86px;
  }

  .hero h1 {
    font-size: 48px;
    line-height: 1.5;
  }

  .hero p {
    width: 560px;
    font-size: 13px;
  }

  .button {
    min-width: 190px;
    height: 46px;
    font-size: 11px;
  }

  .button.ghost {
    min-width: 220px;
  }

  section {
    padding: 64px 56px;
  }

  section h2 {
    font-size: 32px;
  }

  .section-head {
    margin-bottom: 36px;
  }

  .section-head > p {
    max-width: 500px;
    font-size: 13px;
  }

  .answer p:last-child {
    max-width: 900px;
    font-size: 15px;
  }

  .feature {
    grid-template-columns: 240px 1fr;
    gap: 28px;
  }

  .feature-list article {
    min-height: 150px;
    padding: 0 26px;
  }

  .feature h3,
  .process h3,
  .work-card h3,
  .blog h3 {
    font-size: 12px;
  }

  .feature p,
  .process p,
  .work-card p,
  .voice p,
  .voice blockquote,
  .blog time,
  .faq-list p,
  .inquiry-copy p,
  .cta p {
    font-size: 12px;
  }

  .service {
    grid-template-columns: 380px 1fr;
    gap: 56px;
    min-height: 380px;
  }

  .service img {
    height: 330px;
  }

  .service-panel {
    gap: 18px;
  }

  .service-panel article {
    min-height: 150px;
    padding: 24px;
  }

  .service-panel h3 {
    font-size: 15px;
  }

  .service-panel p {
    font-size: 13px;
  }

  .service-menu a {
    min-height: 38px;
    font-size: 11px;
  }

  .service-menu button {
    min-height: 38px;
    font-size: 11px;
  }

  .card-grid,
  .voice-cards {
    gap: 16px;
  }

  .work-card img {
    height: 150px;
  }

  .work-card div {
    min-height: 132px;
    padding: 18px 16px 16px;
  }

  .process-list {
    gap: 70px;
    margin-top: 36px;
  }

  .process-list article:not(:last-child)::after {
    right: -42px;
  }

  .faq-list {
    gap: 18px;
  }

  .faq-list summary {
    min-height: 68px;
    padding: 20px 54px 16px 22px;
    font-size: 15px;
  }

  .faq-list p {
    padding: 0 22px 24px;
  }

  .clients {
    grid-template-columns: 250px 1fr;
    gap: 28px;
    padding-block: 44px;
  }

  .clients h2 {
    font-size: 28px;
    line-height: 1.45;
  }

  .clients__head p {
    font-size: 12px;
  }

  .clients__cards {
    gap: 14px;
  }

  .clients__cards li {
    min-height: 142px;
    padding: 22px 18px;
  }

  .clients__cards strong {
    font-size: 18px;
  }

  .clients__cards li > span:last-child {
    font-size: 11px;
  }

  .clients .text-link {
    grid-column: 2;
    justify-self: end;
    font-size: 12px;
  }

  .voice-layout {
    grid-template-columns: 1fr 360px;
    gap: 16px;
  }

  .voice article {
    padding: 28px 22px;
  }

  .voice img {
    min-height: 220px;
  }

  .blog img {
    height: 116px;
  }

  .blog article {
    min-height: 235px;
  }

  .insight-card,
  .news-card {
    min-height: 250px;
    padding: 24px 20px 50px;
  }

  .system-column-card {
    min-height: 460px;
    padding: 0;
  }

  .system-column-thumb {
    height: 210px;
  }

  .system-column-thumb img {
    height: 100%;
  }

  .system-column-body {
    padding: 22px 20px 50px;
  }

  .insight-card h3,
  .news-card h3 {
    font-size: 14px;
  }

  .insight-card p:not(.insight-category),
  .news-card p,
  .empty-text {
    font-size: 12px;
  }

  .inquiry {
    grid-template-columns: 340px 1fr;
    gap: 56px;
  }

  .contact-panel {
    padding: 32px;
  }

  .site-footer {
    padding: 56px 56px 0;
    gap: 42px;
  }

  .cta {
    min-height: 190px;
    margin-inline: 56px;
    padding: 40px;
  }

  .cta p {
    max-width: 520px;
  }
}

@media (min-width: 821px) {
  .nav-group::after {
    content: "";
    position: absolute;
    left: -12px;
    right: -12px;
    top: 100%;
    height: 14px;
  }
}

@media (max-width: 820px) {
  .site-header {
    position: sticky;
  }

  .nav-menu-toggle {
    display: block;
    margin-left: auto;
    order: 3;
  }

  .header-button {
    order: 2;
  }

  .global-nav {
    position: absolute;
    top: 100%;
    right: 20px;
    left: 20px;
    z-index: 25;
    display: grid;
    gap: 0;
    margin-left: 0;
    padding: 14px;
    background:
      radial-gradient(circle at 12% 0%, rgba(213, 176, 119, 0.16), transparent 34%),
      rgba(0, 0, 0, 0.98);
    border: 0;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 0.25s var(--ease-out),
      transform 0.25s var(--ease-out);
  }

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

  .global-nav > a,
  .nav-dropdown-toggle {
    width: 100%;
    min-height: 46px;
    justify-content: space-between;
    padding: 0 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 14px;
  }

  .nav-dropdown-toggle .nav-arrow {
    transform: rotate(0deg);
  }

  .nav-group.is-open .nav-dropdown-toggle .nav-arrow {
    transform: rotate(180deg);
  }

  .nav-group {
    display: grid;
  }

  .nav-group::after {
    display: none;
  }

  .nav-dropdown {
    position: static;
    display: grid;
    max-height: 0;
    min-width: 0;
    gap: 6px;
    padding: 0;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.72);
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: max-height 0.28s var(--ease-out), padding 0.28s var(--ease-out);
  }

  .nav-group.is-open .nav-dropdown {
    max-height: 220px;
    padding: 8px 0 12px;
  }

  .nav-dropdown a {
    min-height: 38px;
    margin-inline: 8px;
    padding: 10px 14px;
    color: #fff;
    background: transparent;
    border: 0;
    font-size: 13px;
    font-weight: 800;
  }

  .nav-dropdown a:hover,
  .nav-dropdown a:focus-visible {
    color: var(--gold-light);
    background: transparent;
  }

  .footer nav {
    gap: 16px;
  }

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

  .clients {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .clients h2 {
    white-space: normal;
  }

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

  .clients .text-link {
    grid-column: 1;
    justify-self: start;
  }

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

  .site-footer__brand,
  .site-footer__bottom {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .site-header,
  .footer {
    flex-wrap: wrap;
    padding: 18px 20px;
  }

  .footer nav {
    order: 3;
    width: 100%;
    flex-wrap: wrap;
    margin-left: 0;
  }

  .hero {
    min-height: 560px;
  }

  .hero-bg {
    inset: 0;
    opacity: 0.78;
  }

  .hero-content {
    width: auto;
    padding: 110px 24px 0;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    width: auto;
    font-size: 14px;
    line-height: 2;
  }

  .footer nav {
    font-size: 12px;
    line-height: 1.6;
  }

  .header-button,
  .footer-button,
  .button,
  .text-link {
    font-size: 13px;
  }

  .button {
    min-width: 180px;
    height: 46px;
    padding-inline: 24px 16px;
  }

  .eyebrow {
    font-size: 12px;
  }

  section h2 {
    font-size: 27px;
  }

  .answer,
  .section-title,
  .section-head,
  .service-copy > .eyebrow,
  .service-copy > h2,
  .process > .eyebrow,
  .process > h2,
  .clients__head,
  .inquiry-copy,
  .cta > div {
    text-align: center;
  }

  .section-head {
    justify-items: center;
  }

  .section-head > div,
  .section-head > p,
  .clients__head p,
  .inquiry-copy p,
  .cta p {
    margin-inline: auto;
  }

  .section-head .text-link,
  .clients__cta {
    justify-content: center;
  }

  .section-head > p,
  .answer p:last-child,
  .feature p,
  .process p,
  .work-card p,
  .voice p,
  .voice blockquote,
  .blog time,
  .faq-list p,
  .inquiry-copy p,
  .cta p {
    font-size: 14px;
    line-height: 2;
  }

  .feature h3,
  .process h3,
  .work-card h3,
  .blog h3,
  .service-panel h3,
  .contact-panel h3 {
    font-size: 15px;
    line-height: 1.7;
  }

  .service-panel p,
  .contact-panel ul,
  .clients__cards span,
  .site-footer__brand p,
  .site-footer__nav a {
    font-size: 14px;
    line-height: 1.9;
  }

  .service-menu a,
  .service-menu button {
    min-height: 44px;
    font-size: 13px;
  }

  .clients__kicker,
  .insight-category {
    font-size: 10px;
  }

  .clients__cards strong {
    font-size: 20px;
  }

  .insight-card time,
  .news-card time,
  .system-column-read {
    font-size: 12px;
  }

  .insight-card h3,
  .news-card h3 {
    font-size: 16px;
  }

  .insight-card p:not(.insight-category),
  .news-card p,
  .empty-text {
    font-size: 14px;
    line-height: 1.9;
  }

  section {
    padding: 42px 20px;
  }

  .feature,
  .service,
  .process-list,
  .faq-list,
  .voice-layout,
  .voice-cards,
  .blog-grid,
  .news-grid,
  .inquiry,
  .contact-form,
  .cta {
    display: block;
  }

  .feature-list,
  .works-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .feature-list {
    border-left: 0;
  }

  .feature-list article {
    padding: 20px 0;
    border-right: 0;
    border-top: 1px solid var(--line);
    text-align: center;
  }

  .feature-list .icon,
  .process-icon {
    margin-right: auto;
    margin-left: auto;
  }

  .service img,
  .voice img,
  .contact-form,
  .contact-panel,
  .insight-card,
  .news-card,
  .cta .button-row {
    margin-top: 24px;
  }

  .service-panel {
    display: block;
  }

  .service-panel article {
    margin-top: 12px;
  }

  .system-column-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .system-column-card {
    padding: 0;
  }

  .system-column-thumb {
    height: 210px;
  }

  .system-column-thumb img {
    height: 100%;
  }

  .service img {
    height: 230px;
  }

  .process-list article {
    margin-top: 24px;
    text-align: center;
  }

  .process-list article:not(:last-child)::after {
    display: none;
  }

  .section-head {
    display: block;
  }

  .section-head > p,
  .section-head .text-link {
    display: inline-flex;
    margin-top: 14px;
  }

  .faq-list summary {
    min-height: 64px;
    padding: 18px 48px 16px 18px;
    font-size: 15px;
  }

  .faq-list details,
  .contact-form label,
  .contact-form button {
    margin-top: 12px;
  }

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

  .clients__cards li {
    min-height: auto;
    justify-items: center;
    text-align: center;
  }

  .cta {
    margin-inline: 20px;
  }

  .cta img {
    width: 100%;
    opacity: 0.24;
    clip-path: none;
  }

  .contact-form button {
    width: 100%;
  }

  .service-modal-layer {
    padding: 16px;
  }

  .service-modal {
    max-height: 86vh;
    padding: 34px 22px 24px;
  }

  .service-modal h2 {
    font-size: 23px;
  }

  .service-modal__lead,
  .service-modal__note {
    font-size: 14px;
    line-height: 1.9;
  }

  .service-modal__grid span,
  .service-modal__subclose {
    font-size: 13px;
  }

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

  .service-modal__actions,
  .service-modal__actions .button,
  .service-modal__subclose {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 40px 24px 0;
    text-align: center;
  }

  .site-footer__brand,
  .site-footer__bottom {
    grid-column: auto;
  }

  .site-footer__brand,
  .site-footer__nav {
    justify-items: center;
  }

  .site-footer__brand p {
    margin-inline: auto;
  }

  .site-footer__nav a {
    display: inline-flex;
    justify-content: center;
    text-align: center;
  }

  .site-footer__bottom {
    display: block;
  }
}
