:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-soft: #f8fbff;
  --line: rgba(18, 44, 73, 0.12);
  --text: #132541;
  --muted: #59697d;
  --accent: #1f4f80;
  --accent-strong: #163b63;
  --shadow: 0 30px 70px rgba(17, 39, 66, 0.12);
  --max-width: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Public Sans", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f7faff 0%, #eef3f9 100%);
}

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

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

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  padding: 22px 28px 0;
}

.site-header-solid {
  position: sticky;
  padding-top: 0;
  background: rgba(247, 250, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(18, 44, 73, 0.08);
}

.header-shell {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 28px;
  background: rgba(245, 249, 255, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(10px);
}

.site-header-solid .header-shell {
  background: transparent;
  border-bottom: 0;
}

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

.brand img {
  width: 72px;
  height: auto;
}

.brand-mark {
  display: block;
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--accent-strong);
}

.nav {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  font-size: 1.08rem;
  font-weight: 700;
  color: #24364f;
}

.nav a[aria-current="page"] {
  color: var(--accent-strong);
}

.nav-cta {
  order: 1;
  min-width: 182px;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1a3d69, #173458);
  color: #f8fbff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
}

.nav-cta span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  line-height: 1;
}

.lang-switch {
  order: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.lang-switch-label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--accent-strong);
}

.lang-switch-button {
  position: relative;
  width: 54px;
  height: 30px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(22, 59, 99, 0.18);
  cursor: pointer;
}

.lang-switch-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1a3d69, #173458);
  box-shadow: 0 8px 16px rgba(18, 44, 73, 0.16);
  transition: transform 220ms ease;
}

body[data-language="es"] .lang-switch-thumb {
  transform: translateX(24px);
}

.hero {
  position: relative;
  min-height: 1120px;
  overflow: clip;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(216, 229, 245, 0.58) 0%, rgba(216, 229, 245, 0.2) 18%, rgba(20, 39, 66, 0.1) 68%, rgba(20, 39, 66, 0.18) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0));
}

