:root {
  --bg: #f3f4f5;
  --bg-elevated: rgba(255, 255, 255, 0.88);
  --panel: rgba(255, 255, 255, 0.82);
  --panel-strong: rgba(255, 255, 255, 0.96);
  --text: #111111;
  --muted: #5f6368;
  --line: rgba(17, 17, 17, 0.12);
  --cyan: #111111;
  --blue: #1c1c1c;
  --accent: #0f0f10;
  --mint: #3e3e42;
  --sun: #d8d8dc;
  --pattern-line: rgba(17, 17, 17, 0.07);
  --pattern-glow: rgba(255, 255, 255, 0.75);
  --success: #156f48;
  --shadow: 0 24px 60px rgba(17, 17, 17, 0.08);
  --radius: 24px;
  --radius-small: 18px;
  --container: 1080px;
  --header-height: 84px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.92), transparent 36%),
    radial-gradient(circle at 82% 12%, rgba(217, 217, 221, 0.3), transparent 18%),
    linear-gradient(180deg, #fafafa 0%, #eceef0 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

main,
section,
.container {
  min-width: 0;
  max-width: 100%;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 1;
  background:
    linear-gradient(30deg, var(--pattern-line) 12%, transparent 12.5%, transparent 87%, var(--pattern-line) 87.5%, var(--pattern-line)),
    linear-gradient(150deg, var(--pattern-line) 12%, transparent 12.5%, transparent 87%, var(--pattern-line) 87.5%, var(--pattern-line)),
    linear-gradient(30deg, var(--pattern-line) 12%, transparent 12.5%, transparent 87%, var(--pattern-line) 87.5%, var(--pattern-line)),
    linear-gradient(150deg, var(--pattern-line) 12%, transparent 12.5%, transparent 87%, var(--pattern-line) 87.5%, var(--pattern-line)),
    linear-gradient(60deg, rgba(17, 17, 17, 0.035) 25%, transparent 25.5%, transparent 75%, rgba(17, 17, 17, 0.035) 75%, rgba(17, 17, 17, 0.035)),
    linear-gradient(60deg, rgba(17, 17, 17, 0.035) 25%, transparent 25.5%, transparent 75%, rgba(17, 17, 17, 0.035) 75%, rgba(17, 17, 17, 0.035)),
    radial-gradient(circle at center, var(--pattern-glow), rgba(255, 255, 255, 0.3) 65%, transparent 100%);
  background-size: 96px 168px, 96px 168px, 96px 168px, 96px 168px, 96px 168px, 96px 168px, 100% 100%;
  background-position: 0 0, 0 0, 48px 84px, 48px 84px, 0 0, 48px 84px, center;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

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

.site-shell {
  position: relative;
  overflow: clip;
  isolation: isolate;
}

.site-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(244, 244, 245, 0.46)),
    radial-gradient(circle at 22% 14%, rgba(255, 255, 255, 0.45), transparent 24%),
    radial-gradient(circle at 80% 10%, rgba(214, 214, 218, 0.18), transparent 18%);
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.nav-wrap {
  position: relative;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  min-width: 0;
}

.brand-mark {
  position: relative;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  border: 2px solid rgba(17, 17, 17, 0.92);
  box-shadow:
    0 12px 24px rgba(17, 17, 17, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.98), rgba(246, 246, 247, 0.92) 62%, rgba(235, 235, 237, 0.92));
}

.brand-mark::after {
  content: "AM360";
  position: relative;
  z-index: 1;
  color: #333333;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  transform: translateX(0.05em);
}

.brand-text {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}

.brand-text strong,
.section-heading h2,
.hero h1,
.tour-sidebar h3,
.footer strong {
  font-family: "Space Grotesk", "Manrope", sans-serif;
}

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

.brand-text small {
  color: var(--muted);
  font-size: 0.8rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(0.42rem, 0.75vw, 0.82rem);
}

.nav a {
  color: var(--muted);
  font-size: clamp(0.84rem, 0.9vw, 0.9rem);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 0.18rem;
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

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

.nav a[aria-current="page"] {
  padding: 0.58rem 0.82rem;
  color: var(--text);
  font-weight: 800;
  background: rgba(17, 17, 17, 0.08);
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.08);
}

.nav a[aria-current="page"]::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 0.42rem;
  border-radius: 999px;
  background: var(--text);
}

.nav-cta {
  padding: 0.8rem 1.15rem;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.06);
  color: var(--text);
  touch-action: manipulation;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  padding: 5.5rem 0 4rem;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(243, 244, 245, 0.84)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.12) 44%, rgba(255, 255, 255, 0.76)),
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.66), transparent 26%),
    radial-gradient(circle at 84% 12%, rgba(216, 216, 220, 0.24), transparent 18%);
  pointer-events: none;
  z-index: -1;
}

.hero-grid,
.about-layout,
.contact-grid,
.innovation-layout {
  display: grid;
  gap: 2rem;
}

.hero-grid {
  align-items: center;
  grid-template-columns: 1.1fr 0.9fr;
}

.hero-grid > *,
.compact-grid > *,
.compact-showcase > *,
.tour-layout > *,
.contact-grid > *,
.page-panorama-grid > *,
.compare-grid > *,
.reference-slide > *,
.branch-overview-card > *,
.reference-page-card > * {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 700;
}

.hero h1,
.section-heading h2 {
  margin: 0;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 7vw, 5.7rem);
  line-height: 0.93;
}

.lead,
.section-heading p,
.about-copy p,
.service-card p,
.benefit-card p,
.innovation-card p,
.gallery-copy p,
.contact-card p,
.footer p,
.viewer-note,
.form-status,
.info-card p,
.feature-list li {
  color: var(--muted);
}

.lead {
  max-width: min(62ch, 100%);
  font-size: 1.08rem;
  line-height: 1.7;
  margin: 1.25rem 0 0;
}

.hero-actions,
.hero-badges,
.footer-wrap,
.viewer-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.hero-actions {
  margin-top: 2rem;
}

