:root {
  --bg: #040404;
  --bg-soft: #0e0e10;
  --panel: rgba(18, 18, 20, 0.82);
  --panel-strong: rgba(24, 24, 28, 0.94);
  --line: rgba(255, 255, 255, 0.08);
  --text: #f5f2eb;
  --muted: #b8b1a5;
  --warm: #ff9a3c;
  --warm-soft: #ffbf78;
  --cool: #7ec7ff;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --content: 1180px;
  --radius: 28px;
  --header-height: 82px;
  --hero-focus-x: 50%;
  --hero-focus-y: 50%;
  --hero-shift-x: 0px;
  --hero-shift-y: 0px;
  --hero-scale: 1.08;
  --font-sans: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-sans);
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(255, 154, 60, 0.18), transparent 28%),
    radial-gradient(circle at 80% 20%, rgba(126, 199, 255, 0.12), transparent 24%),
    linear-gradient(180deg, #060606 0%, #09090a 38%, #050505 100%);
  line-height: 1.6;
}

body.has-intro .site-header,
body.has-intro main > *:not(.page-hero),
body.has-intro .page-hero .hero-copy,
body.has-intro .page-hero .hero-panel {
  opacity: 0;
}

body.intro-complete .site-header,
body.intro-complete main > *:not(.page-hero),
body.intro-complete .page-hero .hero-copy,
body.intro-complete .page-hero .hero-panel {
  opacity: 1;
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

body.has-intro .page-hero .hero-copy {
  transform: translateY(36px);
}

body.has-intro .page-hero .hero-panel {
  transform: translateY(46px);
}

body.intro-complete .page-hero .hero-copy,
body.intro-complete .page-hero .hero-panel {
  transform: translateY(0);
}

body.intro-complete .site-header {
  transition: opacity 420ms ease 60ms;
}

body.intro-complete main > *:not(.page-hero) {
  transition: opacity 480ms ease 120ms;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  z-index: 20;
  background: #fff;
  color: #000;
  padding: 0.75rem 1rem;
  border-radius: 999px;
}

.skip-link:focus {
  left: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(20px);
  background: rgba(4, 4, 4, 0.65);
  border-bottom: 1px solid var(--line);
}

.header-inner,
.content-wrap,
.footer-inner {
  width: min(calc(100% - 2rem), var(--content));
  margin: 0 auto;
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.brand-mark {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-mark strong {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.95rem;
  font-weight: 500;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a,
.lang-switch a {
  color: var(--muted);
  transition: color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"],
.lang-switch a:hover,
.lang-switch a[aria-current="page"] {
  color: var(--text);
}

.site-nav a:hover,
.lang-switch a:hover {
  transform: scale(1.04);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 46px;
  padding: 0 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.menu-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle-label {
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.menu-toggle-icon {
  display: inline-grid;
  gap: 0.22rem;
}

.menu-toggle-icon span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

body.menu-open .menu-toggle-icon span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.menu-open .menu-toggle-icon span:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-toggle-icon span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.lang-switch {
  display: flex;
  gap: 0.5rem;
  padding: 0.35rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.lang-switch a {
  display: inline-block;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}

.lang-switch a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.07);
}

.page-hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  overflow: clip;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.04), transparent 38%),
    linear-gradient(180deg, rgba(4, 4, 4, 0.08), rgba(4, 4, 4, 0.72)),
    #010101;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.18), rgba(5, 5, 5, 0.82)),
    radial-gradient(circle at center, rgba(255, 154, 60, 0.1), transparent 42%);
  pointer-events: none;
}

.hero-logo-mask {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.hero-mask-frame {
  position: relative;
  width: min(72vw, 920px);
  aspect-ratio: 1 / 1;
}

.hero-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-focus-x) var(--hero-focus-y);
  transform: scale(var(--hero-scale)) translate(var(--hero-shift-x), var(--hero-shift-y));
  transform-origin: center;
  will-change: transform;
  opacity: 0.95;
  filter: saturate(1.02) contrast(1.04);
  -webkit-mask-image: url("/assets/media/logo-alpha.png");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: url("/assets/media/logo-alpha.png");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.hero-grid {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 2rem), var(--content));
  min-height: calc(100svh - var(--header-height));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 2rem;
  align-items: end;
  padding: 4rem 0 3rem;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warm-soft);
}