.hero-panel {
  position: absolute;
  left: clamp(24px, 4vw, 54px);
  top: clamp(150px, 16vw, 190px);
  z-index: 2;
  width: min(860px, calc(100% - 48px));
  padding: clamp(28px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.page-title,
.process-step h2 {
  margin: 0;
  font-family: "Libre Baskerville", serif;
  letter-spacing: -0.03em;
}

.hero h1 {
  max-width: 13ch;
  font-size: clamp(2.5rem, 4.7vw, 4.25rem);
  line-height: 1;
  color: #1d3760;
}

.hero-summary,
.section-heading p,
.intro-copy p,
.metric-card strong,
.process-card p,
.portfolio-card p,
.contact-card p,
.page-summary,
.process-step p,
#stage-copy {
  color: var(--muted);
  line-height: 1.72;
}

.hero-summary {
  max-width: 56ch;
  margin: 18px 0 0;
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-inquiry-form {
  margin-top: 28px;
  padding: 22px;
  border: 1px solid rgba(18, 44, 73, 0.12);
  background: rgba(248, 251, 255, 0.9);
  box-shadow: 0 18px 36px rgba(18, 44, 73, 0.07);
}

.hero-form-heading {
  display: grid;
  gap: 6px;
  margin-bottom: 16px;
}

.hero-form-heading span {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-form-heading strong {
  color: var(--text);
  font-size: 1.05rem;
}

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

.hero-inquiry-form .form-field {
  gap: 7px;
}

.hero-inquiry-form .form-field span {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.hero-inquiry-form .form-field input,
.hero-inquiry-form .form-field select,
.hero-inquiry-form .form-field textarea {
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.96);
}

.hero-inquiry-form .button {
  width: 100%;
  margin-top: 16px;
  border: 0;
  cursor: pointer;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
}

.button-primary {
  background: linear-gradient(135deg, #1a416c, #17375b);
  color: #f8fbff;
}

.button-secondary {
  border: 1px solid rgba(22, 59, 99, 0.12);
  background: #ffffff;
  color: var(--accent-strong);
}

.section {
  padding: 84px 0;
}

.section-shell {
  width: min(calc(100% - 48px), var(--max-width));
  margin: 0 auto;
}

.intro-band,
.page-links-section,
.portfolio-section {
  background: #ffffff;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.section-heading h2,
.page-title {
  font-size: clamp(2.3rem, 4vw, 3.9rem);
  line-height: 1.05;
  color: #17375b;
}

.narrow {
  max-width: 760px;
}

.intro-copy p {
  margin: 0 0 18px;
  font-size: 1.04rem;
}

.page-summary {
  max-width: 62ch;
  margin: 18px 0 0;
}

.metrics-section {
  padding-top: 40px;
  padding-bottom: 56px;
}

.metrics-grid,
.process-grid,
.portfolio-grid {
  display: grid;
  gap: 22px;
}

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

.metric-card,
.process-card,
.portfolio-card,
.contact-card,
.process-step {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.96));
  border: 1px solid var(--line);
  box-shadow: 0 18px 42px rgba(18, 44, 73, 0.06);
}

.metric-card,
.process-card,
.portfolio-card,
.contact-card,
.process-step {
  padding: 28px;
}

.metric-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.metric-card .metric-label,
.metric-card strong {
  width: 100%;
}

.metric-label,
.card-tag,
.contact-label,
.stage-mode {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.metric-card strong,
.process-card strong,
.portfolio-card h3 {
  display: block;
  margin: 0;
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.55;
}

.process-card strong,
.portfolio-card h3 {
  margin-bottom: 10px;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--accent-strong);
  font-weight: 700;
}

.relationships-section {
  background: linear-gradient(180deg, #f7faff 0%, #eef4fa 100%);
}

.criteria-section {
  background:
    linear-gradient(180deg, rgba(247, 250, 255, 0.96), rgba(238, 244, 250, 0.98)),
    radial-gradient(circle at top left, rgba(31, 79, 128, 0.12), transparent 34%);
}

.criteria-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.criteria-card {
  min-height: 116px;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  color: var(--accent-strong);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.45;
  box-shadow: 0 16px 34px rgba(18, 44, 73, 0.055);
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.partner-pill {
  padding: 22px 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  color: var(--accent-strong);
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(18, 44, 73, 0.05);
}

.transformation-section,
.contact-section,
.interior-page {
  background: linear-gradient(180deg, #f7faff 0%, #eef3f9 100%);
}

.interior-main {
  padding-top: 24px;
}

.page-hero {
  padding-top: 48px;
}

.transformation-layout {
  display: grid;
  gap: 28px;
  margin-top: 36px;
}

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

.process-scroll-section {
  padding-top: 32px;
}

  .process-scroll-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
  gap: 28px;
  align-items: start;
}

.process-slider-grid {
  align-items: stretch;
}

.process-copy-stack {
  display: grid;
  gap: 18px;
}

.process-step {
  opacity: 0.55;
  transition: opacity 220ms ease, transform 220ms ease, border-color 220ms ease;
}

.process-step.is-active {
  opacity: 1;
  transform: translateY(-2px);
  border-color: rgba(31, 79, 128, 0.24);
}

.process-copy-static .process-step {
  opacity: 1;
  transform: none;
}

.process-step h2 {
  margin-bottom: 10px;
  font-size: 2rem;
  color: #17375b;
}

.process-visual-sticky {
  position: sticky;
  top: 130px;
}

.comparison-card {
  padding: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.96));
  box-shadow: 0 18px 42px rgba(18, 44, 73, 0.06);
}

.property-stage {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top, rgba(206, 223, 242, 0.78), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(240, 246, 253, 0.98));
}

.property-stage-scroll {
  min-height: 760px;
}

.comparison-stage {
  --slider-position: 50%;
  position: relative;
  aspect-ratio: 3 / 2;
  min-height: auto;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(240, 246, 253, 0.98));
}

.comparison-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none;
}