.hero-actions .button {
  min-width: 220px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 52px;
  min-width: 178px;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button::after {
  content: "";
  width: 0.44rem;
  height: 0.44rem;
  flex: 0 0 auto;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  opacity: 0.82;
  transform: rotate(45deg);
  transition: transform 180ms ease, opacity 180ms ease;
}

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

.button:hover::after,
.button:focus-visible::after {
  opacity: 1;
  transform: translateX(3px) rotate(45deg);
}

.button-primary {
  background: linear-gradient(135deg, #111111, #2a2a2d 58%, #4a4a50);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(17, 17, 17, 0.16);
}

.button-secondary {
  border-color: rgba(17, 17, 17, 0.16);
  background: rgba(255, 255, 255, 0.74);
}

.hero-badges {
  margin-top: 1.4rem;
}

.hero-badges span,
.tag-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: rgba(255, 255, 255, 0.74);
  color: #2b2b2e;
  font-size: 0.94rem;
}

.hero-visual {
  position: relative;
  min-height: 440px;
}

.hero-copy {
  min-width: 0;
}

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 241, 243, 0.98));
}

.hero-card img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.lens-card::after {
  content: "";
  position: absolute;
  inset: auto 8% 6% 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(17, 17, 17, 0.18), transparent);
}

.floating-metric {
  position: absolute;
  padding: 1rem 1.15rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(17, 17, 17, 0.1);
  box-shadow: var(--shadow);
}

.floating-metric strong {
  display: block;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 1.5rem;
}

.floating-metric span {
  color: var(--muted);
  font-size: 0.9rem;
}

.metric-top {
  top: 10%;
  right: -4%;
}

.metric-bottom {
  bottom: 10%;
  left: -4%;
}

.section {
  padding: calc(var(--editor-section-spacing, 24px) * 1.6) 0 var(--editor-section-spacing, 24px);
}

.section-heading {
  max-width: 700px;
  margin-bottom: 1.6rem;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  line-height: 1.02;
}

.section-heading p {
  margin-top: 1rem;
  line-height: 1.7;
}

.panel,
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--editor-card-radius, 22px);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 244, 246, 0.9)),
    var(--panel);
  box-shadow: var(--shadow);
}

.service-grid,
.benefit-grid,
.innovation-grid,
.gallery-grid {
  display: grid;
  gap: 1.25rem;
}

.service-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.service-card,
.benefit-card,
.innovation-card,
.info-card,
.contact-card {
  padding: 1.3rem;
}

.service-card::before,
.benefit-card::before,
.innovation-card::before,
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(17, 17, 17, 0.04), transparent 30%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.6), transparent 24%);
  pointer-events: none;
}

.service-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(17, 17, 17, 0.04);
  border: 1px solid rgba(17, 17, 17, 0.1);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3,
.benefit-card h3,
.innovation-card h3,
.gallery-copy h3,
.info-card h3,
.contact-card h3,
.team-entry strong {
  margin: 1rem 0 0.65rem;
  font-size: 1.1rem;
}

.service-link-card,
.industry-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-link-card:hover,
.service-link-card:focus-visible,
.industry-card:hover,
.industry-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(17, 17, 17, 0.2);
}

.card-link-text {
  display: inline-flex;
  margin-top: auto;
  padding-top: 0.7rem;
  color: var(--text);
  font-weight: 700;
}

.tour-layout,
.contact-layout,
.about-layout {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: minmax(0, 1.08fr) minmax(250px, 0.72fr);
  align-items: start;
}

.panorama-panel {
  padding: 1rem;
}

.viewer-toolbar {
  justify-content: space-between;
  margin-bottom: 1rem;
}

.scene-switcher {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  min-width: min(100%, 280px);
}

.scene-button {
  min-height: 44px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  padding: 0.8rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease;
}

.scene-button.is-active,
.scene-button:hover,
.scene-button:focus-visible {
  border-color: rgba(17, 17, 17, 0.28);
  background: rgba(17, 17, 17, 0.08);
}

.panorama-viewer,
.viewer-fallback img {
  display: block;
  width: 100%;
  height: var(--tour-viewer-height, clamp(230px, 32vh, 300px));
  min-height: 0;
  border-radius: 22px;
  background: #eceff1;
  object-fit: cover;
  touch-action: pan-y;
}

.viewer-fallback p {
  margin: 1rem 0 0;
}

.feature-list {
  margin: 0.85rem 0 0;
  padding-left: 1.1rem;
  line-height: 1.65;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

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

.benefit-card {
  min-height: 220px;
}

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

.industry-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
}

.gallery-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.gallery-card img {
  display: block;
  width: 100%;
  height: var(--industry-image-height, clamp(130px, 17vh, 175px));
  aspect-ratio: 16 / 7.2;
  object-fit: cover;
}

.gallery-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0.8rem 0.9rem 0.95rem;
}

.gallery-copy h3,
.gallery-copy p {
  margin-inline: 0;
}

.gallery-copy h3 {
  margin-top: 0;
}

.gallery-copy p {
  margin-top: 0;
  line-height: 1.45;
}

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

.team-panel {
  display: grid;
  gap: 1rem;
  align-self: start;
  padding: 1.5rem;
}

