:root {
  --bg: #f7f2ec;
  --bg-soft: #fffaf4;
  --panel: rgba(255, 250, 244, 0.84);
  --surface: #1f2a33;
  --surface-2: #9a7c69;
  --text: #24303a;
  --text-muted: #5f6974;
  --text-soft: #8f8a82;
  --accent: #c76f54;
  --accent-strong: #dd8a70;
  --accent-soft: rgba(199, 111, 84, 0.14);
  --line: rgba(68, 51, 39, 0.12);
  --line-soft: rgba(68, 51, 39, 0.08);
  --shadow: 0 18px 48px rgba(88, 65, 46, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100% - 32px));
  --header-height: 86px;
  --motion-fast: 160ms;
  --motion-base: 200ms;
  --motion-slow: 240ms;
  --motion-reveal: 420ms;
  --ease-standard: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-emphasis: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background:
    radial-gradient(ellipse 44% 30% at 4% 10%, rgba(221, 138, 112, 0.16) 0%, rgba(221, 138, 112, 0.09) 26%, rgba(221, 138, 112, 0.04) 50%, transparent 80%),
    radial-gradient(ellipse 36% 22% at 50% 6%, rgba(243, 220, 199, 0.2) 0%, rgba(243, 220, 199, 0.1) 34%, rgba(243, 220, 199, 0.03) 58%, transparent 82%),
    radial-gradient(ellipse 42% 28% at 96% 12%, rgba(199, 111, 84, 0.14) 0%, rgba(199, 111, 84, 0.08) 28%, rgba(199, 111, 84, 0.03) 54%, transparent 82%),
    linear-gradient(180deg, #fbf7f2 0%, #f6efe8 48%, #faf6f1 100%);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

body.image-preview-open {
  overflow: hidden;
}

body > .skiptranslate,
.goog-te-banner-frame.skiptranslate,
.goog-logo-link,
.goog-te-gadget,
.goog-te-gadget-simple,
.goog-te-combo {
  display: none !important;
}

.goog-te-spinner-pos,
#goog-gt-tt,
.goog-text-highlight {
  display: none !important;
}

body {
  top: 0 !important;
}

.google-translate-anchor {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(42, 35, 29, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42, 35, 29, 0.03) 1px, transparent 1px);
  background-size: 100px 100px;
  mask-image: radial-gradient(circle at center, black 55%, transparent 100%);
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 108px 0;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--surface-2);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 44px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 48px;
}

.section-heading h2,
.trust-copy h2,
.cta-banner h2,
.contact-copy h2,
.hero h1 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.02;
  letter-spacing: -0.04em;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.section-heading h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.section-heading p,
.trust-copy p,
.contact-copy p,
.about-story p,
.service-card p,
.project-card p,
.reference-group li,
.footer-brand p {
  color: var(--text-muted);
}

.section-heading-compact {
  margin-bottom: 28px;
}

.section-heading-about {
  max-width: none;
  margin-bottom: 34px;
}

.section-heading-about h2 {
  max-width: none;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.06;
}

.section-heading-areas {
  max-width: none;
}

.section-heading-areas h2 {
  max-width: none;
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  line-height: 1.06;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  overflow: visible;
  backdrop-filter: blur(22px);
  background: rgba(248, 244, 239, 0.76);
  border-bottom: 1px solid transparent;
  transition:
    border-color var(--motion-fast) var(--ease-standard),
    background-color var(--motion-fast) var(--ease-standard);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(199, 111, 84, 0.5), transparent);
  transform: scaleX(0.2);
  opacity: 0;
  transform-origin: center;
}

.site-header.is-scrolled {
  background: rgba(248, 244, 239, 0.92);
  border-color: var(--line);
}

.site-header.is-scrolled::after {
  opacity: 1;
  animation: navLineDrift 7s linear infinite;
}

.header-inner {
  width: var(--container);
  height: var(--header-height);
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex: 1 1 auto;
  min-width: 0;
}

.brand-mark {
  min-width: 174px;
  height: 78px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 0 22px;
  border-radius: 32px;
  border: 1px solid rgba(199, 111, 84, 0.18);
  background:
    radial-gradient(circle at top left, rgba(221, 138, 112, 0.22), transparent 58%),
    linear-gradient(180deg, rgba(255, 244, 238, 0.96), rgba(250, 239, 232, 0.9));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.42),
    0 12px 28px rgba(154, 118, 96, 0.12);
  transition:
    transform var(--motion-base) var(--ease-standard),
    box-shadow var(--motion-base) var(--ease-standard),
    border-color var(--motion-base) var(--ease-standard);
  animation: markFloat 6s ease-in-out infinite;
}

.brand-mark-iki {
  color: #ff0000;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.66rem;
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.9;
  transform: translateY(1px);
}

.brand-mark-el {
  margin-left: 0;
  color: #1f252c;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.66rem;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.08em;
  transform: translateY(1px);
}

.brand-copy {
  display: flex;
  align-items: center;
  min-width: 0;
}

.brand-copy strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.12rem;
  line-height: 1.1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.mobile-nav-footer {
  display: flex;
  align-items: center;
  gap: 18px;
}

.mobile-nav-controls {
  display: flex;
  align-items: center;
  gap: 18px;
}

.mobile-nav-backdrop,
.mobile-nav-head,
.mobile-nav-section-title,
.mobile-nav-link-indicator,
.nav-phone-label,
.mobile-nav-cta {
  display: none;
}

.site-nav .lang-dropdown {
  position: relative;
  flex: 0 0 auto;
}

.site-nav .lang-dropdown-toggle {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 10px 0 6px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #4b60d5;
  font-size: 0.98rem;
  font-weight: 700;
  transition:
    background-color var(--motion-fast) var(--ease-standard),
    color var(--motion-fast) var(--ease-standard);
}

.site-nav .lang-dropdown-toggle:hover,
.site-nav .lang-dropdown-toggle:focus-visible {
  background: rgba(75, 96, 213, 0.08);
  color: #394fc2;
}

.site-nav .lang-dropdown-current {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.site-nav .lang-emoji {
  width: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-size: 1.55rem;
  line-height: 1;
}

.site-nav .lang-dropdown-label,
.site-nav .lang-dropdown-item-label {
  white-space: nowrap;
}

.site-nav .lang-dropdown-chevron {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  transition: transform var(--motion-fast) var(--ease-standard);
}

.site-nav .lang-dropdown-chevron svg {
  width: 100%;
  height: 100%;
  display: block;
}

.site-nav .lang-dropdown.is-open .lang-dropdown-chevron {
  transform: rotate(180deg);
}

.site-nav .lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 252px;
  max-height: min(70vh, 560px);
  overflow-y: auto;
  padding: 18px 14px;
  display: grid;
  gap: 6px;
  border-radius: 34px;
  background: linear-gradient(180deg, #576adf 0%, #4a60d3 100%);
  box-shadow: 0 24px 52px rgba(63, 77, 173, 0.34);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(0.98);
  transform-origin: top left;
  transition:
    opacity var(--motion-fast) var(--ease-standard),
    transform var(--motion-fast) var(--ease-standard);
  z-index: 12;
}

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

@media (hover: hover) and (pointer: fine) {
  .site-nav .lang-dropdown:hover .lang-dropdown-menu,
  .site-nav .lang-dropdown:focus-within .lang-dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .site-nav .lang-dropdown:hover .lang-dropdown-chevron,
  .site-nav .lang-dropdown:focus-within .lang-dropdown-chevron {
    transform: rotate(180deg);
  }
}

.site-nav .lang-dropdown-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 20px;
  color: #f8fbff !important;
  font-size: 0.96rem;
  font-weight: 700;
  transition:
    background-color var(--motion-fast) var(--ease-standard),
    color var(--motion-fast) var(--ease-standard);
}