.comparison-image-before,
.comparison-image-after {
  object-position: center center;
}

.comparison-before-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  clip-path: inset(0 calc(100% - var(--slider-position)) 0 0);
}

.comparison-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--slider-position);
  width: 2px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 1px rgba(19, 37, 65, 0.08);
  transform: translateX(-1px);
}

.comparison-handle {
  position: absolute;
  top: 50%;
  left: var(--slider-position);
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.98);
  background: rgba(23, 55, 91, 0.92);
  box-shadow: 0 16px 28px rgba(18, 44, 73, 0.18);
  transform: translate(-50%, -50%);
  cursor: ew-resize;
}


.comparison-handle::before,
.comparison-handle::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #f7fbff;
  border-right: 2px solid #f7fbff;
}

.comparison-handle::before {
  left: 16px;
  transform: translateY(-50%) rotate(-135deg);
}

.comparison-handle::after {
  right: 16px;
  transform: translateY(-50%) rotate(45deg);
}

.comparison-label {
  position: absolute;
  top: 20px;
  z-index: 2;
  padding: 10px 14px;
  background: rgba(19, 37, 65, 0.74);
  color: #f7fbff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-label-before {
  left: 20px;
}

.comparison-label-after {
  right: 20px;
}

.comparison-control {
  display: block;
  margin-top: 18px;
  margin-bottom: 10px;
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.comparison-range {
  width: 100%;
  accent-color: var(--accent-strong);
}

.comparison-caption {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.72;
}


.scene-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(21, 54, 90, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 54, 90, 0.024) 1px, transparent 1px);
  background-size: 54px 54px;
}

.property-photo,
.stage-caption {
  position: relative;
  z-index: 1;
}

.property-photo {
  position: absolute;
  inset: 26px 26px 126px;
  width: calc(100% - 52px);
  height: calc(100% - 152px);
  object-fit: cover;
  transition: opacity 700ms ease, transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 900ms ease;
}

.property-photo-before {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.property-photo-after {
  opacity: 0;
  transform: scale(1.04) translateY(6px);
}

.property-stage[data-progress="1"] .property-photo-before {
  opacity: 0.62;
  transform: scale(1.01);
}

.property-stage[data-progress="1"] .property-photo-after {
  opacity: 0.38;
  transform: scale(1.02);
}

.property-stage[data-progress="2"] .property-photo-before {
  opacity: 0;
  transform: scale(0.98);
  filter: blur(4px);
}

.property-stage[data-progress="2"] .property-photo-after {
  opacity: 1;
  transform: scale(1);
}

.stage-caption {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  z-index: 2;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  box-shadow: 0 16px 32px rgba(18, 44, 73, 0.08);
}

.portfolio-grid {
  grid-template-columns: 1.2fr 1fr 1fr;
  margin-top: 36px;
}

.portfolio-grid-single {
  grid-template-columns: 1fr;
  max-width: 760px;
}

.portfolio-card.featured {
  background: linear-gradient(180deg, #ffffff 0%, #eef5fc 100%);
}

.contact-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
}

.contact-card-single {
  width: 100%;
  max-width: 860px;
  box-sizing: border-box;
}

.contact-inline-row {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px 40px;
}

.contact-inline-row > div {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.contact-inline-row .contact-label {
  margin-bottom: 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: start;
  margin-top: 34px;
}

.contact-form {
  width: 100%;
  box-sizing: border-box;
  padding: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.96));
  box-shadow: 0 18px 42px rgba(18, 44, 73, 0.06);
}

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

.form-field {
  display: grid;
  gap: 8px;
}