.team-entry {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.team-role {
  display: block;
  color: var(--cyan);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-layout {
  gap: 2rem;
  grid-template-columns: 1fr;
}

.contact-grid {
  display: grid;
  gap: 1.35rem;
  grid-template-columns: 1fr;
}

.contact-form {
  max-width: 880px;
  width: 100%;
  padding: 1.5rem;
}

.contact-side {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.form-grid label {
  display: grid;
  gap: 0.55rem;
}

.form-grid span {
  font-size: 0.94rem;
  color: #262628;
}

.full-width {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  padding: 0.95rem 1rem;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(17, 17, 17, 0.16);
  border-color: rgba(17, 17, 17, 0.28);
}

.form-status {
  min-height: 1.5rem;
  margin: 0.9rem 0 0;
}

.form-status.is-success {
  color: var(--success);
}

.footer {
  padding: 2rem 0 3rem;
}

.footer-wrap {
  justify-content: space-between;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  padding-top: 1.5rem;
}

.footer-link {
  color: var(--cyan);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.page-hero {
  padding-top: 4.25rem;
}

.page-hero-grid,
.detail-grid,
.offer-grid {
  display: grid;
  gap: 1.5rem;
}

.page-hero-grid {
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
}

.branch-page-hero .page-hero-grid {
  gap: clamp(1.5rem, 3.6vw, 3rem);
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.9fr);
}

.references-page-hero .page-hero-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.92fr);
  gap: clamp(1.5rem, 4vw, 3.25rem);
}

.page-hero-grid > * {
  min-width: 0;
}

.page-title {
  margin: 0;
  letter-spacing: 0;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 0.95;
}

.branch-page-hero .page-title {
  max-width: 12.5ch;
  font-size: clamp(2.25rem, 4.7vw, 4.15rem);
  line-height: 1.01;
  overflow-wrap: break-word;
}

.references-page-hero .page-title {
  max-width: 11ch;
  font-size: clamp(2.35rem, 5vw, 4.35rem);
  line-height: 1;
  overflow-wrap: break-word;
}

.references-page-hero .lead {
  max-width: 48ch;
}

.references-page-hero .hero-card img {
  width: 100%;
  height: clamp(300px, 42vh, 470px);
  min-height: 0;
  object-fit: cover;
}

.branch-page-hero .lead {
  max-width: 50ch;
}

.branch-page-hero .hero-card img {
  width: 100%;
  height: clamp(300px, 43vh, 500px);
  min-height: 0;
  object-fit: cover;
}

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

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

.page-panorama-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
}

.page-side-stack {
  display: grid;
  gap: 1rem;
}

.single-panorama-wrap {
  padding: 1rem;
}

.single-panorama {
  width: 100%;
  height: var(--single-panorama-height, clamp(220px, 34vh, 320px));
  min-height: 0;
  border-radius: 22px;
  background: #eceff1;
}

.kuula-embed-wrap {
  padding: 0.75rem;
}

.kuula-embed {
  display: block;
  width: 100%;
  height: clamp(360px, 62vh, 700px);
  border: 0;
  border-radius: 22px;
  background: #eceff1;
}

.planned-showcase {
  overflow: hidden;
  padding: 0;
}

.planned-showcase img {
  width: 100%;
  height: var(--single-panorama-height, clamp(240px, 36vh, 340px));
  object-fit: cover;
}

.planned-showcase .gallery-copy {
  padding: 1.1rem;
}

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

.image-pair-card img {
  display: block;
  width: 100%;
  height: var(--detail-image-height, clamp(130px, 20vh, 200px));
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.image-pair-card .gallery-copy {
  padding-top: 1rem;
}

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

.stat-card {
  padding: 1.5rem;
}

.stat-card strong {
  display: block;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.stat-card h3 {
  margin: 0.85rem 0 0.55rem;
  font-size: 1.05rem;
}

.compare-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.compare-card {
  display: flex;
  flex-direction: column;
  padding: 1rem;
}

.compare-card img,
.compare-visual img {
  display: block;
  width: 100%;
  height: var(--compare-image-height, clamp(150px, 21vh, 210px));
  aspect-ratio: 16 / 7.6;
  object-fit: cover;
  border-radius: 18px;
}

.compare-label {
  display: inline-flex;
  align-self: flex-start;
  min-height: 34px;
  align-items: center;
  margin-bottom: 0.9rem;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
  font-weight: 700;
}

.compare-visual {
  position: relative;
}

.compare-ring {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 72px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.9);
  color: #fff;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-weight: 700;
}

.compare-card-accent {
  border-color: rgba(17, 17, 17, 0.18);
}

.quick-inquiry-card {
  display: grid;
  gap: 0.8rem;
  padding: 1.25rem;
}

.quick-inquiry-card .button {
  width: 100%;
}

.quick-inquiry-card label {
  display: grid;
  gap: 0.45rem;
}

.quick-inquiry-card span {
  font-size: 0.92rem;
  color: #262628;
}

.quick-inquiry-card input,
.quick-inquiry-card textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  padding: 0.85rem 0.9rem;
  resize: vertical;
}

.quick-inquiry-card input:focus,
.quick-inquiry-card textarea:focus {
  outline: 2px solid rgba(17, 17, 17, 0.16);
  border-color: rgba(17, 17, 17, 0.28);
}

.reference-slider {
  padding: 0.85rem;
}

.reference-slider-head {
  display: flex;
  justify-content: flex-end;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
}

.slider-button {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
  cursor: pointer;
}

.reference-track {
  position: relative;
}

.reference-slide {
  display: none;
  gap: 0.85rem;
}

.reference-slide.is-active {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(240px, 0.78fr);
  align-items: center;
}

.reference-slide img {
  display: block;
  width: 100%;
  height: var(--reference-image-height, clamp(175px, 28vh, 250px));
  aspect-ratio: 16 / 7.2;
  object-fit: cover;
  border-radius: 22px;
}

.section-tour .container,
.section-compare .container,
.section-gallery .container,
.section-references .container {
  max-width: 960px;
}

.section-tour,
.section-compare,
.section-gallery,
.section-references {
  padding: 1.8rem 0 0.85rem;
}

.section-tour .section-heading,
.section-compare .section-heading,
.section-gallery .section-heading,
.section-references .section-heading {
  margin-bottom: 1rem;
}

.section-tour .section-heading h2,
.section-compare .section-heading h2,
.section-gallery .section-heading h2,
.section-references .section-heading h2 {
  max-width: 720px;
  font-size: clamp(1.5rem, 2.7vw, 2.15rem);
  line-height: 1.06;
}

.section-tour .section-heading p,
.section-compare .section-heading p,
.section-gallery .section-heading p,
.section-references .section-heading p {
  max-width: 700px;
  margin-top: 0.55rem;
  line-height: 1.55;
}

.section-tour .panorama-panel,
.section-tour .info-card,
.section-tour .quick-inquiry-card,
.section-references .reference-slider,
.section-compare .compare-card,
.section-gallery .gallery-card {
  border-radius: 20px;
}

.section-tour .panorama-panel,
.section-tour .info-card,
.section-tour .quick-inquiry-card {
  padding: 0.75rem;
}

.section-tour .viewer-toolbar {
  gap: 0.8rem;
  margin-bottom: 0.6rem;
}

.section-tour .feature-list,
.section-compare .feature-list {
  line-height: 1.35;
}