.site-nav .lang-dropdown-item::after {
  display: none;
}

.site-nav .lang-dropdown-item:hover,
.site-nav .lang-dropdown-item:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff !important;
  transform: none;
}

.site-nav .lang-dropdown-item[aria-current="true"] {
  background: rgba(255, 255, 255, 0.18);
}

.site-nav-links > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.96rem;
  font-weight: 600;
  transition:
    color var(--motion-fast) var(--ease-standard),
    transform var(--motion-fast) var(--ease-standard);
}

.site-nav-links > a::after,
.footer-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(221, 138, 112, 0.35));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--motion-base) var(--ease-standard);
}

.site-nav-links > a:hover,
.site-nav-links > a:focus-visible {
  color: var(--text);
  transform: translateY(-1px);
}

.site-nav-links > a:hover::after,
.site-nav-links > a:focus-visible::after,
.site-nav-links > a[aria-current="page"]::after,
.footer-nav a:hover::after,
.footer-nav a:focus-visible::after,
.footer-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-nav-links > a[aria-current="page"],
.footer-nav a[aria-current="page"] {
  color: var(--surface);
}

.nav-whatsapp,
.nav-phone {
  position: relative;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(199, 111, 84, 0.16);
  border-radius: 22px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.92), transparent 52%),
    linear-gradient(180deg, rgba(255, 251, 247, 0.98), rgba(249, 239, 230, 0.92));
  color: var(--text) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 16px 32px rgba(104, 76, 55, 0.12);
  backdrop-filter: blur(14px);
  transition:
    transform var(--motion-fast) var(--ease-standard),
    box-shadow var(--motion-fast) var(--ease-standard),
    border-color var(--motion-fast) var(--ease-standard),
    background-color var(--motion-fast) var(--ease-standard);
}

.nav-whatsapp::before,
.nav-phone::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.96;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.88), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), transparent 74%);
}

.nav-whatsapp {
  border-color: rgba(49, 181, 104, 0.18);
  background:
    radial-gradient(circle at top left, rgba(229, 255, 239, 0.96), transparent 54%),
    linear-gradient(180deg, rgba(241, 255, 246, 0.98), rgba(228, 247, 235, 0.94));
  color: #1b9b4c !important;
}

.nav-whatsapp:hover,
.nav-whatsapp:focus-visible {
  transform: translateY(-2px) scale(1.02);
  border-color: rgba(49, 181, 104, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 20px 34px rgba(24, 168, 77, 0.18);
}

.nav-whatsapp::after,
.nav-phone::after {
  display: none;
}

.nav-whatsapp svg,
.nav-phone svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.nav-phone:hover,
.nav-phone:focus-visible {
  transform: translateY(-2px) scale(1.02);
  border-color: rgba(199, 111, 84, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 20px 34px rgba(91, 61, 42, 0.16);
}

.nav-toggle {
  display: none;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--text);
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
  transition:
    transform var(--motion-fast) var(--ease-standard),
    opacity var(--motion-fast) var(--ease-standard);
}

body.nav-open .nav-toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

body.nav-open .nav-toggle span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.hero {
  overflow: clip;
  padding-top: 56px;
  padding-bottom: 88px;
}

.page-hero {
  padding-top: 58px;
  padding-bottom: 40px;
}

.page-hero-inner {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(221, 138, 112, 0.14), rgba(255, 255, 255, 0.72)),
    rgba(255, 250, 244, 0.86);
  box-shadow: var(--shadow);
}

.page-hero h1 {
  max-width: none;
  width: 100%;
  margin: 0 0 14px;
  font-size: clamp(2.15rem, 4.6vw, 3.7rem);
  line-height: 1.08;
}

.page-lead {
  max-width: 100%;
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.project-master-list-section {
  padding-top: 12px;
  padding-bottom: 26px;
}

.project-master-list-frame {
  overflow-x: auto;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(250, 244, 236, 0.92)),
    rgba(255, 250, 244, 0.92);
  box-shadow: var(--shadow);
}

.project-master-list-sheet {
  min-width: 1040px;
}

.project-master-list-sheet img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
}

.project-master-mobile-list {
  display: none;
  margin: 0;
  padding: 0;
  list-style: none;
}

.project-master-mobile-item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(68, 51, 39, 0.08);
}

.project-master-mobile-item:first-child {
  padding-top: 0;
}

.project-master-mobile-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.project-master-mobile-index {
  min-width: 42px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(221, 138, 112, 0.2), rgba(199, 111, 84, 0.08));
  color: var(--surface);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.project-master-mobile-title {
  padding-top: 8px;
  color: var(--surface);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.45;
}

.back-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  min-height: 52px;
  margin-bottom: 22px;
  padding: 7px 10px 7px 18px;
  border: 1px solid rgba(199, 111, 84, 0.18);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 251, 247, 0.98), rgba(251, 240, 232, 0.96));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.52),
    0 14px 28px rgba(125, 91, 66, 0.12);
  color: var(--accent);
  font-weight: 800;
  letter-spacing: -0.01em;
  transition:
    transform var(--motion-fast) var(--ease-standard),
    color var(--motion-fast) var(--ease-standard),
    border-color var(--motion-fast) var(--ease-standard),
    box-shadow var(--motion-fast) var(--ease-standard),
    background-color var(--motion-fast) var(--ease-standard);
}

.back-link::after {
  content: "";
  width: 56px;
  height: 1px;
  display: inline-flex;
  flex: 0 0 auto;
  background: linear-gradient(90deg, rgba(199, 111, 84, 0.34), rgba(199, 111, 84, 0.08));
  transition:
    width var(--motion-fast) var(--ease-standard),
    opacity var(--motion-fast) var(--ease-standard);
}

.back-link:hover,
.back-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(199, 111, 84, 0.3);
  color: #bb6347;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.62),
    0 18px 34px rgba(125, 91, 66, 0.16);
}

.back-link:hover::after,
.back-link:focus-visible::after {
  width: 72px;
  opacity: 1;
}

.project-detail-shell,
.project-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
}

.project-detail-media {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.project-detail-media-trigger {
  width: 100%;
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: zoom-in;
}

.project-detail-media img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.project-detail-copy h1 {
  margin-bottom: 18px;
  font-size: clamp(2.7rem, 5vw, 4.6rem);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.detail-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.detail-tag-row span {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
  color: var(--surface);
  font-weight: 700;
}

.detail-meta-band {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(221, 138, 112, 0.14), rgba(255, 255, 255, 0.64)),
    rgba(255, 250, 244, 0.92);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
}

.detail-meta-band h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.08;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.detail-meta-list {
  margin: 0;
  padding-left: 18px;
}

.detail-meta-list li {
  margin-bottom: 12px;
  color: var(--text-muted);
}

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

.gallery-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--panel);
  box-shadow: var(--shadow);
  transition:
    transform var(--motion-base) var(--ease-standard),
    box-shadow var(--motion-base) var(--ease-standard),
    border-color var(--motion-base) var(--ease-standard);
}

.gallery-card:hover {
  transform: translateY(-4px);
  border-color: rgba(199, 111, 84, 0.2);
  box-shadow: 0 20px 48px rgba(98, 72, 50, 0.16);
}