.form-field span {
  color: var(--accent-strong);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body[data-language="es"] .form-field span {
  letter-spacing: 0.045em;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(18, 44, 73, 0.14);
  background: #ffffff;
  color: var(--text);
  font: inherit;
}

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

.contact-form .button {
  min-width: 220px;
  margin-top: 20px;
  border: 0;
  cursor: pointer;
}

.contact-form .page-summary {
  max-width: none;
}

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

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

.site-footer {
  background: linear-gradient(180deg, #17375b 0%, #102946 100%);
  color: rgba(244, 248, 255, 0.9);
}

.footer-shell {
  width: min(calc(100% - 48px), var(--max-width));
  margin: 0 auto;
  padding: 34px 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.footer-brand {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-copy {
  margin: 10px 0 0;
  max-width: 48ch;
  color: rgba(226, 236, 248, 0.8);
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
}

.footer-links a {
  color: #f4f8ff;
  font-weight: 600;
}

@media (max-width: 1120px) {
  .header-shell,
  .intro-grid,
  .metrics-grid,
  .partner-grid,
  .criteria-grid,
  .process-grid,
  .portfolio-grid,
  .contact-card,
  .process-scroll-grid,
  .contact-layout,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .header-shell {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
  }

  .metrics-grid {
    justify-items: center;
  }

  .contact-layout {
    justify-items: center;
  }

  .contact-card-single,
  .contact-form {
    max-width: 860px;
  }

  .metric-card {
    width: 100%;
    max-width: 940px;
  }

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

@media (max-width: 780px) {
  .site-header {
    padding: 12px 12px 0;
  }

  .header-shell,
  .section-shell {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .header-shell {
    padding: 16px;
  }

  .brand img {
    width: 58px;
    height: auto;
  }

  .brand {
    gap: 12px;
  }

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

  .nav-cta {
    min-width: 154px;
  }

  .lang-switch {
    width: auto;
    justify-content: flex-start;
  }

  .nav {
    gap: 18px;
  }

  .hero {
    min-height: 980px;
  }

  .hero-panel {
    left: 12px;
    right: 12px;
    width: auto;
    top: 132px;
  }

  .hero h1,
  .page-title,
  .process-step h2 {
    font-size: clamp(2.5rem, 9vw, 3.6rem);
    max-width: 12ch;
  }

  .section {
    padding: 68px 0;
  }

  .property-stage {
    min-height: 540px;
  }

  .property-stage-scroll {
    min-height: 620px;
  }

  .property-photo {
    inset: 18px 18px 118px;
    width: calc(100% - 36px);
    height: calc(100% - 136px);
  }

  .stage-caption {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: relative;
    padding: 12px;
  }

  .header-shell {
    gap: 18px;
    width: 100%;
    padding: 14px;
  }

  .brand {
    justify-content: center;
  }

  .brand img {
    width: 48px;
  }

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

  .nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 10px 12px;
    width: 100%;
  }

  .nav a:not(.nav-cta) {
    text-align: center;
    font-size: 0.9rem;
  }

  .nav-cta {
    grid-column: 1 / -1;
    width: 100%;
    min-width: 0;
    min-height: 44px;
  }

  .lang-switch {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: center;
  }

  .hero {
    min-height: auto;
    padding: 24px 0 52px;
  }

  .hero h1,
  .page-title,
  .process-step h2 {
    font-size: clamp(2rem, 8vw, 2.6rem);
    max-width: none;
  }

  .hero-panel {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: min(calc(100% - 24px), 560px);
    margin: 0 auto;
    padding: 24px 20px;
  }

  .hero-summary {
    font-size: 1rem;
    line-height: 1.62;
  }

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

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

  .button {
    width: 100%;
  }

  .contact-form .button {
    min-height: 58px;
    font-size: 1.08rem;
  }

  .footer-links {
    gap: 14px 18px;
  }
}

@media (max-width: 460px) {
  .site-header {
    padding: 8px;
  }

  .header-shell {
    gap: 14px;
    padding: 12px;
  }

  .brand {
    gap: 10px;
  }

  .brand img {
    width: 42px;
  }

  .brand-mark {
    font-size: 0.52rem;
    letter-spacing: 0.11em;
  }

  .nav {
    gap: 8px 10px;
  }

  .lang-switch-label {
    font-size: 0.7rem;
  }
}