.section-tour .info-card h3,
.section-tour .quick-inquiry-card h3,
.section-gallery .gallery-copy h3,
.section-compare .compare-card h3,
.section-references .reference-copy h3 {
  font-size: 0.96rem;
  line-height: 1.2;
}

.section-tour .scene-button {
  min-height: 42px;
  padding: 0.55rem 0.85rem;
}

.section-tour .viewer-note,
.section-gallery .gallery-copy p,
.section-references .reference-copy p,
.section-compare .feature-list,
.section-tour .feature-list,
.section-tour .quick-inquiry-card p {
  font-size: 0.92rem;
}

.section-tour .tag-cloud {
  gap: 0.45rem;
}

.section-tour .tag-cloud span {
  padding: 0.45rem 0.7rem;
  font-size: 0.86rem;
}

.section-gallery .industry-grid {
  gap: 1rem;
}

.section-references .reference-slider,
.section-tour .tour-layout,
.section-compare .compare-grid {
  max-width: 900px;
  margin-inline: auto;
}

.section-references .reference-copy h3 {
  margin-bottom: 0.55rem;
}

.reference-copy span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 0.7rem;
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.reference-copy h3 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-family: "Space Grotesk", "Manrope", sans-serif;
}

.reference-copy p {
  margin: 0;
  line-height: 1.5;
}

.home-compact .section-services,
.home-compact .section-stats,
.home-compact .section-tour,
.home-compact .section-compare,
.home-compact .section-gallery,
.home-compact .section-references,
.home-compact .section-benefits,
.home-compact .section-innovation,
.home-compact .section-about,
.home-compact .section-contact-short,
.home-compact .section-credits {
  display: none;
}

.home-compact .hero {
  padding-bottom: 2.6rem;
}

.compact-section {
  padding: 1.55rem 0;
}

.compact-grid,
.compact-showcase,
.contact-priority-grid,
.showcase-detail-grid {
  display: grid;
  gap: 1.25rem;
  align-items: center;
}

.compact-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
}

.compact-points,
.compact-stat-row,
.review-grid,
.showcase-grid,
.simple-page-grid {
  display: grid;
  gap: 0.9rem;
}

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

.compact-point,
.compact-stat,
.review-card {
  padding: 1rem;
}

.compact-point {
  display: grid;
  gap: 0.35rem;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

a.compact-point,
a.service-link-card,
a.industry-card,
a.hub-card,
a.showcase-card,
a.example-card {
  cursor: pointer;
}

a.compact-point,
a.service-link-card,
a.industry-card,
a.hub-card {
  padding-right: 3.2rem;
}

a.compact-point::after,
a.service-link-card::after,
a.industry-card::after,
a.hub-card::after,
a.showcase-card::after,
a.example-card::after {
  content: ">";
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 3;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  background: rgba(255, 255, 255, 0.84);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.08);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

a.compact-point:hover,
a.compact-point:focus-visible,
a.service-link-card:hover,
a.service-link-card:focus-visible,
a.industry-card:hover,
a.industry-card:focus-visible,
a.showcase-card:hover,
a.showcase-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(17, 17, 17, 0.22);
  box-shadow: 0 26px 58px rgba(17, 17, 17, 0.12);
}

a.compact-point:hover::after,
a.compact-point:focus-visible::after,
a.service-link-card:hover::after,
a.service-link-card:focus-visible::after,
a.industry-card:hover::after,
a.industry-card:focus-visible::after,
a.hub-card:hover::after,
a.hub-card:focus-visible::after,
a.showcase-card:hover::after,
a.showcase-card:focus-visible::after,
a.example-card:hover::after,
a.example-card:focus-visible::after {
  background: var(--text);
  color: #ffffff;
  border-color: var(--text);
  transform: translateX(3px);
}

.compact-point strong,
.compact-stat strong,
.review-card strong {
  font-family: "Space Grotesk", "Manrope", sans-serif;
}

.compact-point span,
.compact-stat span,
.review-card span {
  color: var(--muted);
}

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

.compact-stat {
  min-height: 132px;
}

.compact-stat strong {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 1.7rem;
}

.compact-process {
  padding-top: 1.25rem;
}

.compact-process-heading {
  max-width: 760px;
  margin-bottom: 1.25rem;
}

.compact-process-heading h2 {
  max-width: 680px;
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.process-line::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(17, 17, 17, 0.22), transparent);
  pointer-events: none;
}

.process-step {
  display: grid;
  align-content: start;
  gap: 0.55rem;
  min-height: 176px;
  padding: 1.05rem;
}

.process-step span {
  position: relative;
  z-index: 1;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  box-shadow: 0 14px 30px rgba(17, 17, 17, 0.16);
}

.process-step strong {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 1.08rem;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.compact-showcase {
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.7fr);
}

.compact-showcase-copy h2 {
  max-width: 520px;
  margin: 0;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.03;
}

.compact-showcase-copy p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  line-height: 1.65;
}

.compact-media-card {
  display: grid;
  gap: 0;
  overflow: hidden;
}

.embed-360-body {
  min-height: 100vh;
  background: #111111;
}

.embed-360-body::before {
  display: none;
}

.embed-360-shell {
  position: fixed;
  inset: 0;
  overflow: hidden;
  background: #111111;
}

.embed-panorama,
.embed-fallback,
.embed-fallback img {
  width: 100%;
  height: 100%;
}

.embed-panorama,
.embed-fallback img {
  display: block;
}

.embed-fallback img {
  object-fit: cover;
}

.embed-360-toolbar {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  pointer-events: none;
}

.embed-360-toolbar button {
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  padding: 0.5rem 0.78rem;
  color: #ffffff;
  background: rgba(17, 17, 17, 0.62);
  backdrop-filter: blur(14px);
  cursor: pointer;
  pointer-events: auto;
  transition: background 180ms ease, border-color 180ms ease;
}

.embed-360-toolbar button.is-active,
.embed-360-toolbar button:hover,
.embed-360-toolbar button:focus-visible {
  border-color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.18);
}

.compact-media-card img,
.showcase-card img,
.showcase-hero-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.compact-media-card div,
.showcase-card div {
  display: grid;
  gap: 0.3rem;
  padding: 1rem;
}