.gallery-card-trigger {
  width: 100%;
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: zoom-in;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.gallery-card figcaption {
  padding: 14px 16px 16px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.project-detail-media-trigger:focus-visible,
.gallery-card-trigger:focus-visible {
  outline: 2px solid rgba(199, 111, 84, 0.78);
  outline-offset: -2px;
}

.image-preview {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.image-preview[hidden] {
  display: none;
}

.image-preview-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(13, 16, 20, 0.82);
  backdrop-filter: blur(12px);
}

.image-preview-stage {
  position: relative;
  z-index: 1;
  width: min(100%, 1120px);
}

.image-preview-figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background: rgba(24, 29, 34, 0.96);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

.image-preview-figure img {
  width: 100%;
  max-height: min(78vh, 860px);
  display: block;
  object-fit: contain;
  background: rgba(14, 18, 22, 0.96);
}

.image-preview-figure figcaption {
  padding: 16px 20px 20px;
  color: rgba(255, 245, 236, 0.86);
  font-size: 0.98rem;
}

.image-preview-close,
.image-preview-nav {
  position: absolute;
  z-index: 2;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 250, 246, 0.12);
  color: #fff8f2;
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.24);
  cursor: pointer;
  transition:
    transform var(--motion-fast) var(--ease-standard),
    background-color var(--motion-fast) var(--ease-standard),
    border-color var(--motion-fast) var(--ease-standard);
}

.image-preview-close {
  top: 16px;
  right: 16px;
  font-size: 1.8rem;
}

.image-preview-nav {
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
}

.image-preview-prev {
  left: 18px;
}

.image-preview-next {
  right: 18px;
}

.image-preview-close:hover,
.image-preview-close:focus-visible,
.image-preview-nav:hover,
.image-preview-nav:focus-visible {
  transform: translateY(-50%) scale(1.04);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 250, 246, 0.2);
}

.image-preview-close:hover,
.image-preview-close:focus-visible {
  transform: scale(1.04);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(26px);
  opacity: 0.42;
  pointer-events: none;
}

.hero::before {
  width: 420px;
  height: 420px;
  top: 40px;
  right: -140px;
  background: radial-gradient(circle, rgba(221, 138, 112, 0.2) 0%, rgba(221, 138, 112, 0.1) 42%, rgba(221, 138, 112, 0.03) 66%, transparent 84%);
}

.hero::after {
  width: 320px;
  height: 320px;
  left: -90px;
  bottom: 0;
  background: radial-gradient(circle, rgba(231, 195, 155, 0.2) 0%, rgba(231, 195, 155, 0.1) 40%, rgba(231, 195, 155, 0.03) 64%, transparent 84%);
}

.hero-stage {
  --hero-stage-min-height: 720px;
  position: relative;
  min-height: var(--hero-stage-min-height);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 42px;
  background: #ccb09b;
  box-shadow: 0 24px 70px rgba(91, 61, 42, 0.18);
}

.hero-stage-brand {
  --hero-stage-min-height: clamp(720px, calc(100svh - var(--header-height) - 116px), 920px);
  border-color: rgba(199, 111, 84, 0.14);
  background: #f6efe7;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 21, 26, 0.08) 0%, rgba(17, 21, 26, 0.34) 52%, rgba(17, 21, 26, 0.8) 100%),
    linear-gradient(120deg, rgba(17, 21, 26, 0.68) 0%, rgba(17, 21, 26, 0.22) 45%, rgba(17, 21, 26, 0.08) 100%);
  z-index: 1;
}

.hero-stage-brand::before {
  background:
    linear-gradient(90deg, rgba(18, 23, 29, 0.76) 0%, rgba(18, 23, 29, 0.62) 24%, rgba(18, 23, 29, 0.28) 48%, rgba(18, 23, 29, 0.08) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(18, 23, 29, 0.18));
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: auto -10% -18% auto;
  width: 52%;
  height: 56%;
  background: radial-gradient(circle, rgba(255, 243, 232, 0.14) 0%, rgba(255, 243, 232, 0.08) 42%, rgba(255, 243, 232, 0.03) 62%, transparent 82%);
  z-index: 1;
  pointer-events: none;
}

.hero-stage-brand::after {
  width: 48%;
  height: 52%;
  background: radial-gradient(circle, rgba(221, 138, 112, 0.12) 0%, rgba(221, 138, 112, 0.06) 44%, rgba(221, 138, 112, 0.02) 64%, transparent 82%);
}

.hero-stage-brand picture {
  position: absolute;
  inset: 0;
  display: block;
  z-index: 0;
  pointer-events: none;
}

.hero-visual {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroDrift 18s ease-in-out infinite alternate;
  transform-origin: center;
}

.hero-visual-brand {
  animation: none;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.08);
}

@media (min-width: 861px) {
  .hero > .container {
    width: min(1680px, calc(100% - 56px));
  }

  .hero-stage-brand picture {
    inset: -4% -12%;
  }
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-height: var(--hero-stage-min-height);
  max-width: 720px;
  padding: 72px 58px 58px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-stage-brand .hero-badge {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(34, 40, 47, 0.58);
  color: #fff7ef;
  box-shadow: 0 16px 30px rgba(57, 44, 32, 0.14);
}

.hero .section-kicker {
  color: rgba(255, 239, 227, 0.92);
}

.hero .section-kicker::before {
  background: linear-gradient(90deg, rgba(255, 239, 227, 0.88), transparent);
}

.hero h1 {
  max-width: 11ch;
  color: #fff6ee;
  font-size: clamp(3.6rem, 7vw, 6.5rem);
  text-shadow: 0 10px 32px rgba(17, 21, 26, 0.24);
}

.hero-text {
  max-width: 560px;
  margin: 24px 0 32px;
  color: rgba(255, 240, 229, 0.84);
  font-size: 1.08rem;
}

.hero-actions,
.cta-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero .button-secondary {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
  color: #fff8f3;
  backdrop-filter: blur(10px);
}

.hero-badge {
  position: absolute;
  z-index: 2;
  max-width: min(280px, calc(100% - 36px));
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 248, 241, 0.14);
  backdrop-filter: blur(12px);
  color: #fff7f0;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 28px rgba(17, 21, 26, 0.16);
  animation: badgeFloat 7s ease-in-out infinite;
}

.hero-badge-top {
  top: 34px;
  right: 34px;
}

.hero-badge-side {
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  animation: badgeFloatSide 7s ease-in-out infinite;
  animation-delay: 1.4s;
}

.hero-badge-bottom {
  right: 46px;
  bottom: 36px;
  animation-delay: 2.4s;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform var(--motion-fast) var(--ease-standard),
    border-color var(--motion-fast) var(--ease-standard),
    background-color var(--motion-fast) var(--ease-standard),
    box-shadow var(--motion-fast) var(--ease-standard);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(121, 83, 59, 0.14);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  color: #fff8f3;
  box-shadow: 0 12px 28px rgba(188, 81, 56, 0.24);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
}

.hero-meta {
  margin: -44px auto 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  position: relative;
  z-index: 3;
}

.hero-meta li,
.metric-card,
.card,
.service-panel,
.project-card,
.reference-group,
.reference-tile,
.contact-card,
.contact-form,
.cta-banner,
.trust-band-inner,
.simple-card,
.map-card {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  transition:
    transform var(--motion-base) var(--ease-standard),
    box-shadow var(--motion-base) var(--ease-standard),
    border-color var(--motion-base) var(--ease-standard);
}

.hero-meta li:hover,
.metric-card:hover,
.card:hover,
.service-panel:hover,
.project-card:hover,
.reference-group:hover,
.contact-card:hover,
.simple-card:hover,
.map-card:hover,
.reference-tile:hover {
  transform: translateY(-5px);
  border-color: rgba(199, 111, 84, 0.18);
  box-shadow: 0 20px 48px rgba(98, 72, 50, 0.16);
}

.hero-meta li {
  padding: 18px 18px 20px;
  border-radius: var(--radius-md);
  backdrop-filter: blur(14px);
}

.hero-meta strong {
  display: block;
  margin-bottom: 6px;
  color: var(--surface);
  font-size: 1.1rem;
}

.hero-meta span {
  color: var(--text-soft);
  font-size: 0.93rem;
}