.hero-copy h1,
.hero-shell h1 {
  margin: 1rem 0 1.2rem;
  font-family: var(--font-sans);
  font-size: clamp(2.8rem, 6vw, 5.7rem);
  line-height: 0.96;
  font-weight: 300;
  letter-spacing: -0.04em;
}

.hero-copy p,
.hero-shell p {
  max-width: 58ch;
  margin: 0;
  color: #ddd6ca;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button {
  background: linear-gradient(135deg, var(--warm), #f4b95d);
  color: #151515;
  font-weight: 600;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
}

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

.hero-panel,
.glass-panel,
.service-card,
.stat-card,
.image-panel,
.contact-card,
.form-card,
.legal-card {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(16px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 1.35rem;
  display: grid;
  gap: 1rem;
  align-self: center;
}

.hero-panel h2,
.glass-panel h2,
.section-head h2,
.cta-shell h2,
.legal-card h1 {
  font-family: var(--font-sans);
  font-weight: 300;
  letter-spacing: -0.03em;
}

.hero-panel h2 {
  margin: 0;
  font-size: 1.45rem;
}

.hero-panel p {
  margin: 0;
  color: var(--muted);
}

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

.hero-metrics div {
  padding: 0.9rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-metrics strong,
.stat-card strong {
  display: block;
  font-size: 1.35rem;
  color: var(--warm-soft);
}

.hero-metrics span,
.stat-card span,
.meta-list span {
  color: var(--muted);
  font-size: 0.95rem;
}

main {
  overflow: clip;
}

.section {
  padding: 6.5rem 0;
}

.section-tight {
  padding: 4.8rem 0;
}

.content-wrap {
  display: grid;
  gap: 2.2rem;
}

.section-head {
  max-width: 800px;
}

.section-head h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.grid-3,
.grid-2,
.masonry {
  display: grid;
  gap: 1.3rem;
}

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

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

.service-card,
.stat-card,
.contact-card,
.form-card,
.legal-card,
.glass-panel {
  padding: 1.6rem;
}

.service-card h3,
.contact-card h3,
.form-card h2,
.image-copy h3 {
  margin: 0 0 0.6rem;
  font-size: 1.3rem;
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.service-card p,
.contact-card p,
.glass-panel p,
.legal-card p,
.legal-card li {
  margin: 0;
  color: var(--muted);
}

.service-card ul,
.contact-card ul,
.glass-panel ul,
.legal-card ul {
  margin: 1rem 0 0;
  padding-left: 1rem;
  color: var(--muted);
}

.stat-card {
  display: grid;
  gap: 0.35rem;
  min-height: 155px;
}

.image-split,
.cta-shell,
.page-shell,
.contact-shell,
.about-shell {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.image-panel {
  overflow: hidden;
  min-height: 320px;
}

.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--media-focus-x, center) var(--media-focus-y, center);
  transform:
    translateX(var(--media-shift-x, 0px))
    translateY(var(--media-shift-y, 0px))
    scale(var(--media-scale, 1));
  transform-origin: center;
  cursor: zoom-in;
}

.image-copy,
.cta-card {
  padding: 2rem;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
}

.image-copy h3,
.cta-card h3 {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -0.03em;
}

.image-copy p,
.cta-card p,
.meta-list li {
  color: var(--muted);
}

.meta-list,
.timeline {
  display: grid;
  gap: 0.9rem;
  margin: 1.4rem 0 0;
}

.meta-list li,
.timeline li {
  list-style: none;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
}

.meta-list strong,
.timeline strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--text);
}

.page-hero-simple {
  padding: 5.5rem 0 2rem;
}

.hero-shell {
  width: min(calc(100% - 2rem), var(--content));
  margin: 0 auto;
  display: grid;
  gap: 1.2rem;
}

.hero-shell p {
  max-width: 65ch;
}

.page-shell .glass-panel:first-child,
.about-shell .glass-panel:first-child {
  min-height: 100%;
}

.about-photo {
  min-height: 560px;
}

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

.contact-links {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.status-box {
  margin: 0 0 1rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.status-box[data-state="success"] {
  border-color: rgba(122, 235, 171, 0.24);
  background: rgba(122, 235, 171, 0.08);
}

.status-box[data-state="error"] {
  border-color: rgba(255, 154, 60, 0.24);
  background: rgba(255, 154, 60, 0.08);
}

.contact-link {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-link strong {
  display: block;
  margin-bottom: 0.25rem;
}

form {
  display: grid;
  gap: 1rem;
}

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

label {
  display: grid;
  gap: 0.45rem;
  font-size: 0.95rem;
  color: var(--muted);
}

input,
textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

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

.consent {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.92rem;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 0.2rem;
}

.form-note,
.microcopy {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.cta-shell {
  grid-template-columns: 1.15fr 0.85fr;
}

.cta-shell h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.footer {
  padding: 2.2rem 0 3rem;
  border-top: 1px solid var(--line);
}

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

.footer-block strong {
  display: block;
  margin-bottom: 0.45rem;
}

.footer-block p,
.footer-block a {
  color: var(--muted);
  margin: 0;
}

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

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

.editor-toggle {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 30;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(12, 12, 14, 0.9);
  color: var(--text);
  border-radius: 999px;
  padding: 0.8rem 1rem;
  box-shadow: var(--shadow);
  cursor: pointer;
  max-width: calc(100vw - 2rem);
}

.editor-panel {
  position: fixed;
  right: 1rem;
  bottom: 4.8rem;
  z-index: 30;
  width: min(360px, calc(100vw - 2rem));
  max-height: calc(100vh - 6.4rem);
  padding: 1.2rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 10, 12, 0.94);
  box-shadow: var(--shadow);
  display: none;
  gap: 1rem;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.editor-panel.is-open {
  display: grid;
}

.editor-panel h2 {
  margin: 0;
  font-size: 1.1rem;
}

.editor-panel p,
.editor-panel label,
.editor-panel span {
  color: var(--muted);
}

.editor-row {
  display: grid;
  gap: 0.45rem;
}

.editor-range {
  width: 100%;
}

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

.editor-actions button,
.editor-panel .editor-primary {
  min-height: 44px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  cursor: pointer;
}

.editor-panel .editor-primary {
  background: linear-gradient(135deg, var(--warm), #f4b95d);
  color: #151515;
  font-weight: 700;
  border: 0;
}

.editor-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.editor-selected {
  padding: 0.85rem 0.95rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: rgba(2, 2, 4, 0.92);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-inner {
  position: relative;
  width: min(92vw, 1400px);
  max-height: 88vh;
}

.lightbox img {
  width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: absolute;
  top: -0.8rem;
  right: -0.2rem;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--text);
  cursor: pointer;
}

.editable-active [data-editable="true"] {
  outline: 1px dashed rgba(255, 191, 120, 0.55);
  outline-offset: 8px;
  cursor: text;
  -webkit-user-modify: read-write;
  user-select: text;
}

.editable-active [data-editable="true"]:focus {
  outline: 2px solid rgba(255, 154, 60, 0.85);
}

.editable-active [data-media-editable="true"] {
  outline: 1px dashed rgba(126, 199, 255, 0.55);
  outline-offset: 10px;
  cursor: pointer;
}

.editable-active [data-media-editable="true"].media-selected {
  outline: 2px solid rgba(126, 199, 255, 0.95);
}

@media (min-width: 961px) {
  .page-hero {
    min-height: auto;
    overflow: visible;
    padding-bottom: 2rem;
  }

  .hero-logo-mask {
    position: sticky;
    inset: 0 auto auto 0;
    top: calc(var(--header-height) + 1.5rem);
    height: 0;
    width: 100%;
    justify-content: center;
    align-items: flex-start;
  }

  .hero-mask-frame {
    width: min(58vw, 760px);
  }

  .hero-grid {
    min-height: auto;
    align-items: start;
    padding: 24rem 0 7rem;
  }

  .hero-copy,
  .hero-panel {
    position: relative;
    z-index: 2;
  }

  .hero-copy {
    margin-top: 1.5rem;
  }

  .hero-panel {
    margin-top: 8rem;
  }
}

@media (max-width: 960px) {
  .hero-grid,
  .grid-3,
  .grid-2,
  .image-split,
  .cta-shell,
  .page-shell,
  .contact-shell,
  .about-shell,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    align-self: end;
  }

  .header-inner {
    align-items: flex-start;
    padding: 1rem 0;
    flex-direction: column;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .header-right {
    width: 100%;
    justify-content: space-between;
  }

  .page-hero,
  .hero-grid {
    min-height: auto;
  }

  .hero-grid {
    padding-top: 6rem;
  }

  .about-photo {
    min-height: 360px;
  }
}

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

  .site-header {
    position: sticky;
    top: 0;
    background: rgba(6, 6, 8, 0.88);
  }

  .header-inner,
  .content-wrap,
  .footer-inner,
  .hero-shell {
    width: min(calc(100% - 1.25rem), var(--content));
  }

  .header-inner {
    position: relative;
    align-items: center;
    gap: 0.85rem;
    padding: 0.8rem 0 0.9rem;
    padding-right: 4.4rem;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .brand {
    gap: 0.65rem;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand-mark strong {
    font-size: 0.82rem;
    letter-spacing: 0.14em;
  }

  .brand-mark span {
    font-size: 0.72rem;
  }

  .menu-toggle {
    display: inline-flex;
    position: absolute;
    top: 0.78rem;
    right: 0;
    width: 46px;
    min-width: 46px;
    min-height: 46px;
    padding: 0;
    border-radius: 16px;
    margin-left: 0;
  }

  .header-right {
    width: 100%;
    order: 3;
    align-items: stretch;
    gap: 0.75rem;
    flex-direction: column;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      max-height 260ms ease,
      opacity 220ms ease,
      transform 220ms ease;
  }

  body.menu-open {
    overflow: hidden;
  }

  body.menu-open .header-right {
    max-height: calc(100svh - 5.4rem);
    opacity: 1;
    overflow-y: auto;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

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

  .site-nav a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-height: 48px;
    padding: 0 1rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    font-size: 0.92rem;
  }

  .lang-switch {
    align-self: stretch;
    width: 100%;
    justify-content: space-between;
    border-radius: 18px;
    padding: 0.35rem;
  }

  .lang-switch a {
    flex: 1;
    text-align: center;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .page-hero {
    min-height: auto;
    padding-bottom: 1.05rem;
    overflow: visible;
  }

  .hero-logo-mask {
    position: sticky;
    inset: 0 auto auto 0;
    top: 4.55rem;
    min-height: 0;
    height: 0;
    width: 100%;
    justify-content: center;
    align-items: flex-start;
  }

  .hero-mask-frame {
    width: min(82vw, 352px);
    margin-top: 0;
  }

  .page-hero .hero-background {
    transform: scale(1.01) translate(0px, 0px);
  }

  .hero-grid {
    gap: 1.1rem;
    padding: 19.75rem 0 1.25rem;
  }

  .hero-copy {
    max-width: none;
    position: relative;
    z-index: 2;
    margin-top: 0.95rem;
    transform: none;
    opacity: 1;
  }

  .eyebrow {
    font-size: 0.72rem;
    padding: 0.4rem 0.75rem;
    letter-spacing: 0.05em;
  }

  .hero-copy h1,
  .hero-shell h1 {
    margin: 0.8rem 0 1rem;
    font-size: clamp(2rem, 9.2vw, 3rem);
    line-height: 0.96;
  }

  .hero-copy p,
  .hero-shell p {
    font-size: 0.98rem;
    line-height: 1.55;
    max-width: none;
  }

  .hero-actions {
    margin-top: 0.95rem;
    gap: 0.7rem;
  }

  .button,
  .button-secondary {
    width: 100%;
  }

  .page-hero .hero-actions .button {
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.08),
      0 -24px 44px rgba(255, 154, 60, 0.12);
  }

  .hero-panel {
    padding: 1.1rem;
    gap: 0.85rem;
  }

  .hero-panel h2 {
    font-size: 1.18rem;
  }

  .hero-panel p {
    font-size: 0.95rem;
  }

  .field-grid,
  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-copy h1,
  .hero-shell h1,
  .section-head h2,
  .cta-shell h2 {
    letter-spacing: -0.02em;
  }

  .section {
    padding: 5rem 0;
  }

  .section-tight {
    padding: 3.7rem 0;
  }

  .section-head h2,
  .image-copy h3,
  .cta-card h3,
  .cta-shell h2 {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  .service-card,
  .stat-card,
  .contact-card,
  .form-card,
  .legal-card,
  .glass-panel,
  .image-copy,
  .cta-card {
    padding: 1.2rem;
  }

  .image-panel {
    min-height: 250px;
  }

  .meta-list li,
  .timeline li,
  .contact-link {
    padding: 0.9rem 1rem;
  }

  .page-hero-simple {
    padding: 3.6rem 0 1.25rem;
  }

  .footer {
    padding: 1.8rem 0 2.5rem;
  }

  .editor-toggle {
    right: 0.75rem;
    bottom: 0.75rem;
    padding: 0.75rem 0.9rem;
  }

  .editor-panel {
    right: 0.75rem;
    bottom: 4.4rem;
    width: calc(100vw - 1.5rem);
    max-height: calc(100vh - 5.4rem);
  }
}