.compact-media-card span,
.showcase-card span,
.review-card span {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.industry-globe-carousel {
  position: relative;
  height: clamp(280px, 29vw, 318px);
  min-height: 0;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 46%, rgba(17, 17, 17, 0.1), transparent 28%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.96), rgba(241, 242, 244, 0.84) 62%, rgba(255, 255, 255, 0.92)),
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(236, 238, 241, 0.9));
  perspective: 1200px;
  touch-action: pan-y;
}

.industry-globe-carousel::before,
.industry-globe-carousel::after,
.globe-halo {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}

.industry-globe-carousel::before {
  inset: 14% 17%;
  border: 1px solid rgba(17, 17, 17, 0.08);
  transform: rotateX(66deg) rotateZ(-10deg);
}

.industry-globe-carousel::after {
  inset: 24% 25%;
  border: 1px dashed rgba(17, 17, 17, 0.1);
  transform: rotateX(72deg) rotateZ(18deg);
}

.globe-halo {
  inset: 11% 18%;
  background:
    linear-gradient(90deg, transparent, rgba(17, 17, 17, 0.08), transparent),
    radial-gradient(circle, transparent 58%, rgba(17, 17, 17, 0.07) 59%, transparent 61%);
  filter: blur(0.2px);
  opacity: 0.75;
}

.globe-shell {
  position: absolute;
  inset: 1.1rem 3.55rem 2.6rem;
  transform-style: preserve-3d;
}

.globe-card {
  --x: 0px;
  --z: 0px;
  --scale: 1;
  --opacity: 1;
  --blur: 0px;
  --rotate: 0deg;
  --z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: var(--z-index);
  display: grid;
  width: min(82%, 340px);
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 58px rgba(17, 17, 17, 0.14);
  opacity: var(--opacity);
  filter: blur(var(--blur));
  transform:
    translate(-50%, -50%)
    translateX(var(--x))
    translateZ(var(--z))
    rotateY(var(--rotate))
    scale(var(--scale));
  transition: transform 620ms cubic-bezier(0.2, 0.72, 0.22, 1), opacity 520ms ease, filter 520ms ease, box-shadow 520ms ease;
  will-change: transform, opacity, filter;
}

.globe-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.18), transparent 34%, rgba(255, 255, 255, 0.16) 72%, transparent),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 7px);
  mix-blend-mode: screen;
  opacity: 0.45;
}

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

.example-switcher {
  position: relative;
  min-height: 392px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.9), transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 242, 244, 0.92));
  perspective: 1200px;
  touch-action: pan-y;
}

.example-switcher::before,
.example-switcher::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 2;
}

.example-switcher::before {
  inset: 0;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.18), transparent 28%, rgba(255, 255, 255, 0.26) 58%, transparent 74%),
    radial-gradient(circle at 50% 102%, rgba(17, 17, 17, 0.08), transparent 42%);
  opacity: 0.7;
}

.example-switcher::after {
  left: 12%;
  right: 12%;
  bottom: 3.6rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(17, 17, 17, 0.16), transparent);
}

.example-switcher-track {
  position: absolute;
  inset: 1rem 1rem 3.25rem;
  overflow: hidden;
}

.example-card {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  width: min(78%, 430px);
  height: calc(100% - 0.2rem);
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: rgba(255, 255, 255, 0.88);
  opacity: 0;
  pointer-events: none;
  filter: blur(2px);
  transform: translate(-50%, -50%) translateX(0) scale(0.78) rotateY(0deg);
  transition: opacity 680ms cubic-bezier(0.2, 0.72, 0.22, 1), transform 680ms cubic-bezier(0.2, 0.72, 0.22, 1), filter 560ms ease, box-shadow 560ms ease;
  will-change: transform, opacity, filter;
}

.example-card.is-active {
  z-index: 6;
  opacity: 1;
  filter: blur(0);
  pointer-events: auto;
  box-shadow: 0 22px 52px rgba(17, 17, 17, 0.12);
  transform: translate(-50%, -50%) translateX(0) scale(1) rotateY(0deg);
}

.example-switcher.is-moving-next .example-card.is-active {
  animation: exampleSettleNext 680ms cubic-bezier(0.2, 0.72, 0.22, 1);
}

.example-switcher.is-moving-prev .example-card.is-active {
  animation: exampleSettlePrev 680ms cubic-bezier(0.2, 0.72, 0.22, 1);
}

.example-card.is-prev {
  z-index: 3;
  opacity: 0.48;
  filter: blur(1.2px);
  transform: translate(-50%, -50%) translateX(-48%) scale(0.82) rotateY(13deg);
}

.example-card.is-next {
  z-index: 3;
  opacity: 0.48;
  filter: blur(1.2px);
  transform: translate(-50%, -50%) translateX(48%) scale(0.82) rotateY(-13deg);
}

.example-card.is-far-prev {
  z-index: 1;
  opacity: 0.18;
  filter: blur(2px);
  transform: translate(-50%, -50%) translateX(-78%) scale(0.68) rotateY(20deg);
}

.example-card.is-far-next {
  z-index: 1;
  opacity: 0.18;
  filter: blur(2px);
  transform: translate(-50%, -50%) translateX(78%) scale(0.68) rotateY(-20deg);
}

.example-card.is-hidden {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.62);
}

.example-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 680ms cubic-bezier(0.2, 0.72, 0.22, 1);
}

.example-card.is-active img {
  transform: scale(1.035);
}

.example-card div {
  display: grid;
  gap: 0.35rem;
  min-height: 86px;
  padding: 0.95rem 1rem 1.15rem;
}

.example-card span {
  color: #1d1d20;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.example-card strong {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(1rem, 2vw, 1.12rem);
  line-height: 1.15;
}

@keyframes exampleSettleNext {
  from {
    transform: translate(-50%, -50%) translateX(12%) scale(0.94) rotateY(-8deg);
  }

  to {
    transform: translate(-50%, -50%) translateX(0) scale(1) rotateY(0deg);
  }
}

@keyframes exampleSettlePrev {
  from {
    transform: translate(-50%, -50%) translateX(-12%) scale(0.94) rotateY(8deg);
  }

  to {
    transform: translate(-50%, -50%) translateX(0) scale(1) rotateY(0deg);
  }
}