.hero-panel {
  padding: 28px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(250, 244, 236, 0.92)),
    rgba(255, 250, 244, 0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.panel-glow {
  position: absolute;
  inset: auto auto -80px -60px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(221, 138, 112, 0.18), transparent 70%);
  pointer-events: none;
}

.panel-eyebrow,
.panel-label,
.contact-label,
.service-badge,
.project-type,
.metric-label {
  color: var(--surface-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-panel h2 {
  margin: 0 0 24px;
  max-width: 18ch;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  line-height: 1.1;
}

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

.scope-card {
  min-height: 160px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--line-soft);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.56)),
    rgba(255, 255, 255, 0.55);
}

.scope-card-wide {
  grid-column: 1 / -1;
  min-height: 0;
}

.scope-code,
.project-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  margin-bottom: 18px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(199, 111, 84, 0.1);
  color: var(--surface);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.scope-card h3,
.about-story h3,
.service-panel h3,
.project-card h3,
.reference-group h3 {
  margin: 0 0 10px;
  font-family: "Space Grotesk", sans-serif;
}

.panel-contact {
  margin-top: 18px;
  padding-top: 18px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
}

.panel-contact a {
  color: var(--text-muted);
  font-weight: 700;
}

.panel-phone {
  min-width: 58px;
  min-height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(221, 138, 112, 0.2), rgba(221, 138, 112, 0.08));
  border: 1px solid rgba(221, 138, 112, 0.24);
}

.trust-band {
  padding-top: 12px;
  padding-bottom: 42px;
}

.trust-band-inner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: 44px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 34px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(221, 138, 112, 0.14), rgba(255, 255, 255, 0.9) 30%, rgba(255, 249, 243, 0.98) 100%),
    rgba(255, 250, 244, 0.94);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.52),
    0 26px 56px rgba(111, 82, 60, 0.12);
}

.trust-band-inner::before {
  content: "";
  position: absolute;
  inset: auto -110px -120px auto;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(221, 138, 112, 0.2), transparent 70%);
  pointer-events: none;
}

.trust-band-inner::after {
  content: "";
  position: absolute;
  inset: -120px auto auto -90px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 216, 190, 0.24), transparent 72%);
  pointer-events: none;
}

.trust-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.trust-copy h2 {
  max-width: 9ch;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.04;
}

.trust-note {
  max-width: 50ch;
  margin: 0;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

.trust-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-metric {
  min-width: 148px;
  min-height: 92px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
  border-radius: 24px;
  border: 1px solid rgba(199, 111, 84, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(250, 242, 234, 0.84));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.48),
    0 12px 22px rgba(112, 83, 61, 0.08);
}

.trust-metric strong {
  color: var(--surface);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.22rem;
  font-weight: 700;
  line-height: 1;
}

.trust-metric span {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.trust-values {
  position: relative;
  z-index: 1;
  padding: 28px;
  border: 1px solid rgba(199, 111, 84, 0.14);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(221, 138, 112, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 252, 248, 0.98), rgba(249, 239, 231, 0.95));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.62),
    0 22px 42px rgba(112, 83, 61, 0.1);
}

.trust-values-head {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.trust-values-head p {
  margin: 0;
  color: var(--text-muted);
  max-width: 42ch;
  line-height: 1.72;
}

.trust-tags {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  list-style: none;
}

.trust-tag-card {
  position: relative;
  min-height: 154px;
  padding: 20px;
  display: grid;
  align-content: start;
  gap: 12px;
  border-radius: 26px;
  border: 1px solid rgba(68, 51, 39, 0.09);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.86), transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 247, 240, 0.84));
  box-shadow: 0 14px 26px rgba(125, 91, 66, 0.08);
  transition:
    transform var(--motion-fast) var(--ease-standard),
    box-shadow var(--motion-fast) var(--ease-standard),
    border-color var(--motion-fast) var(--ease-standard);
}

.trust-tag-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 1px;
  background: linear-gradient(90deg, rgba(221, 138, 112, 0.32), rgba(221, 138, 112, 0.02));
}

.trust-tag-card::after {
  content: "";
  position: absolute;
  inset: auto -28px -28px auto;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(221, 138, 112, 0.14), transparent 72%);
  pointer-events: none;
}

.trust-tag-card:hover {
  transform: translateY(-4px);
  border-color: rgba(199, 111, 84, 0.22);
  box-shadow: 0 18px 32px rgba(125, 91, 66, 0.13);
}

.trust-tag-card h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.3rem;
  line-height: 1.08;
}

.trust-tag-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.68;
}

.about-layout,
.services-grid,
.references-layout,
.contact-grid {
  display: grid;
  gap: 22px;
}

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

.about-layout-corporate {
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: start;
}

.about-story-copy {
  display: grid;
  gap: 18px;
}

.about-story-copy h3 {
  margin-bottom: 2px;
}

.about-story-copy p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.84;
}

.about-story-highlight {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-story-highlight h3 {
  margin: 0;
}

.about-story-highlight p {
  margin: 0;
  color: var(--text-muted);
}

.about-story-highlight .feature-list {
  margin-top: 4px;
}

.card,
.service-panel,
.reference-group,
.contact-form {
  border-radius: var(--radius-xl);
}

.card,
.service-panel {
  padding: 28px;
}

.feature-list,
.process-list,
.project-meta,
.reference-group ul {
  margin: 20px 0 0;
  padding-left: 18px;
}

.feature-list li,
.process-list li,
.project-meta li,
.reference-group li {
  margin-bottom: 10px;
  color: var(--text-muted);
}

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

.page-summary,
.sector-grid,
.reference-matrix,
.landing-links-grid,
.brand-wall {
  display: grid;
  gap: 18px;
}

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

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

.sector-grid,
.reference-matrix,
.landing-links-grid,
.brand-wall {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.landing-quicklinks {
  padding-top: 28px;
}

.landing-intro {
  max-width: 760px;
  margin-bottom: 30px;
}

.landing-intro h2 {
  margin: 0 0 14px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 5vw, 3.3rem);
  line-height: 1.04;
}

.landing-intro p {
  margin: 0;
  color: var(--text-muted);
}

.landing-link-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.76), rgba(255,250,244,0.92));
  box-shadow: var(--shadow);
  transition:
    transform var(--motion-base) var(--ease-standard),
    box-shadow var(--motion-base) var(--ease-standard),
    border-color var(--motion-base) var(--ease-standard);
}

.landing-link-card:hover {
  transform: translateY(-5px);
  border-color: rgba(199, 111, 84, 0.2);
  box-shadow: 0 20px 48px rgba(98, 72, 50, 0.16);
}

.landing-link-card h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
}

.landing-link-card p {
  margin: 0;
  color: var(--text-muted);
}

.simple-card,
.map-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.simple-card h3,
.map-card h3 {
  margin: 0 0 10px;
  font-family: "Space Grotesk", sans-serif;
}

.simple-card p,
.map-card p {
  margin: 0;
  color: var(--text-muted);
}

.map-actions {
  margin-top: 18px;
}

.link-inline {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  min-height: 52px;
  margin-top: auto;
  padding: 7px 10px 7px 18px;
  border: 1px solid rgba(199, 111, 84, 0.18);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 251, 247, 0.98), rgba(251, 240, 232, 0.96));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.52),
    0 14px 28px rgba(125, 91, 66, 0.12);
  color: var(--accent);
  font-weight: 800;
  letter-spacing: -0.01em;
  transition:
    transform var(--motion-fast) var(--ease-standard),
    color var(--motion-fast) var(--ease-standard),
    border-color var(--motion-fast) var(--ease-standard),
    box-shadow var(--motion-fast) var(--ease-standard),
    background-color var(--motion-fast) var(--ease-standard);
}

.link-inline::after {
  content: "→";
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  color: #fff8f3;
  box-shadow: 0 10px 18px rgba(188, 81, 56, 0.18);
  transition:
    transform var(--motion-fast) var(--ease-standard),
    box-shadow var(--motion-fast) var(--ease-standard);
}

.link-inline:hover,
.link-inline:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(199, 111, 84, 0.3);
  color: #bb6347;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.62),
    0 18px 34px rgba(125, 91, 66, 0.16);
}

.link-inline:hover::after,
.link-inline:focus-visible::after {
  transform: translateX(4px) scale(1.04);
  box-shadow: 0 14px 22px rgba(188, 81, 56, 0.24);
}

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

.service-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  letter-spacing: 0.12em;
}

.service-list {
  display: grid;
  gap: 14px;
}

.service-card {
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.62);
}

.service-card h4 {
  margin: 0 0 8px;
  font-size: 1.04rem;
}

.metrics-section {
  padding-top: 26px;
}

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

.metric-card {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.metric-value {
  display: block;
  margin-bottom: 10px;
  color: var(--surface);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 700;
  line-height: 1.1;
}

.projects-section {
  padding-top: 94px;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.filter-chip {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-muted);
  font-weight: 700;
  transition:
    background-color var(--motion-fast) var(--ease-standard),
    color var(--motion-fast) var(--ease-standard),
    border-color var(--motion-fast) var(--ease-standard);
}

.filter-chip.is-active,
.filter-chip:hover,
.filter-chip:focus-visible {
  background: var(--accent-soft);
  border-color: rgba(215, 102, 75, 0.32);
  color: var(--text);
}

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

.project-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 270px;
  padding: 18px;
  border-radius: var(--radius-xl);
  transition:
    transform var(--motion-fast) var(--ease-standard),
    border-color var(--motion-fast) var(--ease-standard);
}

.project-card::before {
  content: "";
  position: absolute;
  inset: auto -60px -60px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(221, 138, 112, 0.18), transparent 70%);
}

.project-card-featured {
  grid-column: span 2;
}

.project-media {
  position: relative;
  margin-bottom: 18px;
  overflow: hidden;
  border-radius: 24px;
  aspect-ratio: 16 / 9;
}

.project-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 24, 28, 0.02), rgba(20, 24, 28, 0.18));
}

.project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  transition: transform var(--motion-slow) var(--ease-emphasis);
}

.project-media-placeholder {
  display: grid;
  place-items: center;
  gap: 8px;
  border: 1px solid rgba(199, 111, 84, 0.12);
  background:
    radial-gradient(circle at top left, rgba(221, 138, 112, 0.2), transparent 45%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(249, 239, 229, 0.88));
}

.project-media-placeholder span,
.project-media-placeholder small {
  position: relative;
  z-index: 1;
}

.project-media-placeholder span {
  color: var(--surface);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.project-media-placeholder small {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-card:hover,
.project-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(215, 102, 75, 0.24);
}

.project-card:hover .project-media img,
.project-card:focus-within .project-media img {
  transform: scale(1.04);
}

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

.project-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 18px;
}

.project-code {
  margin: 0;
}

.project-card h3 {
  max-width: 15ch;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  line-height: 1.06;
  overflow-wrap: anywhere;
}

.project-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  min-height: 50px;
  margin-top: auto;
  padding: 7px 10px 7px 18px;
  border: 1px solid rgba(199, 111, 84, 0.18);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 251, 247, 0.98), rgba(251, 240, 232, 0.96));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.52),
    0 14px 28px rgba(125, 91, 66, 0.12);
  color: var(--accent);
  font-weight: 800;
  letter-spacing: -0.01em;
  transition:
    transform var(--motion-fast) var(--ease-standard),
    color var(--motion-fast) var(--ease-standard),
    border-color var(--motion-fast) var(--ease-standard),
    box-shadow var(--motion-fast) var(--ease-standard),
    background-color var(--motion-fast) var(--ease-standard);
}

.project-cta span:last-child {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  color: #fff8f3;
  box-shadow: 0 10px 18px rgba(188, 81, 56, 0.18);
  transition:
    transform var(--motion-fast) var(--ease-standard),
    box-shadow var(--motion-fast) var(--ease-standard);
}

.project-card:hover .project-cta,
.project-card:focus-visible .project-cta {
  transform: translateY(-2px);
  border-color: rgba(199, 111, 84, 0.3);
  color: #bb6347;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.62),
    0 18px 34px rgba(125, 91, 66, 0.16);
}

.project-card:hover .project-cta span:last-child,
.project-card:focus-visible .project-cta span:last-child {
  transform: translateX(4px) scale(1.04);
  box-shadow: 0 14px 22px rgba(188, 81, 56, 0.24);
}

.projects-grid-compact .project-card {
  min-height: 0;
}

.references-layout {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

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

.reference-group {
  padding: 22px;
}

.reference-tile {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.reference-tile h3 {
  margin: 0 0 10px;
  font-family: "Space Grotesk", sans-serif;
}

.reference-tile ul {
  margin: 0;
  padding-left: 18px;
}

.reference-tile li {
  margin-bottom: 10px;
  color: var(--text-muted);
}

.brand-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  min-width: 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.7), rgba(255,250,244,0.92));
  box-shadow: var(--shadow);
  transition:
    transform var(--motion-base) var(--ease-standard),
    box-shadow var(--motion-base) var(--ease-standard),
    border-color var(--motion-base) var(--ease-standard);
}

.brand-block:hover {
  transform: translateY(-4px);
  border-color: rgba(199, 111, 84, 0.22);
}

.brand-block-mark {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(221, 138, 112, 0.26), rgba(199, 111, 84, 0.08));
  border: 1px solid rgba(199, 111, 84, 0.16);
  color: var(--surface);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.brand-block h3 {
  margin: 0 0 8px;
  font-family: "Space Grotesk", sans-serif;
  overflow-wrap: anywhere;
}

.brand-block p {
  margin: 0;
  color: var(--text-muted);
}

.cta-section {
  padding-top: 32px;
}

.cta-banner {
  padding: 30px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  background:
    linear-gradient(135deg, rgba(221, 138, 112, 0.18), rgba(255, 255, 255, 0.5)),
    rgba(255, 250, 244, 0.92);
}

.cta-banner h2 {
  max-width: 18ch;
  font-size: clamp(2rem, 4vw, 3rem);
}

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

.contact-cards {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-card {
  padding: 18px 20px;
  border-radius: var(--radius-md);
}

.contact-card a {
  color: var(--surface);
  font-weight: 700;
}

.contact-form {
  padding: 24px;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--surface);
  font-size: 0.95rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-soft);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(215, 102, 75, 0.3);
  border-color: rgba(215, 102, 75, 0.42);
}

.form-status {
  margin: 0;
  color: var(--text-muted);
  align-self: center;
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.map-embed {
  margin-top: 22px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
}

.map-embed iframe {
  display: block;
  width: 100%;
  min-height: 360px;
  border: 0;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2bc866, #18a84d);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(24, 168, 77, 0.24);
  transition:
    transform var(--motion-fast) var(--ease-standard),
    box-shadow var(--motion-fast) var(--ease-standard);
}

.floating-whatsapp svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 20px 38px rgba(24, 168, 77, 0.3);
}

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

.footer-inner {
  padding-top: 30px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "brand meta"
    "nav nav";
  gap: 20px 28px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.footer-brand {
  grid-area: brand;
  display: flex;
  align-items: center;
  min-width: 0;
}

.footer-brand strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.08rem;
  line-height: 1.1;
}

.footer-nav,
.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--text-muted);
}

.footer-nav {
  grid-area: nav;
  padding-top: 4px;
}

.footer-nav a {
  position: relative;
  font-weight: 600;
  transition: color var(--motion-fast) var(--ease-standard);
}