.example-nav {
  position: absolute;
  top: 43%;
  z-index: 10;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.84);
  color: var(--text);
  box-shadow: 0 10px 26px rgba(17, 17, 17, 0.08);
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.example-nav:hover,
.example-nav:focus-visible {
  background: #ffffff;
  border-color: rgba(17, 17, 17, 0.26);
  transform: translateY(-50%) scale(1.04);
}

.example-nav-prev {
  left: 1rem;
}

.example-nav-next {
  right: 1rem;
}

.example-dots {
  position: absolute;
  left: 50%;
  bottom: 1.15rem;
  z-index: 8;
  display: flex;
  gap: 0.5rem;
  transform: translateX(-50%);
}

.example-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.22);
  cursor: pointer;
}

.example-dots button.is-active {
  background: rgba(17, 17, 17, 0.78);
}

.globe-card span,
.globe-card strong {
  position: relative;
  z-index: 1;
  padding-inline: 1rem;
}

.globe-card span {
  padding-top: 0.95rem;
  color: #1d1d20;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.globe-card strong {
  padding-bottom: 1rem;
  margin-top: 0.25rem;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 1.05rem;
}

.globe-card.is-active {
  box-shadow: 0 28px 70px rgba(17, 17, 17, 0.18);
}

.globe-card:not(.is-active) {
  pointer-events: none;
}

.globe-nav {
  position: absolute;
  top: 50%;
  z-index: 20;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.08);
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 180ms ease, background 180ms ease;
}

.globe-nav:hover,
.globe-nav:focus-visible {
  background: #ffffff;
  transform: translateY(-50%) scale(1.05);
}

.globe-nav-prev {
  left: 0.85rem;
}

.globe-nav-next {
  right: 0.85rem;
}

.globe-dots {
  position: absolute;
  left: 50%;
  bottom: 0.95rem;
  z-index: 12;
  display: flex;
  gap: 0.45rem;
  transform: translateX(-50%);
}

.globe-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.22);
  cursor: pointer;
}

.globe-dots button.is-active {
  background: rgba(17, 17, 17, 0.76);
}

.is-simple-globe .globe-card {
  top: 50%;
  left: 50%;
  z-index: 0;
  opacity: 0;
  filter: blur(2px);
  pointer-events: none;
  transform: translate(-50%, -50%) translateX(0) scale(0.72) rotateY(0deg);
}

.is-simple-globe .globe-card.is-current {
  z-index: 5;
  opacity: 1;
  filter: blur(0);
  pointer-events: auto;
  transform: translate(-50%, -50%) translateX(0) scale(1) rotateY(0deg);
}

.is-simple-globe .globe-card.is-prev {
  z-index: 3;
  opacity: 0.48;
  filter: blur(1.1px);
  transform: translate(-50%, -50%) translateX(-42%) scale(0.78) rotateY(16deg);
}

.is-simple-globe .globe-card.is-next {
  z-index: 3;
  opacity: 0.48;
  filter: blur(1.1px);
  transform: translate(-50%, -50%) translateX(42%) scale(0.78) rotateY(-16deg);
}

.is-simple-globe .globe-card.is-far-prev {
  z-index: 1;
  opacity: 0.18;
  filter: blur(2px);
  transform: translate(-50%, -50%) translateX(-70%) scale(0.62) rotateY(24deg);
}

.is-simple-globe .globe-card.is-far-next {
  z-index: 1;
  opacity: 0.18;
  filter: blur(2px);
  transform: translate(-50%, -50%) translateX(70%) scale(0.62) rotateY(-24deg);
}

.is-simple-globe .globe-card.is-hidden {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.58);
}

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

.review-card {
  display: grid;
  gap: 0.75rem;
}

.review-card p {
  margin: 0;
  color: #303035;
  line-height: 1.55;
}

.compact-final-cta .cta-band {
  gap: 0.8rem;
}

.compact-final-cta .cta-band p {
  max-width: 700px;
  margin: 0;
}

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

.showcase-card {
  display: flex;
  flex-direction: column;
}

.showcase-card img {
  height: 190px;
}

.showcase-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.showcase-detail-grid {
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 0.75fr);
}

.showcase-hero-image img {
  height: 360px;
}

.showcase-panorama-only .container {
  max-width: 1080px;
}

.showcase-panorama-only .section-heading {
  max-width: 820px;
}

.showcase-panorama-only .single-panorama {
  height: clamp(360px, 56vh, 620px);
}

.showcase-panorama-only .kuula-embed {
  height: clamp(420px, 68vh, 760px);
}

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

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

.contact-priority-card {
  display: grid;
  gap: 0.8rem;
  padding: 1.35rem;
}

.contact-priority-card strong {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.contact-priority-card p {
  margin: 0;
  color: var(--muted);
}

.optional-form-note {
  margin: 0 0 1rem;
  color: var(--muted);
}

.floating-contact-button {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 48px;
  padding: 0.72rem 0.95rem 0.72rem 0.78rem;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.96), rgba(49, 49, 54, 0.94)),
    rgba(17, 17, 17, 0.92);
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(14px);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.floating-contact-button::before {
  content: "";
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, #ffffff 0 2px, transparent 3px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.08);
}

.floating-contact-button:hover,
.floating-contact-button:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 24px 54px rgba(17, 17, 17, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.hub-grid,
.branch-overview-grid,
.reference-page-grid {
  display: grid;
  gap: 1rem;
}

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

.hub-card {
  display: grid;
  gap: 0.7rem;
  min-height: 230px;
  padding: 1.35rem;
  transition: transform 180ms ease, border-color 180ms ease;
}

.hub-card:hover,
.hub-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(17, 17, 17, 0.2);
}

.hub-card span,
.gallery-copy > span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hub-card h3 {
  margin: 0;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 1.5rem;
}

.hub-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.hub-card-strong {
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.94), rgba(54, 54, 58, 0.94)),
    var(--text);
  color: #ffffff;
}

.hub-card-strong p,
.hub-card-strong span {
  color: rgba(255, 255, 255, 0.78);
}

.branch-overview-grid,
.reference-page-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.branch-overview-card,
.reference-page-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.72fr) minmax(0, 1fr);
  min-height: 280px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.branch-overview-card img,
.reference-page-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  min-height: 280px;
  object-fit: cover;
}

.branch-overview-card .gallery-copy,
.reference-page-card .gallery-copy {
  gap: 0.65rem;
  padding: 1.15rem;
}

.card-actions,
.link-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: auto;
}

.card-actions a,
.link-band-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 38px;
  padding: 0.55rem 0.78rem;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.card-actions a::after,
.link-band-actions a::after {
  content: "";
  width: 0.36rem;
  height: 0.36rem;
  flex: 0 0 auto;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.card-actions a:hover,
.card-actions a:focus-visible,
.link-band-actions a:hover,
.link-band-actions a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(17, 17, 17, 0.24);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.08);
}

.card-actions a:hover::after,
.card-actions a:focus-visible::after,
.link-band-actions a:hover::after,
.link-band-actions a:focus-visible::after {
  transform: translateX(2px) rotate(45deg);
}

.link-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
}

.link-band h2 {
  margin: 0;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
}

[hidden],
[data-editor-hidden] {
  display: none !important;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1rem;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.2);
  cursor: pointer;
}

.slider-dot.is-active {
  background: rgba(17, 17, 17, 0.75);
}

.cta-band {
  display: grid;
  gap: 1rem;
  padding: 1.75rem;
  text-align: left;
}

.cta-band h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1.1;
  font-family: "Space Grotesk", "Manrope", sans-serif;
}

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

.credit-card {
  padding: 1.5rem;
}

.credit-list {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  line-height: 1.8;
  color: var(--muted);
}

.credit-list a {
  color: var(--text);
}

.contact-grid,
.form-grid,
.service-grid,
.benefit-grid,
.gallery-grid,
.innovation-grid,
.contact-side {
  min-width: 0;
}

[data-reveal] {
  --reveal-x: 0px;
  --reveal-y: 24px;
  opacity: 0;
  transform: translate3d(var(--reveal-x), var(--reveal-y), 0);
  transition: opacity 700ms ease, transform 700ms ease;
  transition-delay: var(--delay, 0ms);
}

.hero-copy[data-reveal],
.compact-grid > .section-heading[data-reveal],
.compact-showcase-copy[data-reveal] {
  --reveal-x: -16px;
  --reveal-y: 12px;
}

.hero-visual[data-reveal],
.compact-points[data-reveal],
.example-switcher[data-reveal] {
  --reveal-x: 16px;
  --reveal-y: 12px;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (max-width: 1100px) {
  .service-grid,
  .benefit-grid,
  .gallery-grid,
  .innovation-grid,
  .stats-grid,
  .contact-side,
  .industry-grid,
  .offer-grid,
  .detail-grid,
  .credits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .tour-layout,
  .about-layout,
  .contact-grid,
  .page-hero-grid,
  .branch-page-hero .page-hero-grid,
  .references-page-hero .page-hero-grid,
  .compare-grid,
  .page-panorama-grid,
  .compact-grid,
  .compact-showcase,
  .showcase-detail-grid,
  .link-band {
    grid-template-columns: 1fr;
  }

  .reference-slide.is-active {
    grid-template-columns: 1fr;
  }

  .reference-slide img {
    height: clamp(210px, 42vw, 300px);
    aspect-ratio: 16 / 10;
  }

  .branch-page-hero .page-title,
  .references-page-hero .page-title {
    max-width: min(100%, 680px);
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    line-height: 1.03;
    overflow-wrap: break-word;
  }

  .branch-page-hero .lead,
  .references-page-hero .lead {
    max-width: min(100%, 680px);
  }

  .hero {
    padding-top: 4.75rem;
    min-height: auto;
  }

  .hero-visual {
    min-height: auto;
  }

  .metric-top,
  .metric-bottom {
    position: static;
    margin-top: 1rem;
  }

  .panorama-viewer,
  .viewer-fallback img {
    height: var(--tour-viewer-height, clamp(220px, 32vh, 280px));
    min-height: 0;
  }
}

@media (max-width: 1120px) {
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
  }

  .nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(17, 17, 17, 0.1);
    box-shadow: var(--shadow);
    max-height: calc(100vh - var(--header-height) - 1.5rem);
    overflow-y: auto;
  }

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

  .nav a,
  .nav-cta {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .container {
    width: min(calc(100% - 1.5rem), var(--container));
  }

  .section {
    padding: 2.15rem 0 1rem;
  }

  .service-grid,
  .gallery-grid,
  .innovation-grid,
  .stats-grid,
  .credits-grid,
  .image-pair-grid,
  .compact-stat-row,
  .process-line,
  .showcase-grid,
  .simple-page-grid,
  .hub-grid,
  .branch-overview-grid,
  .reference-page-grid,
  .contact-priority-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-card img {
    height: clamp(170px, 26vw, 230px);
    aspect-ratio: 16 / 10;
  }

  .branch-overview-card,
  .reference-page-card {
    min-height: 0;
    grid-template-columns: minmax(180px, 0.58fr) minmax(0, 1fr);
  }

  .branch-overview-card img,
  .reference-page-card img {
    height: clamp(190px, 32vw, 260px);
    min-height: 0;
    max-height: none;
    aspect-ratio: 16 / 10;
  }

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

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

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    flex: 1 1 240px;
  }

  .hero h1 {
    max-width: 11ch;
    font-size: clamp(2.8rem, 9vw, 4.6rem);
  }

  .lead {
    font-size: 1rem;
  }

  .viewer-toolbar {
    align-items: flex-start;
  }

  .viewer-note {
    display: block;
    width: 100%;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 74px;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
  }

  .nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(17, 17, 17, 0.1);
    box-shadow: var(--shadow);
    max-height: calc(100vh - var(--header-height) - 1.5rem);
    overflow-y: auto;
  }

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

  .hero {
    padding-top: 4.25rem;
  }

  .hero h1 {
    max-width: 8.8ch;
    font-size: clamp(2rem, 9.6vw, 2.55rem);
    line-height: 1.02;
    overflow-wrap: normal;
  }

  .eyebrow {
    letter-spacing: 0.12em;
    overflow-wrap: anywhere;
  }

  .brand-text small {
    font-size: 0.74rem;
  }

  .hero-badges,
  .viewer-toolbar,
  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-grid,
  .benefit-grid,
  .gallery-grid,
  .innovation-grid,
  .contact-side,
  .form-grid,
  .offer-grid,
  .detail-grid,
  .image-pair-grid {
    grid-template-columns: 1fr;
  }

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

  .compact-points {
    grid-template-columns: 1fr;
  }

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

  .process-step {
    min-height: 0;
  }

  .hero-actions .button,
  .scene-button,
  .nav a,
  .nav-cta {
    width: 100%;
    justify-content: center;
  }

  .section-heading {
    margin-bottom: 1.5rem;
  }

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

  .compact-media-card img,
  .industry-globe-carousel,
  .example-switcher,
  .showcase-card img,
  .showcase-hero-image img {
    height: 220px;
  }

  .example-switcher {
    height: 365px;
    min-height: 365px;
  }

  .example-card img {
    height: 210px;
  }

  .example-card {
    width: min(88%, 330px);
  }

  .example-card.is-prev {
    opacity: 0.2;
    transform: translate(-50%, -50%) translateX(-32%) scale(0.78) rotateY(8deg);
  }

  .example-card.is-next {
    opacity: 0.2;
    transform: translate(-50%, -50%) translateX(32%) scale(0.78) rotateY(-8deg);
  }

  .example-card.is-far-prev,
  .example-card.is-far-next {
    opacity: 0;
  }

  .industry-globe-carousel {
    height: 300px;
  }

  .globe-shell {
    inset: 1rem 3rem 2.45rem;
  }

  .globe-card {
    width: min(78%, 300px);
  }

  .globe-card img {
    height: 142px;
  }

  .is-simple-globe .globe-card.is-prev {
    opacity: 0.34;
    transform: translate(-50%, -50%) translateX(-34%) scale(0.74) rotateY(12deg);
  }

  .is-simple-globe .globe-card.is-next {
    opacity: 0.34;
    transform: translate(-50%, -50%) translateX(34%) scale(0.74) rotateY(-12deg);
  }

  .is-simple-globe .globe-card.is-far-prev,
  .is-simple-globe .globe-card.is-far-next {
    opacity: 0;
  }

  .panel,
  .gallery-card,
  .contact-form {
    border-radius: 20px;
  }

  .branch-overview-card,
  .reference-page-card {
    grid-template-columns: 1fr;
  }

  .branch-overview-card img,
  .reference-page-card img {
    height: clamp(185px, 54vw, 260px);
    min-height: 0;
    max-height: none;
    aspect-ratio: 16 / 10;
  }

  .branch-overview-card .gallery-copy,
  .reference-page-card .gallery-copy {
    padding: 1rem;
  }

  .card-actions,
  .link-band-actions {
    gap: 0.45rem;
  }

  .card-actions a,
  .link-band-actions a {
    flex: 1 1 140px;
  }

  .floating-contact-button {
    right: 0.75rem;
    bottom: 0.75rem;
    width: 52px;
    min-height: 44px;
    padding: 0.65rem;
    font-size: 0;
  }

  .floating-contact-button::before {
    width: 26px;
    height: 26px;
  }

  .reference-slider-head {
    justify-content: flex-start;
  }

  .panorama-viewer,
  .viewer-fallback img {
    height: var(--tour-viewer-height, clamp(210px, 30vh, 260px));
    min-height: 0;
  }
}