.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-meta a:hover,
.footer-meta a:focus-visible {
  color: var(--surface);
}

.footer-meta {
  grid-area: meta;
  justify-content: flex-end;
  align-items: center;
  row-gap: 10px;
}

.footer-meta a,
.footer-meta span {
  white-space: nowrap;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px) scale(0.985);
  will-change: opacity, transform;
  transition:
    opacity var(--motion-reveal) var(--ease-emphasis),
    transform var(--motion-reveal) var(--ease-emphasis);
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  will-change: auto;
}

@keyframes heroDrift {
  0% {
    transform: scale(1.02) translate3d(0, 0, 0);
  }

  100% {
    transform: scale(1.08) translate3d(-12px, 8px, 0);
  }
}

@keyframes badgeFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

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

  50% {
    transform: translateY(calc(-50% - 8px));
  }
}

@keyframes navLineDrift {
  0% {
    transform: translateX(-12%) scaleX(0.34);
  }

  50% {
    transform: translateX(0) scaleX(0.62);
  }

  100% {
    transform: translateX(12%) scaleX(0.34);
  }
}

@keyframes markFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

@media (max-width: 1080px) {
  .trust-band-inner,
  .references-layout,
  .services-grid,
  .about-layout,
  .contact-grid,
  .footer-inner,
  .page-summary,
  .project-detail-shell,
  .project-detail-grid,
  .detail-meta-band,
  .project-gallery-grid,
  .sector-grid,
  .reference-matrix,
  .landing-links-grid,
  .brand-wall {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    --hero-stage-min-height: 650px;
  }

  .hero-copy {
    min-height: var(--hero-stage-min-height);
    padding: 56px 40px 42px;
  }

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

  .trust-copy h2,
  .trust-note {
    max-width: none;
  }

  .trust-values {
    width: 100%;
  }

  .cta-banner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-nav,
  .footer-meta {
    justify-content: flex-start;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "nav"
      "meta";
    align-items: start;
  }
}