@media (max-width: 560px) {
  body::before {
    background-size: 72px 126px, 72px 126px, 72px 126px, 72px 126px, 72px 126px, 72px 126px, 100% 100%;
    opacity: 0.9;
  }

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

  [data-reveal] {
    --reveal-x: 0px;
    --reveal-y: 14px;
    opacity: 1;
    transform: none;
    transition: none;
  }

  .brand {
    gap: 0.7rem;
  }

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

  .brand-mark::before {
    inset: 4px;
  }

  .brand-mark::after {
    font-size: 0.5rem;
  }

  .brand-text strong {
    font-size: 0.86rem;
  }

  .brand-text small {
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero {
    padding: 3.6rem 0 2.5rem;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.2rem);
    line-height: 0.98;
  }

  .lead,
  .section-heading p,
  .about-copy p {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .hero-card {
    border-radius: 28px;
  }

  .hero-card img {
    height: clamp(230px, 62vw, 300px);
    min-height: 0;
  }

  .page-title,
  .branch-page-hero .page-title,
  .references-page-hero .page-title {
    max-width: min(100%, 330px);
    font-size: clamp(1.6rem, 6.6vw, 1.9rem);
    line-height: 1.06;
    overflow-wrap: break-word;
  }

  .hero-copy,
  .section-heading,
  .page-hero-grid > div:first-child,
  .compact-showcase-copy {
    width: 100%;
    max-width: calc(100vw - 1rem);
  }

  .lead,
  .branch-page-hero .lead,
  .references-page-hero .lead,
  .section-heading p,
  .compact-showcase-copy p:not(.eyebrow) {
    max-width: min(100%, 320px);
  }

  .page-hero {
    padding-top: 2.6rem;
  }

  .page-hero-grid .hero-card img,
  .branch-page-hero .hero-card img,
  .references-page-hero .hero-card img {
    height: clamp(220px, 60vw, 300px);
    min-height: 0;
  }

  .gallery-card img,
  .reference-slide img,
  .image-pair-card img {
    height: clamp(180px, 56vw, 250px);
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .reference-copy,
  .gallery-copy {
    min-width: 0;
  }

  .floating-metric {
    width: 100%;
  }

  .service-card,
  .benefit-card,
  .innovation-card,
  .info-card,
  .contact-card,
  .contact-form,
  .team-panel,
  .panorama-panel,
  .credit-card,
  .cta-band,
  .quick-inquiry-card,
  .compare-card,
  .reference-slider,
  .stat-card {
    padding: 1.2rem;
  }

  .panorama-viewer,
  .viewer-fallback img {
    height: var(--tour-viewer-height, clamp(190px, 28vh, 230px));
    min-height: 0;
  }

  .scene-switcher {
    width: 100%;
  }

  .scene-button {
    flex: 1 1 100%;
  }

  .form-grid {
    gap: 0.85rem;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 0.9rem;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