@media (max-width: 860px) {
  body.nav-open .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 32;
  }

  .mobile-nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100dvh;
    border: 0;
    background: rgba(28, 34, 42, 0.34);
    backdrop-filter: blur(8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--motion-base) var(--ease-standard);
    z-index: 34;
  }

  body.nav-open .mobile-nav-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav {
    position: fixed;
    top: 12px;
    left: 12px;
    bottom: 12px;
    width: min(78vw, 396px);
    max-width: calc(100vw - 92px);
    height: calc(100dvh - 24px);
    max-height: calc(100svh - 24px);
    padding: 20px 18px 18px;
    display: block;
    gap: 18px;
    border-radius: 34px;
    border: 1px solid rgba(199, 111, 84, 0.18);
    background:
      linear-gradient(180deg, rgba(255, 252, 248, 0.996), rgba(250, 241, 233, 0.992));
    box-shadow: 0 30px 72px rgba(75, 56, 40, 0.22);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 1;
    pointer-events: none;
    transform: translateX(calc(-100% - 24px));
    will-change: transform;
    transition: transform var(--motion-slow) var(--ease-emphasis);
    z-index: 40;
  }

  body.nav-open .site-nav {
    pointer-events: auto;
    transform: translateX(0);
  }

  .mobile-nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    position: relative;
    z-index: 2;
    padding: 10px 12px 18px;
    margin: -6px -4px 0;
    border-bottom: 1px solid var(--line-soft);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 247, 241, 0.98), rgba(255, 252, 249, 0.92));
    backdrop-filter: blur(18px);
  }

  .mobile-nav-section-title {
    display: block;
    margin: 14px 6px 14px;
    color: rgba(103, 119, 145, 0.76);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .mobile-nav-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
  }

  .mobile-nav-brand-mark {
    min-width: 146px;
    height: 66px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    flex: 0 0 auto;
    padding: 0 18px;
    border-radius: 28px;
    border: 1px solid rgba(199, 111, 84, 0.18);
    background:
      radial-gradient(circle at top left, rgba(221, 138, 112, 0.22), transparent 58%),
      linear-gradient(180deg, rgba(255, 244, 238, 0.96), rgba(250, 239, 232, 0.9));
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, 0.42),
      0 12px 28px rgba(154, 118, 96, 0.12);
    animation: none;
  }

  .mobile-nav-brand-mark .brand-mark-iki,
  .mobile-nav-brand-mark .brand-mark-el {
    font-size: 2.02rem;
    font-weight: 900;
    letter-spacing: -0.08em;
  }

  .mobile-nav-brand-mark .brand-mark-iki {
    color: #ff0000;
  }

  .mobile-nav-brand-mark .brand-mark-el {
    color: #1f252c;
  }

  .mobile-nav-brand-copy {
    min-width: 0;
  }

  .mobile-nav-brand-copy strong {
    display: block;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.14rem;
    line-height: 1.1;
    overflow-wrap: anywhere;
  }

  .mobile-nav-brand-copy span {
    display: none;
  }

  .mobile-nav-close {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--surface);
    box-shadow: 0 12px 24px rgba(85, 63, 45, 0.08);
  }

  .mobile-nav-close svg {
    width: 20px;
    height: 20px;
    display: block;
  }

  .site-nav-links {
    display: grid;
    align-content: start;
    gap: 12px;
    padding: 0 2px;
  }

  .site-nav-links > a {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 14px;
    width: 100%;
    min-height: 76px;
    padding: 10px 12px;
    border: 1px solid rgba(68, 51, 39, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--surface);
    font-size: 1.08rem;
    font-weight: 800;
    box-shadow: 0 12px 22px rgba(120, 88, 64, 0.08);
    transition:
      transform var(--motion-fast) var(--ease-standard),
      border-color var(--motion-fast) var(--ease-standard),
      background-color var(--motion-fast) var(--ease-standard),
      box-shadow var(--motion-fast) var(--ease-standard);
  }

  .site-nav-links > a::after {
    display: none;
  }

  .site-nav-links > a:hover,
  .site-nav-links > a:focus-visible {
    color: var(--surface);
    transform: translateX(4px);
    border-color: rgba(199, 111, 84, 0.18);
    box-shadow: 0 16px 28px rgba(120, 88, 64, 0.12);
  }

  .site-nav-links > a[aria-current="page"] {
    background: linear-gradient(135deg, rgba(221, 138, 112, 0.3), rgba(255, 248, 242, 0.99));
    border-color: rgba(199, 111, 84, 0.28);
  }

  .mobile-nav-link-label {
    min-width: 0;
  }

  .mobile-nav-link-indicator {
    display: none;
  }

  .site-nav-links > a[aria-current="page"] .mobile-nav-link-indicator {
    background: linear-gradient(135deg, var(--accent-strong), var(--accent));
    box-shadow: 0 10px 18px rgba(188, 81, 56, 0.2);
  }

  .mobile-nav-footer {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    z-index: 2;
    margin-top: 16px;
    padding: 16px 4px calc(10px + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid var(--line-soft);
    background: rgba(250, 241, 233, 0.98);
  }

  .mobile-nav-controls {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 12px;
  }

  .site-nav .lang-dropdown {
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .site-nav .lang-dropdown-toggle {
    width: 100%;
    min-height: 56px;
    justify-content: space-between;
    padding: 0 16px 0 12px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.78);
    color: var(--surface);
  }

  .site-nav .lang-dropdown-toggle:hover,
  .site-nav .lang-dropdown-toggle:focus-visible {
    background: rgba(255, 255, 255, 0.9);
    color: var(--surface);
  }

  .site-nav .lang-dropdown-menu {
    position: static;
    width: 100%;
    min-width: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    margin-top: 0;
    border-radius: 22px;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: none;
    opacity: 0;
    pointer-events: none;
    transform: none;
    transition:
      max-height var(--motion-base) var(--ease-standard),
      opacity var(--motion-fast) var(--ease-standard),
      margin-top var(--motion-fast) var(--ease-standard),
      padding var(--motion-fast) var(--ease-standard),
      border-color var(--motion-fast) var(--ease-standard);
  }

  .site-nav .lang-dropdown.is-open .lang-dropdown-menu {
    max-height: 320px;
    margin-top: 12px;
    padding: 10px;
    border-color: var(--line);
    box-shadow: var(--shadow);
    opacity: 1;
    pointer-events: auto;
  }

  .image-preview {
    padding: 18px;
  }

  .image-preview-stage {
    width: 100%;
  }

  .image-preview-close,
  .image-preview-nav {
    width: 48px;
    height: 48px;
  }

  .image-preview-prev {
    left: 12px;
  }

  .image-preview-next {
    right: 12px;
  }

  .image-preview-figure {
    border-radius: 24px;
  }

  .image-preview-figure img {
    max-height: 72vh;
  }

  .site-nav .lang-dropdown-item {
    color: var(--surface) !important;
    border-radius: 18px;
  }

  .site-nav .lang-dropdown-item:hover,
  .site-nav .lang-dropdown-item:focus-visible {
    background: rgba(199, 111, 84, 0.1);
    color: var(--surface) !important;
  }

  .site-nav .lang-dropdown-item[aria-current="true"] {
    background: rgba(199, 111, 84, 0.14);
  }

  .nav-phone {
    width: 100%;
    min-width: 0;
    min-height: 56px;
    justify-content: center;
    gap: 10px;
    padding: 0 18px;
    border-radius: 20px;
  }

  .nav-phone-label {
    display: inline;
    font-size: 0.98rem;
    font-weight: 800;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-whatsapp {
    display: none;
  }

  .mobile-nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 22px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--accent-strong), var(--accent));
    color: #fff9f4;
    font-weight: 800;
    box-shadow: 0 18px 34px rgba(188, 81, 56, 0.22);
  }

  .nav-toggle {
    display: inline-flex;
    position: relative;
    z-index: 42;
  }

  body.nav-open .nav-toggle {
    opacity: 0;
    pointer-events: none;
  }

  .hero-stage {
    --hero-stage-min-height: 580px;
  }

  .hero-copy {
    min-height: var(--hero-stage-min-height);
    max-width: 100%;
    padding: 40px 26px 28px;
  }

  .hero h1 {
    max-width: 12ch;
  }

  .hero-stage-brand {
    --hero-stage-min-height: 620px;
  }

  .hero-stage-brand::before {
    background:
      linear-gradient(90deg, rgba(18, 23, 29, 0.88) 0%, rgba(18, 23, 29, 0.8) 38%, rgba(18, 23, 29, 0.42) 68%, rgba(18, 23, 29, 0.1) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(18, 23, 29, 0.2));
  }

  .hero-stage-brand .hero-visual-brand {
    object-fit: contain;
    object-position: center top;
    transform: scale(1);
  }

  .hero-stage-brand picture {
    inset: 0;
  }

  .hero-stage-brand .hero-copy {
    max-width: min(72%, 332px);
    padding: 44px 22px 28px;
  }

  .hero-stage-brand h1 {
    max-width: none;
    font-size: clamp(2.3rem, 10.6vw, 4rem);
    line-height: 0.98;
    overflow-wrap: normal;
    word-break: normal;
  }

  .hero-stage-brand .hero-text {
    max-width: 100%;
    margin: 20px 0 28px;
    font-size: 1rem;
  }

  .landing-quicklinks {
    padding-top: 6px;
  }

  .landing-links-grid {
    grid-template-columns: 1fr;
  }

  .project-master-list-frame {
    overflow: hidden;
  }

  .project-master-list-sheet-desktop {
    display: none;
  }

  .project-master-mobile-list {
    display: grid;
    gap: 0;
  }

  .page-hero-inner {
    padding: 30px 24px;
  }

  .hero-badge-top,
  .hero-badge-bottom {
    right: 18px;
  }

  .hero-badge-top {
    top: 18px;
  }

  .hero-badge-bottom {
    bottom: 18px;
  }

  .hero-badge-side {
    display: none;
  }

  .nav-toggle {
    margin-left: auto;
    flex: 0 0 auto;
  }

  .hero-stage-brand .hero-badge-top,
  .hero-stage-brand .hero-badge-bottom {
    display: none;
  }

  .hero-meta,
  .metrics-grid,
  .projects-grid,
  .reference-groups,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .project-detail-copy h1 {
    font-size: clamp(2.2rem, 10vw, 3.3rem);
  }

  .detail-meta-band {
    padding: 24px;
  }

  .project-card-featured {
    grid-column: auto;
  }

  .hero-panel-grid {
    grid-template-columns: 1fr;
  }

  .scope-card-wide {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 78px;
  }

  .section {
    padding: 88px 0;
  }

  .site-nav {
    top: 8px;
    left: 8px;
    bottom: 8px;
    width: min(76vw, 360px);
    max-width: calc(100vw - 72px);
    height: calc(100dvh - 16px);
    max-height: calc(100svh - 16px);
    padding: 18px 14px 14px;
    border-radius: 28px;
  }

  .image-preview {
    padding: 12px;
  }

  .image-preview-close,
  .image-preview-nav {
    width: 42px;
    height: 42px;
  }

  .image-preview-close {
    top: 10px;
    right: 10px;
    font-size: 1.5rem;
  }

  .image-preview-nav {
    top: auto;
    bottom: 78px;
    transform: none;
    font-size: 1.6rem;
  }

  .image-preview-prev {
    left: 10px;
  }

  .image-preview-next {
    right: 10px;
  }

  .image-preview-figure {
    border-radius: 22px;
  }

  .image-preview-figure img {
    max-height: 64vh;
  }

  .image-preview-figure figcaption {
    padding: 14px 16px 18px;
    font-size: 0.92rem;
  }

  .image-preview-close:hover,
  .image-preview-close:focus-visible,
  .image-preview-nav:hover,
  .image-preview-nav:focus-visible {
    transform: scale(1.04);
  }

  .mobile-nav-head {
    gap: 12px;
    padding: 8px 10px 16px;
  }

  .mobile-nav-brand-mark {
    min-width: 112px;
    height: 54px;
    padding: 0 14px;
    border-radius: 22px;
  }

  .mobile-nav-brand-mark .brand-mark-iki,
  .mobile-nav-brand-mark .brand-mark-el {
    font-size: 1.44rem;
  }

  .mobile-nav-brand-copy strong {
    font-size: 1rem;
  }

  .mobile-nav-brand-copy span {
    font-size: 0.86rem;
  }

  .mobile-nav-close {
    width: 52px;
    height: 52px;
    border-radius: 18px;
  }

  .site-nav-links > a {
    min-height: 68px;
    padding: 10px;
    border-radius: 22px;
    font-size: 1rem;
  }

  .mobile-nav-link-indicator {
    width: 34px;
    height: 34px;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 16vw, 4.4rem);
  }

  .hero-stage-brand {
    --hero-stage-min-height: 560px;
  }

  .hero-stage-brand .hero-visual-brand {
    object-fit: contain;
    object-position: center top;
    transform: scale(1);
  }

  .hero-stage-brand picture {
    inset: 0;
  }

  .hero-stage-brand .hero-copy {
    max-width: min(78%, 292px);
    min-height: 560px;
    padding: 28px 16px 22px;
  }

  .hero-stage-brand::before {
    background:
      linear-gradient(90deg, rgba(18, 23, 29, 0.9) 0%, rgba(18, 23, 29, 0.82) 42%, rgba(18, 23, 29, 0.46) 72%, rgba(18, 23, 29, 0.12) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(18, 23, 29, 0.24));
  }

  .hero-stage-brand h1 {
    font-size: clamp(1.65rem, 8.9vw, 2.7rem);
    line-height: 1;
    overflow-wrap: normal;
    word-break: normal;
  }

  .hero-stage-brand .hero-text {
    margin: 18px 0 24px;
    font-size: 0.9rem;
  }

  .page-hero h1 {
    font-size: clamp(1.9rem, 10vw, 2.8rem);
    line-height: 1.1;
  }

  .hero-stage {
    --hero-stage-min-height: 520px;
    border-radius: 28px;
  }

  .hero-copy {
    min-height: var(--hero-stage-min-height);
    padding: 30px 20px 22px;
  }

  .hero-actions .button,
  .cta-actions .button,
  .form-actions .button {
    width: 100%;
  }

  .hero-text {
    max-width: 100%;
    font-size: 0.98rem;
  }

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

  .landing-link-card,
  .landing-intro {
    margin-bottom: 0;
  }

  .project-card h3 {
    max-width: none;
  }

  .project-topline {
    gap: 10px;
    margin-bottom: 16px;
  }

  .detail-tag-row span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .trust-band-inner {
    gap: 22px;
  }

  .trust-values {
    padding: 14px;
    border-radius: 24px;
  }

  .trust-metrics {
    width: 100%;
  }

  .trust-metric {
    flex: 1 1 100%;
    min-width: 0;
    min-height: 84px;
  }

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

  .trust-tag-card {
    min-height: 132px;
    padding: 16px;
    border-radius: 22px;
  }

  .trust-tag-card h3 {
    font-size: 1.2rem;
  }

  .trust-tag-card p {
    font-size: 0.92rem;
  }

  .hero-badge {
    font-size: 0.78rem;
    padding: 11px 14px;
  }

  .hero-badge-top,
  .hero-badge-bottom {
    right: 14px;
    max-width: calc(100% - 28px);
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    min-width: 136px;
    height: 62px;
    padding: 0 16px;
    border-radius: 28px;
  }

  .brand-mark-iki {
    font-size: 1.98rem;
  }

  .brand-mark-el {
    font-size: 1.98rem;
  }

  .brand-copy strong {
    font-size: 0.98rem;
  }

  .site-nav .lang-dropdown-label,
  .site-nav .lang-dropdown-item-label,
  .mobile-nav-link-label,
  .nav-phone-label {
    min-width: 0;
  }

  .footer-nav,
  .footer-meta {
    gap: 12px;
  }

  .lang-dropdown-toggle {
    min-height: 40px;
    padding: 0 8px 0 4px;
    font-size: 0.9rem;
  }

  .lang-dropdown-current {
    gap: 8px;
  }

  .lang-dropdown-menu {
    top: calc(100% + 10px);
    padding: 14px 12px;
    border-radius: 26px;
  }

  .lang-dropdown-item {
    gap: 10px;
    padding: 11px 12px;
    font-size: 0.9rem;
  }

  .lang-emoji {
    width: 24px;
    font-size: 1.35rem;
  }

  .link-inline,
  .project-cta {
    width: 100%;
    max-width: 100%;
    justify-content: space-between;
    gap: 14px;
  }

  .back-link {
    flex-wrap: wrap;
  }

  .detail-meta-band,
  .project-detail-media {
    border-radius: 24px;
  }

  .map-embed iframe {
    min-height: 280px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }

  .floating-whatsapp svg {
    width: 24px;
    height: 24px;
  }

  .hero-panel,
  .card,
  .service-panel,
  .project-card,
  .reference-group,
  .reference-tile,
  .simple-card,
  .map-card,
  .contact-form,
  .cta-banner,
  .trust-band-inner,
  .page-hero-inner,
  .project-master-list-frame {
    padding: 22px;
    border-radius: 24px;
  }

  .hero-meta li {
    padding: 16px;
  }

  .brand-block {
    grid-template-columns: 1fr;
  }

  .contact-card,
  .contact-card a,
  .contact-card p,
  .simple-card p,
  .map-card p,
  .detail-meta-list li,
  .footer-meta a,
  .footer-meta span {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .footer-inner {
    gap: 16px;
  }

  .footer-nav,
  .footer-meta {
    width: 100%;
  }

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

  .footer-meta a,
  .footer-meta span {
    width: 100%;
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 76px 0;
  }

  .header-inner {
    gap: 8px;
  }

  .brand {
    max-width: calc(100% - 58px);
  }

  .brand-copy {
    display: none;
  }

  .brand-mark {
    min-width: 118px;
    height: 54px;
    padding: 0 12px;
    border-radius: 24px;
  }

  .brand-mark-iki {
    font-size: 1.62rem;
  }

  .brand-mark-el {
    font-size: 1.62rem;
  }

  .brand-copy strong {
    font-size: 0.92rem;
  }

  .nav-toggle {
    width: 46px;
    height: 46px;
  }

  .site-nav {
    width: min(72vw, 316px);
    max-width: calc(100vw - 88px);
    padding: 16px 12px 12px;
    gap: 14px;
  }

  .mobile-nav-brand {
    gap: 8px;
  }

  .mobile-nav-brand-mark {
    min-width: 96px;
    height: 48px;
    padding: 0 8px;
  }

  .mobile-nav-brand-mark .brand-mark-iki,
  .mobile-nav-brand-mark .brand-mark-el {
    font-size: 1.36rem;
  }

  .mobile-nav-brand-copy strong {
    max-width: 9.4ch;
    font-size: 0.84rem;
    line-height: 1.06;
    overflow-wrap: normal;
    word-break: normal;
  }

  .mobile-nav-close {
    width: 44px;
    height: 44px;
  }

  .site-nav-links > a {
    min-height: 56px;
    padding: 8px 10px;
    border-radius: 20px;
    font-size: 0.94rem;
  }

  .site-nav-links {
    gap: 10px;
  }

  .mobile-nav-footer {
    gap: 10px;
    padding-top: 12px;
  }

  .site-nav .lang-dropdown-toggle,
  .nav-phone,
  .mobile-nav-cta {
    min-height: 54px;
    border-radius: 18px;
  }

  .nav-phone {
    padding: 0 14px;
  }

  .nav-phone-label {
    font-size: 0.9rem;
  }

  .mobile-nav-cta {
    font-size: 0.95rem;
    padding: 0 18px;
  }

  .hero-badge-top,
  .hero-badge-bottom {
    display: none;
  }
}

@media (hover: none) and (pointer: coarse) {
  .brand-mark,
  .hero-badge,
  .hero-visual,
  .site-header.is-scrolled::after {
    animation: none !important;
  }

  .site-header.is-scrolled::after {
    transform: scaleX(0.56);
  }

  [data-reveal] {
    transform: translateY(16px) scale(0.995);
    transition-duration: 320ms;
    transition-delay: 0ms;
  }

  .site-nav-links > a:hover,
  .nav-whatsapp:hover,
  .nav-phone:hover,
  .back-link:hover,
  .gallery-card:hover,
  .button:hover,
  .hero-meta li:hover,
  .metric-card:hover,
  .card:hover,
  .service-panel:hover,
  .project-card:hover,
  .reference-group:hover,
  .contact-card:hover,
  .simple-card:hover,
  .map-card:hover,
  .reference-tile:hover,
  .trust-tag-card:hover,
  .landing-link-card:hover,
  .link-inline:hover,
  .brand-block:hover,
  .floating-whatsapp:hover {
    transform: none;
  }

  .project-card:hover .project-media img,
  .project-card:hover .project-cta,
  .project-card:hover .project-cta span:last-child {
    transform: none;
  }
}

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