/* --------------------------------------------------------------------------
   B-MAR — design tokens & base (airy luxury / calm corporate)
   -------------------------------------------------------------------------- */
:root {
  --color-red: #5b0f1b;
  --color-red-soft: rgba(91, 15, 27, 0.09);
  --color-red-hover: #741826;
  --color-mahogany: #2f0810;
  --color-charcoal: #2a211c;
  --color-white: #ffffff;
  --color-text-light: #f8f3ea;
  --color-muted: #594841;
  --color-border: #e8ddd1;
  --color-surface: #fbf8f2;
  --color-page: #f6f1e8;
  /* Accent premium (auriu discret — titluri, detalii) */
  --color-gold: #c7a15b;
  --color-gold-light: #d8ba7a;
  --color-gold-soft: rgba(199, 161, 91, 0.14);
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.75rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --space-2xl: 6.5rem;
  --max-w: 72rem;
  --header-h: 5.15rem;
  --touch-min: 2.75rem;
  --shadow-xs: 0 1px 2px rgba(47, 8, 16, 0.06);
  --shadow-sm: 0 4px 28px rgba(47, 8, 16, 0.08);
  --shadow-card: var(--shadow-xs), 0 16px 48px rgba(47, 8, 16, 0.07);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 14px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  color-scheme: only light;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.008em;
  font-feature-settings: "kern" 1, "liga" 1;
  color: var(--color-charcoal);
  background: var(--color-page);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-x: clip;
}

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

a {
  color: #72561c;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  text-underline-offset: 0.22em;
  text-decoration-color: rgba(184, 148, 72, 0.42);
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: max(var(--space-md), env(safe-area-inset-left, 0px))
    max(var(--space-md), env(safe-area-inset-right, 0px));
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: var(--space-sm) var(--space-md);
  background: var(--color-red);
  color: var(--color-white);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.skip-link:focus {
  left: var(--space-sm);
  top: var(--space-sm);
}

/* --------------------------------------------------------------------------
   Logo / monogram
   -------------------------------------------------------------------------- */
.logo {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  flex-shrink: 1;
  color: var(--color-charcoal);
  text-decoration: none;
  border-radius: var(--radius-sm);
  -webkit-tap-highlight-color: transparent;
}

.logo:hover {
  text-decoration: none;
  color: var(--color-charcoal);
}

.logo:focus {
  outline: none;
}

.logo:focus-visible {
  outline: 2px solid rgba(184, 148, 72, 0.9);
  outline-offset: 3px;
}

.logo__img {
  width: auto;
  height: 2.35rem;
  max-width: min(62vw, 12.5rem);
  display: block;
  flex-shrink: 1;
  object-fit: contain;
  object-position: left center;
}

.logo--footer .logo__img {
  max-width: 11rem;
}

.logo__img--footer {
  height: 2rem;
}

@media (max-width: 767px) {
  .logo {
    max-width: calc(100% - var(--touch-min) - 0.85rem);
  }

  .logo__img {
    height: 2.34rem;
    max-width: min(76vw, 12.1rem);
  }
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, rgba(63, 11, 22, 0.975) 0%, rgba(96, 19, 35, 0.945) 56%, rgba(126, 29, 48, 0.9) 100%);
  border-bottom: 1px solid rgba(199, 161, 91, 0.2);
  box-shadow:
    0 12px 28px rgba(47, 8, 16, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
}

.header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.034), rgba(255, 255, 255, 0) 32%),
    radial-gradient(circle at 84% 14%, rgba(216, 186, 122, 0.03), rgba(216, 186, 122, 0) 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.012), rgba(255, 255, 255, 0) 56%);
  opacity: 0.56;
  pointer-events: none;
}

.header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  z-index: 0;
  background: linear-gradient(90deg, rgba(184, 148, 72, 0), rgba(184, 148, 72, 0.4), rgba(184, 148, 72, 0));
  pointer-events: none;
}

.header__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: calc(var(--space-sm) + 0.3rem);
  min-height: var(--header-h);
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: max(var(--space-md), env(safe-area-inset-left, 0px))
    max(var(--space-md), env(safe-area-inset-right, 0px));
  padding-top: env(safe-area-inset-top, 0px);
}

.header__brand {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.32rem;
  padding-right: 0.15rem;
}

.header__brand .logo {
  min-width: 0;
}

.header__microtag {
  margin: 0;
  max-width: none;
  font-size: 0.6rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
  text-align: center;
  color: rgba(223, 192, 124, 0.94);
  text-shadow: 0 1px 0 rgba(47, 8, 16, 0.24);
}

.header__toolbar {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
  padding-left: 0.1rem;
}

.header__lang {
  position: relative;
  z-index: 60;
}

/* Limbă — un singur cod + listă la deschidere */
.lang-dropdown {
  position: relative;
}

.lang-dropdown__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  min-width: 4.9rem;
  min-height: 2.8rem;
  padding: 0 0.9rem 0 0.95rem;
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  border: 1px solid rgba(199, 161, 91, 0.26);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(95, 18, 31, 0.94), rgba(54, 10, 18, 0.97)),
    linear-gradient(135deg, rgba(216, 186, 122, 0.1), rgba(216, 186, 122, 0));
  color: rgba(244, 236, 223, 0.94);
  cursor: pointer;
  box-shadow:
    0 4px 14px rgba(47, 8, 16, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  -webkit-tap-highlight-color: transparent;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.lang-dropdown__toggle:hover {
  border-color: rgba(199, 161, 91, 0.38);
  background:
    linear-gradient(180deg, rgba(108, 20, 35, 0.96), rgba(63, 12, 21, 0.99)),
    linear-gradient(135deg, rgba(216, 186, 122, 0.14), rgba(216, 186, 122, 0));
  box-shadow:
    0 6px 16px rgba(47, 8, 16, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.lang-dropdown__toggle[aria-expanded="true"] {
  border-color: rgba(199, 161, 91, 0.4);
  background:
    linear-gradient(180deg, rgba(105, 20, 34, 0.97), rgba(58, 11, 19, 1)),
    linear-gradient(135deg, rgba(216, 186, 122, 0.16), rgba(216, 186, 122, 0));
  box-shadow:
    0 8px 18px rgba(47, 8, 16, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.lang-dropdown__toggle:focus {
  outline: none;
}

.lang-dropdown__toggle:focus-visible {
  outline: 2px solid rgba(184, 148, 72, 0.9);
  outline-offset: 2px;
}

.lang-dropdown__current {
  min-width: 1.9ch;
  text-align: center;
  color: rgba(244, 236, 223, 0.94);
  transform: translateY(-0.02em);
  padding-right: 0.7rem;
  border-right: 1px solid rgba(184, 148, 72, 0.24);
}

.lang-dropdown__caret {
  display: block;
  width: 0;
  height: 0;
  margin-left: 0.02rem;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid rgba(216, 186, 122, 0.84);
  transition: transform 0.2s ease;
}

.lang-dropdown__toggle[aria-expanded="true"] .lang-dropdown__caret {
  transform: rotate(180deg);
}

.lang-dropdown__list {
  position: absolute;
  top: calc(100% + 0.55rem);
  right: 0;
  min-width: 5.6rem;
  margin: 0;
  padding: 0.42rem;
  list-style: none;
  background:
    linear-gradient(180deg, rgba(86, 17, 29, 0.99), rgba(47, 8, 16, 0.995)),
    linear-gradient(135deg, rgba(216, 186, 122, 0.1), rgba(216, 186, 122, 0));
  border: 1px solid rgba(199, 161, 91, 0.18);
  border-radius: 14px;
  box-shadow:
    0 16px 36px rgba(47, 8, 16, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.lang-dropdown__list li {
  margin: 0;
  padding: 0;
}

.lang-dropdown__list .lang-dropdown__option {
  display: block;
  width: 100%;
  padding: 0.55rem 0.75rem;
  font-family: var(--font);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-align: center;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: rgba(242, 235, 224, 0.9);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.lang-dropdown__list .lang-dropdown__option:hover {
  background: rgba(184, 148, 72, 0.12);
  color: rgba(252, 246, 236, 0.98);
  transform: translateY(-1px);
}

.lang-dropdown__list .lang-dropdown__option:focus {
  outline: none;
}

.lang-dropdown__list .lang-dropdown__option:focus-visible {
  outline: 2px solid rgba(184, 148, 72, 0.88);
  outline-offset: -2px;
}

.lang-dropdown__list .lang__btn--active {
  background: rgba(184, 148, 72, 0.16);
  color: rgba(252, 246, 236, 0.98);
}

.header__inner > .nav {
  grid-column: 1 / -1;
  grid-row: 2;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: var(--touch-min);
  height: var(--touch-min);
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 4px;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle:focus {
  outline: none;
}

.nav-toggle:focus-visible {
  outline: 2px solid rgba(184, 148, 72, 0.9);
  outline-offset: 2px;
}

.nav-toggle__bar {
  display: block;
  height: 1.5px;
  width: 1.35rem;
  background: #5a5855;
  margin-inline: auto;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 45;
  background:
    linear-gradient(180deg, rgba(66, 13, 23, 0.985), rgba(40, 8, 15, 0.99)),
    linear-gradient(135deg, rgba(216, 186, 122, 0.1), rgba(216, 186, 122, 0));
  border-bottom: 1px solid rgba(184, 148, 72, 0.18);
  padding: var(--space-md);
  flex-direction: column;
  gap: var(--space-md);
  box-shadow: 0 18px 36px rgba(47, 8, 16, 0.3);
}

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

@media (max-width: 767px) {
  .header {
    overflow: visible;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
      linear-gradient(135deg, rgba(68, 12, 23, 0.97) 0%, rgba(101, 20, 36, 0.94) 58%, rgba(131, 30, 49, 0.9) 100%);
    border-bottom-color: rgba(199, 161, 91, 0.2);
    box-shadow: 0 8px 22px rgba(47, 8, 16, 0.24);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .header__inner {
    column-gap: 0.75rem;
    min-height: 4.5rem;
    padding-inline: max(1rem, env(safe-area-inset-left, 0px))
      max(1rem, env(safe-area-inset-right, 0px));
  }

  .header__brand {
    max-width: calc(100% - 7.75rem);
    gap: 0.18rem;
  }

  .header__microtag {
    width: auto;
    max-width: 100%;
    align-self: center;
    font-size: 0.56rem;
    line-height: 1.08;
    letter-spacing: 0.095em;
    text-align: center;
    white-space: nowrap;
    color: rgba(223, 192, 124, 0.94);
    text-shadow: 0 1px 0 rgba(47, 8, 16, 0.3);
  }

  .header__toolbar {
    gap: 0.45rem;
  }

  .lang-dropdown__toggle {
    min-width: 4.9rem;
    min-height: 2.46rem;
    justify-content: center;
    gap: 0.46rem;
    padding: 0 0.8rem;
    font-size: 0.76rem;
    letter-spacing: 0.1em;
    border-color: rgba(184, 148, 72, 0.22);
    background: rgba(255, 255, 255, 0.018);
    box-shadow: none;
  }

  .lang-dropdown__current {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2ch;
    padding-right: 0.54rem;
    color: rgba(244, 236, 223, 0.94);
    border-right-color: rgba(184, 148, 72, 0.3);
    transform: none;
  }

  .lang-dropdown__caret {
    border-left-width: 4.5px;
    border-right-width: 4.5px;
    border-top-width: 5.5px;
    border-top-color: rgba(216, 186, 122, 0.88);
  }

  .lang-dropdown__list {
    top: calc(100% + 0.45rem);
    width: 100%;
    min-width: 100%;
    padding: 0.32rem;
    background:
      linear-gradient(180deg, rgba(86, 17, 29, 0.995), rgba(47, 8, 16, 0.99)),
      linear-gradient(135deg, rgba(216, 186, 122, 0.1), rgba(216, 186, 122, 0));
    border-color: rgba(184, 148, 72, 0.24);
    border-radius: 14px;
    box-shadow: 0 14px 28px rgba(47, 8, 16, 0.24);
  }

  .lang-dropdown__list .lang-dropdown__option {
    padding: 0.62rem 0.54rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    color: rgba(242, 235, 224, 0.9);
    border-radius: 10px;
  }

  .lang-dropdown__list .lang-dropdown__option:hover {
    background: rgba(184, 148, 72, 0.08);
    color: rgba(252, 246, 236, 0.98);
  }

  .lang-dropdown__list .lang__btn--active {
    background: rgba(184, 148, 72, 0.12);
    color: rgba(252, 246, 236, 0.98);
    box-shadow: inset 0 0 0 1px rgba(184, 148, 72, 0.1);
  }

  .nav-toggle {
    width: 2.38rem;
    height: 2.38rem;
    border: 1px solid rgba(184, 148, 72, 0.16);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.018);
    box-shadow: none;
  }

  .nav-toggle__bar {
    width: 1.05rem;
    background: rgba(216, 186, 122, 0.88);
  }

  .nav {
    padding: 0.72rem 0.85rem 0.82rem;
    gap: 0.72rem;
    background:
      linear-gradient(180deg, rgba(90, 18, 31, 0.985), rgba(53, 10, 19, 0.992)),
      linear-gradient(135deg, rgba(145, 31, 50, 0.14), rgba(216, 186, 122, 0.04));
    border: 1px solid rgba(184, 148, 72, 0.16);
    border-top-color: rgba(255, 255, 255, 0.04);
    box-shadow: 0 15px 30px rgba(47, 8, 16, 0.24);
  }

  .nav .nav__link {
    padding: 0.72rem 0.82rem;
    min-height: 2.36rem;
    color: rgba(249, 243, 234, 0.96);
    border-radius: 10px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
      rgba(216, 186, 122, 0.02);
    border: 1px solid rgba(216, 186, 122, 0.08);
  }

  .nav .nav__link:hover {
    background: rgba(216, 186, 122, 0.1);
    color: rgba(252, 246, 236, 0.99);
  }

  .nav .nav__link--current {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
      rgba(216, 186, 122, 0.08);
    border-color: rgba(216, 186, 122, 0.14);
    box-shadow: inset 0 -1px 0 rgba(216, 186, 122, 0.62);
  }

  .nav .nav__link--cta {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
      rgba(216, 186, 122, 0.08);
    border-color: rgba(216, 186, 122, 0.2);
    box-shadow: none;
  }

  .nav .nav__link--cta:hover {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
      rgba(216, 186, 122, 0.12);
    border-color: rgba(216, 186, 122, 0.24);
    box-shadow: none;
  }

  .nav.is-open {
    max-height: calc(100vh - var(--header-h) - 0.75rem);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  @supports (height: 1svh) {
    .nav.is-open {
      max-height: calc(100svh - var(--header-h) - 0.75rem);
    }
  }

  @supports (height: 1dvh) {
    .nav.is-open {
      max-height: calc(100dvh - var(--header-h) - 0.75rem);
    }
  }
}

.nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.nav__link {
  display: flex;
  align-items: center;
  padding: calc(var(--space-sm) - 0.05rem) var(--space-sm);
  min-height: var(--touch-min);
  color: var(--color-charcoal);
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.nav__link:hover {
  text-decoration: none;
  background: rgba(184, 148, 72, 0.08);
}

.nav__link:focus {
  outline: none;
}

.nav__link:focus-visible {
  outline: 2px solid rgba(184, 148, 72, 0.88);
  outline-offset: 2px;
}

.nav__link--cta {
  color: var(--color-text-light);
  font-weight: 600;
  letter-spacing: 0.08em;
  background:
    linear-gradient(135deg, rgba(84, 16, 28, 0.98), rgba(47, 8, 16, 1)),
    linear-gradient(135deg, rgba(216, 186, 122, 0.1), rgba(216, 186, 122, 0));
  border: 1px solid rgba(199, 161, 91, 0.26);
  box-shadow:
    0 6px 18px rgba(47, 8, 16, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.nav__link--cta:hover {
  background:
    linear-gradient(135deg, rgba(104, 19, 34, 0.99), rgba(60, 11, 20, 1)),
    linear-gradient(135deg, rgba(216, 186, 122, 0.14), rgba(216, 186, 122, 0));
  color: var(--color-text-light);
  box-shadow:
    0 8px 20px rgba(47, 8, 16, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.nav__link--current {
  color: rgba(249, 241, 228, 0.98);
  font-weight: 600;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(184, 148, 72, 0.14), rgba(184, 148, 72, 0.05));
  box-shadow:
    inset 0 -1px 0 rgba(216, 186, 122, 0.72),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.nav__link--current:hover {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(184, 148, 72, 0.18), rgba(184, 148, 72, 0.06));
}

/* --------------------------------------------------------------------------
   Hero — single full-width background (no duplicate image layers)
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 62vh;
  height: auto;
  display: flex;
  align-items: center;
  padding-block: clamp(4.15rem, 10vw, 6.4rem) clamp(3.5rem, 7vw, 5.6rem);
  background-color: var(--color-mahogany);
  /* Cale relativă la styles.css — funcționează și fără domeniu la root */
  background-image: url("assets/images/cousino.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    112deg,
    rgba(47, 8, 16, 0.95) 0%,
    rgba(91, 15, 27, 0.78) 42%,
    rgba(116, 24, 38, 0.34) 100%
  );
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto auto -12% 58%;
  width: min(34rem, 48vw);
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(216, 186, 122, 0.18) 0%, rgba(199, 161, 91, 0.05) 36%, rgba(199, 161, 91, 0) 74%);
  z-index: 0;
  pointer-events: none;
  filter: blur(14px);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(var(--space-lg), 5vw, calc(var(--space-xl) - 0.2rem));
  align-items: stretch;
}

.hero__content {
  width: 100%;
  max-width: 40rem;
  margin-inline: auto;
  text-align: center;
  position: relative;
}

.hero__side {
  width: 100%;
  max-width: 32rem;
  margin-inline: auto;
  display: grid;
  gap: 0.85rem;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.35rem;
  padding: 0.42rem 0.8rem;
  border: 1px solid rgba(216, 186, 122, 0.28);
  border-radius: 999px;
  background: rgba(47, 8, 16, 0.34);
  box-shadow:
    0 8px 18px rgba(47, 8, 16, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: rgba(212, 196, 160, 0.95);
}

.hero__eyebrow::before {
  content: "";
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  box-shadow: 0 0 0 4px rgba(184, 148, 72, 0.08);
}

.hero__title {
  margin: 0 0 1.15rem;
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 7vw, 5rem);
  font-weight: 600;
  line-height: 0.95;
  color: var(--color-text-light);
  letter-spacing: -0.035em;
  text-wrap: balance;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04),
    0 16px 36px rgba(47, 8, 16, 0.28);
}

.hero__lead {
  margin: 0 auto 2rem;
  font-size: clamp(1.02rem, 2.4vw, 1.18rem);
  color: rgba(248, 243, 234, 0.94);
  line-height: 1.88;
  font-weight: 400;
  max-width: 33rem;
  text-wrap: pretty;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.hero__panel-actions {
  display: flex;
  justify-content: center;
}

.hero__panel-actions .btn {
  width: 100%;
}

.hero__panel {
  counter-reset: hero-points;
  width: 100%;
  max-width: 32rem;
  margin-inline: auto;
  padding: clamp(1.05rem, 3.5vw, 1.2rem);
  border: 1px solid rgba(199, 161, 91, 0.16);
  border-radius: calc(var(--radius-lg) + 4px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.01) 20%, rgba(255, 255, 255, 0) 42%),
    linear-gradient(180deg, rgba(103, 18, 33, 0.94), rgba(47, 8, 16, 0.98));
  box-shadow:
    0 14px 28px rgba(47, 8, 16, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero__panel-layout {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.95rem;
}

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

.hero__panel-engraving {
  display: none;
}

.hero__panel-chip-wrap {
  width: 3.78rem;
  height: 2.53rem;
  align-self: center;
}

.hero__panel-chip {
  width: 3.52rem;
  height: 2.37rem;
  filter:
    drop-shadow(0 0.2rem 0.4rem rgba(47, 8, 16, 0.32))
    drop-shadow(0 0 0.35rem rgba(193, 152, 73, 0.14));
}

.hero__panel-chip svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.hero-recruitment {
  display: none;
}

.hero__chip-shell {
  fill: url(#chip-shell-fill);
  stroke: rgba(255, 240, 206, 0.58);
  stroke-width: 1.15;
}

.hero__chip-core {
  fill: url(#chip-core-fill);
  stroke: rgba(244, 218, 157, 0.52);
  stroke-width: 0.95;
}

.hero__chip-pins {
  fill: none;
  stroke: rgba(196, 161, 89, 0.88);
  stroke-linecap: round;
  stroke-width: 1.15;
}

.hero__chip-traces {
  fill: none;
  stroke: rgba(214, 184, 118, 0.5);
  stroke-width: 1;
}

.hero__chip-detail {
  fill: none;
  stroke: rgba(255, 233, 186, 0.3);
  stroke-linecap: round;
  stroke-width: 0.9;
}

.hero__panel-chip text {
  fill: rgba(245, 227, 185, 0.96);
  font-family: var(--font);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-shadow: 0 1px 0 rgba(47, 8, 16, 0.24);
}

.hero__panel-eyebrow {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(212, 196, 160, 0.92);
}

.hero__panel-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.42rem, 2.6vw, 1.82rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: rgba(250, 244, 234, 0.96);
}

.hero__panel-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.hero__panel-item {
  display: flex;
  align-items: center;
  min-height: 2.9rem;
  padding: 0.5rem 0;
  position: relative;
}

.hero__panel-item + .hero__panel-item {
  border-top: 1px solid rgba(198, 173, 123, 0.08);
}

.hero__panel-item::before {
  content: none;
}

.hero__panel-item-title {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: 0.015em;
  color: rgba(234, 220, 192, 0.94);
}

.hero__panel-item-text {
  display: block;
  font-size: 0.88rem;
  line-height: 1.62;
  color: rgba(244, 239, 231, 0.88);
}

.hero .btn--ghost.btn--on-dark,
.hero .btn--on-dark {
  color: #fafaf8;
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.hero .btn--ghost.btn--on-dark:hover,
.hero .btn--on-dark:hover {
  color: var(--color-charcoal);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.92);
}

/* Secundar pe hero: contur auriu, fără să concureze cu primarul */
.hero .btn--secondary.btn--on-dark {
  color: var(--color-text-light);
  border-color: rgba(201, 168, 92, 0.55);
  background: rgba(47, 8, 16, 0.32);
  box-shadow: none;
}

.hero .btn--secondary.btn--on-dark:hover {
  color: var(--color-charcoal);
  background: rgba(255, 255, 255, 0.92);
  border-color: var(--color-gold-light);
}

.hero .btn--secondary.btn--on-dark:focus-visible {
  outline-color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 767px) {
  .hero {
    min-height: max(40vh, min-content);
    background-position: center;
    padding-block: clamp(2.1rem, 7.6vw, 2.85rem) max(1.7rem, env(safe-area-inset-bottom, 0px));
  }

  .hero::before {
    background: linear-gradient(
      180deg,
      rgba(47, 8, 16, 0.84) 0%,
      rgba(91, 15, 27, 0.64) 44%,
      rgba(116, 24, 38, 0.34) 100%
    );
  }

  .hero::after {
    inset: auto auto -16% 48%;
    width: min(24rem, 56vw);
    background: radial-gradient(circle, rgba(184, 148, 72, 0.18) 0%, rgba(184, 148, 72, 0) 72%);
    filter: blur(12px);
  }

  .hero__content,
  .hero__side,
  .hero__panel {
    max-width: 100%;
  }

  .hero__inner {
    gap: 0.86rem;
  }

  .hero__eyebrow {
    margin-bottom: 0.62rem;
    padding: 0.32rem 0.68rem;
    font-size: 0.59rem;
    letter-spacing: 0.14em;
    background: rgba(47, 8, 16, 0.3);
    border-color: rgba(212, 196, 160, 0.28);
  }

  .hero__title {
    max-width: 16.2rem;
    margin: 0 auto 0.72rem;
    font-size: clamp(1.72rem, 6.9vw, 2.08rem);
    line-height: 0.94;
    letter-spacing: -0.032em;
    text-wrap: balance;
    background: none;
    color: rgba(231, 214, 180, 0.98);
    -webkit-text-fill-color: currentColor;
    -webkit-text-stroke: 0 transparent;
    text-shadow:
      0 1px 0 rgba(255, 255, 255, 0.05),
      0 10px 24px rgba(47, 8, 16, 0.28);
  }

  .hero__lead {
    margin-bottom: 0.98rem;
    font-size: 0.97rem;
    line-height: 1.56;
    max-width: 22.5rem;
    color: rgba(255, 255, 255, 0.92);
  }

  .hero__actions {
    gap: 0.5rem;
  }

  .hero__panel-actions .btn {
    width: 100%;
    min-height: 2.75rem;
    padding-inline: 0.95rem;
    font-size: 0.84rem;
    letter-spacing: 0.06em;
  }

  .hero .btn--primary {
    border-color: rgba(201, 168, 92, 0.36);
    box-shadow:
      0 10px 24px rgba(47, 8, 16, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.04);
  }

  .hero .btn--secondary.btn--on-dark {
    color: #f7f0e4;
    border-color: rgba(201, 168, 92, 0.5);
    background: rgba(47, 8, 16, 0.34);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  }

  .hero__panel-item {
    min-height: 2.7rem;
    padding: 0.54rem 0 0.54rem 0;
    border-radius: 0;
    background: transparent;
  }

  .hero__panel-item::before {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.62rem;
  }

  .hero__panel {
    max-width: 29rem;
    padding: 1.72rem 0.84rem 1.3rem;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border-color: rgba(214, 181, 110, 0.16);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.062) 0%, rgba(255, 255, 255, 0.016) 14%, rgba(255, 255, 255, 0) 26%),
      linear-gradient(140deg, rgba(183, 145, 72, 0.1) 0%, rgba(183, 145, 72, 0.03) 22%, rgba(183, 145, 72, 0) 44%),
      linear-gradient(180deg, rgba(91, 15, 27, 0.96) 0%, rgba(47, 8, 16, 0.985) 56%, rgba(34, 6, 12, 1) 100%);
    box-shadow:
      0 0.88rem 1.6rem rgba(47, 8, 16, 0.3),
      0 0.2rem 0.5rem rgba(47, 8, 16, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.07),
      inset 0 -1px 0 rgba(47, 8, 16, 0.38);
  }

  .hero__panel::before {
    content: "";
    position: absolute;
    inset: 0.06rem 0.08rem auto 0.08rem;
    height: 28%;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
    opacity: 0.56;
    pointer-events: none;
    z-index: 0;
  }

  .hero__panel::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
      radial-gradient(circle at 18% 22%, rgba(205, 163, 81, 0.1) 0%, rgba(205, 163, 81, 0) 30%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0) 18%, rgba(47, 8, 16, 0) 82%, rgba(47, 8, 16, 0.14));
    pointer-events: none;
    z-index: 0;
  }

  .hero__panel-engraving {
    display: block;
    position: absolute;
    top: 0.6rem;
    right: 0.8rem;
    z-index: 1;
    font-size: 0.5rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(229, 232, 236, 0.38);
    -webkit-text-fill-color: rgba(229, 232, 236, 0.38);
    text-shadow:
      0 1px 0 rgba(47, 8, 16, 0.36),
      0 -1px 0 rgba(255, 255, 255, 0.035);
    opacity: 0.84;
    pointer-events: none;
  }

  .hero__panel-layout {
    position: relative;
    z-index: 1;
    grid-template-columns: 4.35rem minmax(0, 1fr);
    gap: 0.96rem;
  }

  .hero__panel-chip-wrap {
    position: relative;
    display: grid;
    place-items: center;
    width: 4.35rem;
    height: 4.22rem;
  }

  .hero__panel-chip-wrap::before {
    content: "";
    position: absolute;
    inset: 0.2rem 0.25rem 0.15rem 0.15rem;
    border-radius: 0.8rem;
    background: radial-gradient(circle at 38% 42%, rgba(215, 175, 97, 0.16) 0%, rgba(215, 175, 97, 0.04) 40%, rgba(215, 175, 97, 0) 72%);
    filter: blur(3px);
    opacity: 0.72;
    pointer-events: none;
  }

  .hero__panel-chip-wrap::after {
    content: "";
    position: absolute;
    inset: 0.18rem 0.3rem auto 0.34rem;
    height: 0.05rem;
    background: linear-gradient(90deg, rgba(255, 239, 199, 0), rgba(255, 239, 199, 0.34) 42%, rgba(255, 239, 199, 0));
    opacity: 0.56;
    pointer-events: none;
  }

  .hero__chip-shell {
    stroke: rgba(255, 240, 206, 0.68);
    stroke-width: 1.22;
  }

  .hero__chip-core {
    stroke: rgba(244, 218, 157, 0.54);
    stroke-width: 1;
  }

  .hero__chip-pins {
    stroke: rgba(196, 161, 89, 0.88);
  }

  .hero__chip-traces {
    stroke: rgba(214, 184, 118, 0.48);
  }

  .hero__panel-chip {
    position: relative;
    z-index: 1;
    width: 4.12rem;
    height: 3.98rem;
  }

  .hero__panel-copy {
    position: relative;
    display: grid;
    align-content: center;
    gap: 0.5rem;
    padding-left: 0.56rem;
  }

  .hero__panel-copy::before {
    content: "";
    position: absolute;
    left: -0.08rem;
    top: 0.3rem;
    bottom: 0.28rem;
    width: 1px;
    background: linear-gradient(180deg, rgba(222, 194, 131, 0.4), rgba(222, 194, 131, 0.08) 42%, rgba(255, 255, 255, 0.02) 100%);
    opacity: 0.7;
    pointer-events: none;
  }

  .hero__panel-eyebrow {
    position: relative;
    z-index: 1;
    font-size: 0.58rem;
    margin: 0;
    letter-spacing: 0.16em;
    color: rgba(224, 210, 182, 0.88);
    text-shadow:
      0 1px 0 rgba(47, 8, 16, 0.36),
      0 -1px 0 rgba(255, 255, 255, 0.03);
  }

  .hero__panel-list {
    position: relative;
    z-index: 1;
    gap: 0.22rem;
  }

  .hero__panel-item-title {
    font-size: 0.79rem;
    line-height: 1.12;
    letter-spacing: 0.022em;
    color: rgba(230, 216, 190, 0.9);
    text-shadow:
      0 1px 0 rgba(47, 8, 16, 0.4),
      0 -1px 0 rgba(255, 255, 255, 0.025);
  }

  .hero__panel-item {
    min-height: 3.18rem;
    padding: 0.66rem 0;
  }

  .hero__panel-item + .hero__panel-item {
    border-top-color: rgba(208, 175, 104, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 244, 217, 0.03);
  }

  .hero__panel-item::before {
    left: 0.04rem;
  }

  .hero__actions .btn {
    width: 100%;
    min-height: 2.75rem;
    padding-inline: 0.95rem;
    font-size: 0.84rem;
    letter-spacing: 0.06em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero {
    background-attachment: scroll;
  }
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--touch-min);
  padding: 0 calc(var(--space-md) + 0.25rem);
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.btn:hover {
  text-decoration: none;
}

.btn:focus {
  outline: none;
}

.btn:focus-visible {
  outline: 2px solid rgba(184, 148, 72, 0.88);
  outline-offset: 3px;
}

.btn--primary:focus-visible {
  outline-color: var(--color-white);
  outline-offset: 2px;
}

.hero .btn--ghost.btn--on-dark:focus-visible,
.hero .btn--on-dark:focus-visible {
  outline-color: rgba(255, 255, 255, 0.95);
  outline-offset: 3px;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-mahogany), var(--color-red));
  color: var(--color-text-light);
  border-color: rgba(199, 161, 91, 0.32);
  box-shadow: 0 8px 24px rgba(47, 8, 16, 0.24);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--color-red), var(--color-red-hover));
  color: var(--color-text-light);
  border-color: rgba(199, 161, 91, 0.42);
  box-shadow: 0 12px 28px rgba(47, 8, 16, 0.28);
}

.btn--ghost {
  background: transparent;
  color: var(--color-charcoal);
  border-color: var(--color-border);
  box-shadow: none;
}

.btn--ghost:hover {
  background: var(--color-white);
  border-color: rgba(184, 148, 72, 0.36);
  color: #72561c;
  box-shadow: var(--shadow-xs);
}

/* Secundar: contur brand — pentru fundal deschis */
.btn--secondary {
  background: transparent;
  color: #72561c;
  border-color: rgba(184, 148, 72, 0.34);
  box-shadow: none;
}

.btn--secondary:hover {
  background: rgba(184, 148, 72, 0.08);
  border-color: rgba(184, 148, 72, 0.52);
  color: #5f4a1f;
}

.btn--secondary:focus-visible {
  outline-color: rgba(184, 148, 72, 0.88);
}

.btn--block {
  width: 100%;
}

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */
.section-head {
  text-align: center;
  max-width: 38rem;
  margin-inline: auto;
  margin-bottom: clamp(var(--space-lg), 5vw, calc(var(--space-xl) + 0.35rem));
}

.section-head__title {
  margin: 0 0 var(--space-md);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 2.7rem);
  font-weight: 600;
  line-height: 1.04;
  color: var(--color-charcoal);
  letter-spacing: -0.025em;
}

.section-head__title--left {
  text-align: left;
}

.section-head__title::after {
  content: "";
  display: block;
  width: 2.75rem;
  height: 2px;
  margin-top: 0.65rem;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
  border-radius: 2px;
}

.section-head__title:not(.section-head__title--left)::after {
  margin-left: auto;
  margin-right: auto;
}

.section-head__title--left::after {
  margin-left: 0;
  margin-right: 0;
}

.section-head__text {
  margin: 0;
  color: var(--color-muted);
  max-width: 34rem;
  margin-inline: auto;
  font-size: clamp(1rem, 1.3vw, 1.08rem);
  line-height: 1.78;
  font-weight: 400;
}

.section-head__text--left {
  margin-inline: 0;
}

.services {
  padding-block: clamp(var(--space-xl), 7vw, var(--space-2xl))
    clamp(var(--space-xl), 8vw, calc(var(--space-2xl) + 1rem));
  background: linear-gradient(
    180deg,
    #e9e7e3 0%,
    var(--color-page) min(20%, 10rem),
    var(--color-page) 100%
  );
  border-top: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.services__layout {
  margin-top: clamp(var(--space-lg), 4vw, calc(var(--space-xl) + 0.15rem));
}

.services__intro {
  position: relative;
  width: min(100%, 43rem);
  max-width: none;
  margin: 0;
  padding: clamp(1.35rem, 3vw, 1.9rem) clamp(1.3rem, 3vw, 1.95rem);
  border: 1px solid rgba(184, 148, 72, 0.14);
  border-radius: calc(var(--radius-md) + 4px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.62)),
    linear-gradient(135deg, rgba(184, 148, 72, 0.05), rgba(184, 148, 72, 0));
  box-shadow:
    0 10px 28px rgba(58, 55, 50, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.services__intro::before {
  content: "";
  position: absolute;
  left: clamp(1.2rem, 2.8vw, 1.55rem);
  right: clamp(1.2rem, 2.8vw, 1.55rem);
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(184, 148, 72, 0.95), rgba(184, 148, 72, 0.12));
}

.services__intro .section-head__title {
  max-width: 10ch;
  margin-bottom: 0.7rem;
}

.services__intro .section-head__text {
  max-width: 34rem;
  line-height: 1.76;
  color: rgba(67, 53, 46, 0.9);
}

.services__cards {
  gap: clamp(1.1rem, 2.8vw, 1.55rem);
}

.cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(1.1rem, 2.7vw, 1.6rem);
  grid-template-columns: minmax(0, 1fr);
  align-items: stretch;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: clamp(1.45rem, 3.7vw, 1.95rem) clamp(1.25rem, 2.8vw, 1.7rem);
  box-shadow: var(--shadow-card);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(184, 148, 72, 0.92), rgba(184, 148, 72, 0));
  opacity: 0.72;
}

.card:hover {
  border-color: rgba(184, 148, 72, 0.22);
  box-shadow: var(--shadow-xs), 0 20px 50px rgba(58, 55, 50, 0.07);
  transform: translateY(-2px);
}

.card:hover .card__icon {
  color: #72561c;
  background: rgba(184, 148, 72, 0.14);
}

.card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin: 0 0 var(--space-md);
  border-radius: var(--radius-sm);
  color: #84672a;
  background: rgba(184, 148, 72, 0.1);
  box-shadow: inset 0 0 0 1px var(--color-gold-soft);
  transition:
    color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.card__icon svg {
  width: 1.65rem;
  height: 1.65rem;
  flex-shrink: 0;
}

.card__title {
  margin: 0 0 var(--space-sm);
  font-family: var(--font-display);
  font-size: clamp(1.28rem, 1.9vw, 1.55rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--color-charcoal);
}

.card__text {
  flex: 1 1 auto;
  margin: 0;
  font-size: 0.955rem;
  color: var(--color-muted);
  line-height: 1.75;
}

.card--featured {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(252, 248, 241, 0.94)),
    linear-gradient(135deg, rgba(184, 148, 72, 0.08), rgba(184, 148, 72, 0));
  border-color: rgba(184, 148, 72, 0.24);
  box-shadow: 0 10px 28px rgba(58, 55, 50, 0.06);
}

.card--featured::before {
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 168, 92, 0.96), rgba(201, 168, 92, 0.18));
  opacity: 1;
}

.card--featured:hover {
  border-color: rgba(201, 168, 92, 0.36);
  box-shadow: var(--shadow-xs), 0 20px 46px rgba(58, 55, 50, 0.08);
}

.card--featured .card__icon {
  color: #8b6a25;
  background: rgba(184, 148, 72, 0.12);
  box-shadow: inset 0 0 0 1px rgba(201, 168, 92, 0.26);
}

.card--featured:hover .card__icon {
  color: #72561c;
  background: rgba(184, 148, 72, 0.14);
}

.card--featured .card__title {
  font-size: clamp(1.38rem, 2.1vw, 1.68rem);
  color: var(--color-charcoal);
  letter-spacing: -0.018em;
}

.card--featured .card__text {
  color: rgba(58, 55, 50, 0.82);
  max-width: 24rem;
}

@media (max-width: 767px) {
  .services__cards .card--featured-recruitment {
    display: none;
  }

  .services {
    padding-block: clamp(var(--space-lg), 8vw, var(--space-xl));
    background:
      linear-gradient(180deg, rgba(248, 245, 240, 0.92), rgba(255, 255, 255, 0.98)),
      var(--color-page);
  }

  .services__layout {
    position: relative;
    margin-top: -0.2rem;
    padding: 0.72rem 0 0.08rem;
  }

  .services__layout::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(184, 148, 72, 0.16);
    border-top: none;
    border-radius: 0 0 calc(var(--radius-md) - 2px) calc(var(--radius-md) - 2px);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(249, 245, 238, 0.9)),
      linear-gradient(135deg, rgba(184, 148, 72, 0.05), rgba(184, 148, 72, 0));
    box-shadow:
      0 12px 26px rgba(44, 39, 33, 0.05),
      inset 0 1px 0 rgba(255, 255, 255, 0.78);
  }

  .services__intro {
    width: 100%;
    padding: 0.9rem 0.95rem 0.82rem;
    margin-bottom: 0;
    border-radius: calc(var(--radius-md) - 2px) calc(var(--radius-md) - 2px) 10px 10px;
    border-color: rgba(184, 148, 72, 0.18);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 247, 240, 0.94)),
      linear-gradient(135deg, rgba(184, 148, 72, 0.07), rgba(184, 148, 72, 0));
    box-shadow:
      0 10px 24px rgba(44, 39, 33, 0.055),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
  }

  .services__intro::before {
    left: 0.95rem;
    right: 0.95rem;
  }

  .services__intro .section-head__title {
    max-width: none;
    margin-bottom: 0;
    font-size: clamp(1.66rem, 6.4vw, 1.94rem);
    line-height: 0.98;
    color: #9a7629;
  }

  .services__intro .section-head__text {
    max-width: none;
    font-size: 0.95rem;
    line-height: 1.58;
    color: rgba(42, 39, 35, 0.9);
  }

  .services__cards,
  .cards {
    position: relative;
    z-index: 1;
    gap: 0.72rem;
  }

  .services__cards {
    padding: 0 0.38rem 0.38rem;
  }

  .card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-areas:
      "icon title"
      "text text";
    align-items: center;
    column-gap: 0.56rem;
    row-gap: 0.58rem;
    padding: 1rem 0.92rem 0.95rem;
    border-radius: calc(var(--radius-md) - 2px);
    border-color: rgba(184, 148, 72, 0.18);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.985), rgba(250, 246, 239, 0.95)),
      linear-gradient(135deg, rgba(184, 148, 72, 0.07), rgba(184, 148, 72, 0));
    box-shadow:
      0 8px 20px rgba(44, 39, 33, 0.05),
      inset 0 1px 0 rgba(255, 255, 255, 0.88);
  }

  .card::before {
    height: 1px;
    opacity: 0.9;
  }

  .card__icon {
    grid-area: icon;
    align-self: center;
    width: 2.32rem;
    height: 2.32rem;
    margin: 0;
    border-radius: 10px;
    position: relative;
    color: #8f6d25;
    background: linear-gradient(180deg, rgba(184, 148, 72, 0.16), rgba(184, 148, 72, 0.1));
    box-shadow:
      inset 0 0 0 1px rgba(184, 148, 72, 0.22),
      0 8px 16px rgba(184, 148, 72, 0.1);
  }

  .card__icon::after {
    content: "";
    position: absolute;
    inset: -0.14rem;
    border: 1px solid rgba(184, 148, 72, 0.12);
    border-radius: 11px;
    pointer-events: none;
  }

  .card__icon svg {
    width: 1.2rem;
    height: 1.2rem;
    stroke-width: 1.35;
  }

  .card__title {
    grid-area: title;
    max-width: none;
    margin: 0;
    font-size: 1.26rem;
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.024em;
    color: rgba(38, 34, 29, 0.99);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.42);
    white-space: nowrap;
    text-wrap: nowrap;
  }

  .card__text {
    grid-area: text;
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.62;
    color: rgba(42, 39, 35, 0.9);
  }

  .card--featured .card__title {
    max-width: none;
    font-size: 1.16rem;
    color: rgba(48, 44, 39, 0.96);
  }

  .card--featured .card__text {
    max-width: none;
  }
}

.about {
  padding-block: clamp(var(--space-xl), 9vw, var(--space-2xl));
  background:
    linear-gradient(180deg, rgba(47, 8, 16, 0.025), rgba(47, 8, 16, 0) 18%),
    var(--color-white);
  border-top: 1px solid rgba(184, 148, 72, 0.08);
}

.about__grid {
  display: flex;
  flex-direction: column;
  gap: clamp(var(--space-lg), 5vw, var(--space-2xl));
}

.about__content {
  position: relative;
  padding: clamp(1.25rem, 3vw, 1.6rem);
  border: 1px solid rgba(184, 148, 72, 0.16);
  border-radius: calc(var(--radius-md) + 2px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.6)),
    linear-gradient(135deg, rgba(184, 148, 72, 0.06), rgba(184, 148, 72, 0));
  box-shadow: 0 8px 24px rgba(58, 55, 50, 0.045);
}

.about__content::before {
  content: "";
  position: absolute;
  left: clamp(1.25rem, 3vw, 1.6rem);
  right: clamp(1.25rem, 3vw, 1.6rem);
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(184, 148, 72, 0.95), rgba(184, 148, 72, 0.12));
}

.about__content .section-head__title {
  max-width: 12ch;
}

.about__text {
  margin: 0 0 var(--space-md);
  color: var(--color-muted);
  max-width: 33rem;
  font-size: 1rem;
  line-height: 1.84;
}

.about__text:last-of-type {
  margin-bottom: 0;
}

.about__stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(1rem, 2.6vw, 1.35rem);
}

.about__stat {
  position: relative;
  padding: clamp(1.3rem, 3vw, 1.65rem) clamp(1.2rem, 2.8vw, 1.45rem);
  border: 1px solid rgba(184, 148, 72, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.66)),
    linear-gradient(135deg, rgba(184, 148, 72, 0.06), rgba(184, 148, 72, 0));
  border-radius: calc(var(--radius-md) + 2px);
  box-shadow: 0 8px 22px rgba(58, 55, 50, 0.04);
}

.about__stat::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(184, 148, 72, 0.9), rgba(184, 148, 72, 0.18));
}

.about__stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 2.9vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--color-gold);
  line-height: 1.2;
}

.about__stat-label {
  font-size: 0.82rem;
  color: var(--color-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   Why B-MAR
   -------------------------------------------------------------------------- */
.why {
  padding-block: clamp(var(--space-xl), 8vw, var(--space-2xl));
  background:
    linear-gradient(180deg, rgba(47, 8, 16, 0.03), rgba(47, 8, 16, 0) 24%),
    var(--color-white);
  border-top: 1px solid var(--color-border);
}

.section-head--left {
  text-align: left;
  margin-inline: 0;
}

.section-head__text--left {
  text-align: left;
}

.why__layout {
  display: grid;
  gap: clamp(var(--space-xl), 5.5vw, calc(var(--space-2xl) + 0.2rem));
  align-items: start;
}

.why__intro {
  margin: 0;
  max-width: none;
}

.why__intro .section-head__title {
  max-width: 13ch;
}

.why__intro .section-head__text {
  max-width: 28rem;
  line-height: 1.84;
}

.why__content {
  display: grid;
  gap: clamp(var(--space-lg), 3.5vw, 2.5rem);
}

.why__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(1.1rem, 3vw, 1.55rem);
}

.why__card {
  position: relative;
  min-height: 100%;
  padding: clamp(1.3rem, 3.4vw, 1.75rem);
  border: 1px solid rgba(184, 148, 72, 0.16);
  border-radius: calc(var(--radius-md) + 2px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.64)),
    linear-gradient(135deg, rgba(184, 148, 72, 0.06), rgba(184, 148, 72, 0));
  box-shadow: 0 8px 22px rgba(58, 55, 50, 0.045);
}

.why__card-index {
  display: inline-block;
  margin-bottom: 0.8rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: rgba(184, 148, 72, 0.9);
}

.why__card-title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--color-charcoal);
}

.why__card-text {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.82;
  color: var(--color-muted);
}

.why__seal {
  position: relative;
  padding: clamp(1.25rem, 3.2vw, 1.65rem);
  border-radius: calc(var(--radius-lg) + 2px);
  border: 1px solid rgba(201, 168, 92, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, var(--color-mahogany) 0%, var(--color-red) 55%, var(--color-red-hover) 100%);
  box-shadow: 0 12px 32px rgba(47, 8, 16, 0.22);
}

.why__seal::before {
  content: "";
  position: absolute;
  left: clamp(1.25rem, 3.2vw, 1.65rem);
  right: clamp(1.25rem, 3.2vw, 1.65rem);
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 168, 92, 0.95), rgba(201, 168, 92, 0.18));
}

.why__seal-eyebrow {
  margin: 0 0 0.6rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(212, 196, 160, 0.88);
}

.why__seal-text {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.42rem, 2.7vw, 1.82rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: rgba(247, 240, 229, 0.96);
}

@media (max-width: 767px) {
  .about {
    padding-block: clamp(var(--space-lg), 8vw, calc(var(--space-xl) - 0.75rem));
    background:
      linear-gradient(180deg, rgba(248, 245, 240, 0.94), rgba(255, 255, 255, 0.98)),
      var(--color-white);
  }

  .about__grid {
    gap: 0.9rem;
  }

  .about__content {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 1rem 0.95rem 1.05rem;
    border-radius: calc(var(--radius-md) - 2px);
    border-color: rgba(188, 152, 78, 0.24);
    background:
      linear-gradient(180deg, rgba(255, 254, 251, 0.97) 0%, rgba(246, 241, 232, 0.93) 100%),
      linear-gradient(135deg, rgba(184, 148, 72, 0.05), rgba(184, 148, 72, 0) 42%);
    box-shadow:
      0 0.7rem 1.25rem rgba(44, 39, 33, 0.045),
      inset 0 1px 0 rgba(255, 255, 255, 0.78),
      inset 0 -1px 0 rgba(173, 145, 86, 0.08),
      inset 0 0 0 1px rgba(255, 248, 233, 0.46);
  }

  .about__content::before {
    left: 0.95rem;
    right: 0.95rem;
    background: linear-gradient(90deg, rgba(184, 148, 72, 0.74), rgba(184, 148, 72, 0.12));
  }

  .about__content::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    border: 1px solid rgba(255, 252, 245, 0.58);
    pointer-events: none;
  }

  .about__content .section-head__title {
    max-width: none;
    margin-bottom: 0.52rem;
    font-size: clamp(1.28rem, 5.3vw, 1.56rem);
    line-height: 1;
    letter-spacing: -0.02em;
    color: #9a7629;
    white-space: normal;
    text-wrap: balance;
  }

  .about__text {
    margin-bottom: 0.85rem;
    font-size: 0.98rem;
    line-height: 1.62;
    color: rgba(49, 44, 38, 0.88);
    text-wrap: pretty;
  }

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

  .about__stat {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    min-height: 6.35rem;
    padding: 1.08rem 0.82rem 1rem;
    border-radius: calc(var(--radius-md) - 2px);
    border-color: rgba(188, 152, 78, 0.24);
    background:
      linear-gradient(180deg, rgba(255, 253, 249, 0.97) 0%, rgba(245, 239, 230, 0.93) 100%),
      linear-gradient(135deg, rgba(184, 148, 72, 0.05), rgba(184, 148, 72, 0) 44%);
    box-shadow:
      0 0.65rem 1.05rem rgba(44, 39, 33, 0.045),
      inset 0 1px 0 rgba(255, 255, 255, 0.76),
      inset 0 -1px 0 rgba(173, 145, 86, 0.08),
      inset 0 0 0 1px rgba(255, 248, 233, 0.44);
    text-align: center;
  }

  .about__stat::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    border: 1px solid rgba(255, 252, 245, 0.56);
    pointer-events: none;
  }

  .about__stat::before {
    inset: 0.72rem 0.8rem auto 0.8rem;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, rgba(184, 148, 72, 0.18), rgba(184, 148, 72, 0.84) 50%, rgba(184, 148, 72, 0.18));
  }

  .about__stat-value {
    margin-bottom: 0.38rem;
    font-size: 2.24rem;
    font-weight: 600;
    letter-spacing: -0.05em;
    font-variant-numeric: lining-nums;
    line-height: 1;
    color: #8b6720;
    text-shadow:
      0 1px 0 rgba(255, 252, 243, 0.36),
      0 -1px 0 rgba(122, 93, 30, 0.08);
  }

  .about__stat-label {
    display: block;
    max-width: 10ch;
    margin-top: 0;
    margin-inline: auto;
    font-size: 0.72rem;
    line-height: 1.38;
    letter-spacing: 0.06em;
    color: rgba(67, 60, 53, 0.84);
    text-wrap: balance;
  }

  .why {
    padding-block: clamp(var(--space-lg), 8vw, calc(var(--space-xl) - 0.5rem));
    background:
      linear-gradient(180deg, rgba(245, 242, 236, 0.9), rgba(255, 255, 255, 0.98)),
      var(--color-white);
  }

  .why__layout {
    gap: 1rem;
  }

  .why__intro .section-head__title {
    max-width: none;
    margin-bottom: 0.48rem;
    font-size: clamp(1.16rem, 4.95vw, 1.42rem);
    line-height: 1;
    letter-spacing: -0.016em;
    color: #9a7629;
    white-space: normal;
    text-wrap: balance;
  }

  .why__intro .section-head__text {
    max-width: none;
    font-size: 0.96rem;
    line-height: 1.6;
    color: rgba(42, 39, 35, 0.92);
    text-wrap: pretty;
  }

  .why__content {
    gap: 0.85rem;
  }

  .why__grid {
    gap: 0.75rem;
  }

  .why__card {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-areas:
      "index title"
      "index text";
    align-items: start;
    column-gap: 0.68rem;
    padding: 1rem 0.95rem;
    border-radius: calc(var(--radius-md) - 2px);
    border-color: rgba(188, 152, 78, 0.23);
    background:
      linear-gradient(180deg, rgba(255, 254, 251, 0.97), rgba(247, 242, 234, 0.94)),
      linear-gradient(135deg, rgba(184, 148, 72, 0.05), rgba(184, 148, 72, 0) 42%);
    box-shadow:
      0 0.72rem 1.35rem rgba(44, 39, 33, 0.05),
      inset 0 1px 0 rgba(255, 255, 255, 0.84),
      inset 0 0 0 1px rgba(255, 248, 233, 0.48);
  }

  .why__card::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    border: 1px solid rgba(255, 252, 245, 0.56);
    pointer-events: none;
  }

  .why__card::after {
    content: "";
    position: absolute;
    left: 1.82rem;
    top: 2rem;
    bottom: 1rem;
    width: 1px;
    background: linear-gradient(180deg, rgba(184, 148, 72, 0.42), rgba(184, 148, 72, 0.1) 44%, rgba(184, 148, 72, 0.02) 100%);
    pointer-events: none;
  }

  .why__card-index {
    grid-area: index;
    position: relative;
    z-index: 1;
    display: inline-grid;
    place-items: center;
    width: 1.76rem;
    min-height: 1.76rem;
    margin: 0;
    padding: 0;
    align-self: start;
    border-radius: 999px;
    border: 1px solid rgba(191, 156, 83, 0.24);
    background:
      linear-gradient(180deg, rgba(255, 250, 241, 0.88), rgba(244, 236, 223, 0.8)),
      linear-gradient(135deg, rgba(184, 148, 72, 0.08), rgba(184, 148, 72, 0));
    box-shadow:
      0 0.3rem 0.7rem rgba(44, 39, 33, 0.04),
      inset 0 1px 0 rgba(255, 255, 255, 0.78);
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: rgba(142, 107, 35, 0.86);
  }

  .why__card-title {
    grid-area: title;
    margin: 0 0 0.4rem;
    font-size: 1.18rem;
    line-height: 1.02;
    letter-spacing: -0.026em;
    text-wrap: balance;
    color: rgba(45, 40, 35, 0.96);
  }

  .why__card-text {
    grid-area: text;
    position: relative;
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.62;
    color: rgba(56, 50, 43, 0.84);
    text-wrap: pretty;
  }

  .why__card-text::before {
    content: "";
    position: absolute;
    left: -0.42rem;
    top: 0.62rem;
    width: 0.22rem;
    height: 1px;
    background: rgba(184, 148, 72, 0.48);
  }

  .why__seal {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 1.04rem 0.95rem 1.02rem;
    border-radius: calc(var(--radius-lg) - 2px);
    border-color: rgba(201, 168, 92, 0.24);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.055) 0%, rgba(255, 255, 255, 0.016) 18%, rgba(255, 255, 255, 0) 34%),
      linear-gradient(140deg, rgba(183, 145, 72, 0.09) 0%, rgba(183, 145, 72, 0.025) 22%, rgba(183, 145, 72, 0) 46%),
      linear-gradient(180deg, rgba(91, 15, 27, 0.98) 0%, rgba(47, 8, 16, 0.995) 58%, rgba(34, 6, 12, 1) 100%);
    box-shadow:
      0 0.95rem 1.9rem rgba(47, 8, 16, 0.26),
      0 0.22rem 0.55rem rgba(47, 8, 16, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.06),
      inset 0 -1px 0 rgba(47, 8, 16, 0.38);
  }

  .why__seal::before {
    left: 0.95rem;
    right: 0.95rem;
    z-index: 1;
  }

  .why__seal::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    border: 1px solid rgba(255, 244, 219, 0.08);
    pointer-events: none;
    z-index: 0;
  }

  .why__seal-eyebrow {
    margin-bottom: 0.5rem;
    font-size: 0.66rem;
    letter-spacing: 0.18em;
    color: rgba(204, 190, 162, 0.78);
    text-shadow:
      0 1px 0 rgba(47, 8, 16, 0.36),
      0 -1px 0 rgba(255, 255, 255, 0.025);
  }

  .why__seal-text {
    font-size: 1.2rem;
    line-height: 1.12;
    letter-spacing: -0.028em;
    text-wrap: balance;
    color: rgba(244, 236, 223, 0.97);
    text-shadow: 0 1px 0 rgba(47, 8, 16, 0.26);
  }
}

/* --------------------------------------------------------------------------
   Gallery carousel
   -------------------------------------------------------------------------- */
.gallery {
  padding-block: clamp(calc(var(--space-xl) + 0.35rem), 9vw, calc(var(--space-2xl) + 0.25rem));
  background:
    linear-gradient(180deg, rgba(47, 8, 16, 0.03), rgba(47, 8, 16, 0) 18%),
    var(--color-white);
  border-top: 1px solid var(--color-border);
}

.gallery .section-head {
  max-width: 36rem;
  margin: 0 auto clamp(var(--space-lg), 4.5vw, 2.85rem);
}

.gallery .section-head__text {
  max-width: 29rem;
  line-height: 1.84;
}

.gallery__home-more {
  margin: calc(var(--space-md) + 0.2rem) 0 0;
  font-size: 0.9375rem;
}

.gallery__eyebrow,
.gallery-page__eyebrow {
  margin: 0 0 0.82rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(184, 148, 72, 0.92);
}

.gallery__home-more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  color: var(--color-charcoal);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.gallery__home-more-link::after {
  content: "→";
  color: var(--color-gold);
  font-size: 0.95rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.gallery__home-more-link:hover {
  color: #72561c;
  text-decoration: none;
}

.gallery__home-more-link:hover::after {
  transform: translateX(2px);
}

@media (max-width: 767px) {
  .gallery {
    padding-block: clamp(var(--space-lg), 7vw, calc(var(--space-xl) - 0.7rem));
  }

  .gallery .section-head {
    margin-bottom: 0.72rem;
  }

  .gallery .section-head__title {
    margin-bottom: 0.34rem;
  }

  .gallery__eyebrow {
    margin-bottom: 0.5rem;
    font-size: 0.64rem;
    letter-spacing: 0.13em;
  }

  .gallery .section-head__text {
    margin-bottom: 0;
    line-height: 1.52;
  }

  .gallery__home-more {
    margin-top: 0.48rem;
  }

  .gallery__carousel {
    padding: 0.08rem;
    background: transparent;
    box-shadow: none;
  }

  .gallery__stage {
    border-radius: calc(var(--radius-lg) - 2px);
    box-shadow: 0 0.45rem 1rem rgba(28, 24, 21, 0.08);
  }

  .gallery__viewport {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    height: min(44vh, 17.2rem);
    min-height: 10.75rem;
    max-height: min(44vh, 17.2rem);
    border-color: rgba(191, 156, 83, 0.12);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.012) 16%, rgba(255, 255, 255, 0) 34%),
      linear-gradient(180deg, var(--color-mahogany) 0%, var(--color-red) 100%);
    box-shadow:
      0 0.42rem 0.95rem rgba(47, 8, 16, 0.14),
      0 0.08rem 0.24rem rgba(47, 8, 16, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.045),
      inset 0 -1px 0 rgba(47, 8, 16, 0.24);
  }

  .gallery__viewport::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255, 250, 240, 0.05);
    pointer-events: none;
    z-index: 1;
  }

  .gallery__viewport .gallery__zoom {
    width: 100%;
    height: 100%;
    border-radius: 0;
  }

  .gallery__viewport .gallery__slide img {
    display: block;
    width: 100%;
    max-width: none;
    height: 100%;
    max-height: none;
    object-fit: cover;
    object-position: center;
  }

  .gallery__arrow {
    width: 2.16rem;
    height: 2.16rem;
    margin-top: -1.08rem;
  }

  .gallery__arrow--prev {
    left: 0.44rem;
  }

  .gallery__arrow--next {
    right: 0.44rem;
  }

  .gallery__arrow-icon {
    font-size: 1.14rem;
  }

  .gallery__copyright {
    right: 0.54rem;
    bottom: 0.52rem;
    padding: 0.14rem 0.32rem;
    font-size: 0.5rem;
    background: rgba(47, 8, 16, 0.34);
    border-color: rgba(218, 223, 228, 0.12);
    color: rgba(244, 239, 231, 0.86);
    text-shadow:
      0 1px 0 rgba(47, 8, 16, 0.36),
      0 -1px 0 rgba(255, 255, 255, 0.025);
  }

  .gallery__overlay {
    padding: 0.85rem 0.75rem 0.55rem;
    gap: 0.45rem;
    background: linear-gradient(
      to top,
      rgba(47, 8, 16, 0.28) 0%,
      rgba(47, 8, 16, 0.08) 42%,
      transparent 100%
    );
  }

  .gallery__progress,
  .gallery__dots {
    display: none;
  }

  .gallery__footer {
    margin-top: 0.72rem;
    gap: 0.5rem;
  }

  .gallery__footer-row {
    gap: 0.45rem;
  }

  .gallery__counter {
    font-size: 0.62rem;
    padding: 0.24rem 0.56rem;
    letter-spacing: 0.12em;
    color: rgba(72, 43, 35, 0.9);
    background: rgba(255, 252, 246, 0.84);
    border-color: rgba(210, 186, 139, 0.18);
  }

  .gallery__autoplay {
    min-height: 2.28rem;
    padding: 0.24rem 0.68rem;
    font-size: 0.56rem;
    letter-spacing: 0.14em;
    color: rgba(72, 43, 35, 0.9);
    background: rgba(255, 251, 244, 0.86);
    border-color: rgba(210, 186, 139, 0.18);
    box-shadow:
      0 0.3rem 0.7rem rgba(47, 8, 16, 0.06),
      inset 0 1px 0 rgba(255, 255, 255, 0.68);
  }

  @supports (height: 1svh) {
    .gallery__viewport {
      height: min(44svh, 17.2rem);
      max-height: min(44svh, 17.2rem);
    }
  }
}

.gallery__carousel {
  position: relative;
  max-width: 54rem;
  margin-inline: auto;
  outline: none;
  padding: clamp(0.85rem, 2.2vw, 1.1rem);
  border-radius: calc(var(--radius-lg) + 6px);
  background:
    linear-gradient(180deg, rgba(251, 248, 242, 0.9), rgba(246, 239, 229, 0.62)),
    linear-gradient(135deg, rgba(91, 15, 27, 0.04), rgba(199, 161, 91, 0.08) 38%, rgba(199, 161, 91, 0));
  box-shadow: 0 12px 30px rgba(47, 8, 16, 0.08);
}

.gallery__carousel:focus-visible {
  outline: 2px solid rgba(184, 148, 72, 0.88);
  outline-offset: 4px;
}

.gallery__stage {
  position: relative;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 26px rgba(47, 8, 16, 0.14);
}

.gallery__viewport {
  overflow: hidden;
  background:
    radial-gradient(circle at top center, rgba(216, 186, 122, 0.08), rgba(216, 186, 122, 0) 34%),
    linear-gradient(180deg, rgba(71, 13, 24, 0.92), rgba(47, 8, 16, 0.98));
  border: 1px solid rgba(199, 161, 91, 0.18);
  border-radius: var(--radius-lg);
  position: relative;
  height: min(70vh, 32rem);
  min-height: 14rem;
  max-height: min(70vh, 32rem);
}

.gallery__viewport::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.3),
    inset 0 24px 48px rgba(255, 255, 255, 0.03);
  z-index: 1;
}

.gallery__track {
  display: flex;
  height: 100%;
  min-height: 0;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.gallery__slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  min-height: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(180deg, var(--color-mahogany) 0%, var(--color-red) 100%);
}

.gallery__frame {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.gallery__zoom {
  display: block;
  min-width: 0;
  min-height: 0;
  max-width: 100%;
  max-height: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  cursor: zoom-in;
  line-height: 0;
  border-radius: 4px;
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.gallery__zoom:hover {
  box-shadow: 0 0 0 2px rgba(212, 196, 160, 0.34);
}

.gallery__zoom:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(184, 148, 72, 0.78), 0 0 0 5px rgba(255, 255, 255, 0.9);
}

.gallery__copyright {
  position: absolute;
  right: var(--space-sm);
  bottom: var(--space-sm);
  z-index: 2;
  margin: 0;
  padding: 0.24rem 0.46rem;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.86);
  text-shadow: 0 1px 2px rgba(47, 8, 16, 0.55);
  background: linear-gradient(135deg, rgba(47, 8, 16, 0.72), rgba(91, 15, 27, 0.5));
  border-radius: 4px;
  border: 1px solid rgba(216, 186, 122, 0.16);
  pointer-events: none;
}

.gallery__slide img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  vertical-align: middle;
  transform: scale(1);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
  opacity: 0.9;
}

.gallery__slide:not(.is-active) img {
  animation: none;
  transform: scale(1);
}

.gallery__slide.is-active img {
  opacity: 1;
  animation: gallery-ken 14s ease-out forwards;
}

@keyframes gallery-ken {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.04);
  }
}

.gallery__arrow {
  position: absolute;
  top: 50%;
  margin-top: calc(-1 * var(--touch-min) / 2);
  width: var(--touch-min);
  height: var(--touch-min);
  padding: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: var(--color-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  appearance: none;
}

.gallery__arrow-bg {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(47, 8, 16, 0.52), rgba(91, 15, 27, 0.26));
  border: 1px solid rgba(216, 186, 122, 0.24);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow:
    0 4px 12px rgba(47, 8, 16, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.gallery__arrow-icon {
  position: relative;
  z-index: 1;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 300;
  text-shadow: 0 1px 2px rgba(47, 8, 16, 0.32);
  transition: transform 0.22s ease;
}

.gallery__arrow:hover {
  transform: scale(1.04);
}

.gallery__arrow:hover .gallery__arrow-bg {
  background: linear-gradient(135deg, rgba(199, 161, 91, 0.88), rgba(216, 186, 122, 0.72));
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow:
    0 4px 14px rgba(199, 161, 91, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.gallery__arrow:hover .gallery__arrow-icon {
  transform: translateX(-1px);
}

.gallery__arrow--next:hover .gallery__arrow-icon {
  transform: translateX(1px);
}

.gallery__arrow:active {
  transform: scale(0.96);
}

.gallery__arrow:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 3px;
}

.gallery__arrow:focus-visible .gallery__arrow-bg {
  border-color: rgba(255, 255, 255, 0.9);
}

.gallery__arrow--prev {
  left: var(--space-sm);
}

.gallery__arrow--next {
  right: var(--space-sm);
}

.gallery__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: calc(var(--space-lg) - 0.15rem) var(--space-md) calc(var(--space-sm) - 0.05rem);
  background: linear-gradient(
    to top,
    rgba(47, 8, 16, 0.5) 0%,
    rgba(47, 8, 16, 0.2) 52%,
    transparent 100%
  );
  border-radius: 0 0 calc(var(--radius-lg) - 1px) calc(var(--radius-lg) - 1px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  pointer-events: none;
}

.gallery__overlay .gallery__progress,
.gallery__overlay .gallery__dots {
  pointer-events: auto;
}

.gallery__progress {
  width: 100%;
  max-width: 11rem;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  overflow: hidden;
}

.gallery__progress-fill {
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
  box-shadow: 0 0 6px rgba(184, 148, 72, 0.22);
  transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gallery__dot {
  width: 0.42rem;
  height: 0.42rem;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition:
    width 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  appearance: none;
}

.gallery__dot:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: scale(1.08);
}

.gallery__dot.is-active {
  width: 1.2rem;
  background: var(--color-gold);
  box-shadow: 0 0 5px rgba(184, 148, 72, 0.24);
}

.gallery__dot:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 3px;
}

.gallery__footer {
  margin-top: clamp(1.05rem, 2.6vw, 1.45rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.65rem, 1.4vw, 0.82rem);
}

.gallery__footer-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(0.55rem, 1.4vw, 0.72rem);
}

.gallery__autoplay {
  min-height: var(--touch-min);
  padding: 0.34rem 0.98rem;
  font-family: var(--font);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(72, 43, 35, 0.94);
  background: linear-gradient(180deg, rgba(251, 248, 242, 0.92), rgba(245, 237, 227, 0.84));
  border: 1px solid rgba(199, 161, 91, 0.22);
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(47, 8, 16, 0.08);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  appearance: none;
}

.gallery__autoplay:hover:not(:disabled) {
  border-color: rgba(199, 161, 91, 0.34);
  box-shadow: 0 6px 14px rgba(47, 8, 16, 0.1);
}

.gallery__autoplay:focus-visible {
  outline: 2px solid rgba(184, 148, 72, 0.88);
  outline-offset: 2px;
}

.gallery__autoplay:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.gallery__autoplay[aria-pressed="true"] {
  background: linear-gradient(135deg, var(--color-mahogany), var(--color-red));
  color: rgba(248, 243, 234, 0.96);
  border-color: rgba(201, 168, 92, 0.28);
}

.gallery__counter {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: rgba(72, 43, 35, 0.88);
  padding: 0.32rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 196, 160, 0.18);
  background: linear-gradient(180deg, rgba(251, 248, 242, 0.88), rgba(245, 237, 227, 0.8));
  box-shadow: 0 2px 6px rgba(47, 8, 16, 0.07);
}

.gallery__counter-sep {
  margin: 0 0.24em;
  opacity: 0.48;
}

.gallery__thumbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  max-width: 100%;
}

.gallery__thumb {
  flex: 0 0 auto;
  width: 4.15rem;
  height: 3rem;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: linear-gradient(180deg, rgba(106, 23, 38, 0.22), rgba(47, 8, 16, 0.36));
  transition:
    border-color 0.22s ease,
    opacity 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.94;
}

.gallery__thumb:hover {
  border-color: rgba(184, 148, 72, 0.34);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(47, 8, 16, 0.14);
}

.gallery__thumb.is-active {
  border-color: var(--color-gold);
  opacity: 1;
  box-shadow: 0 2px 10px rgba(184, 148, 72, 0.12);
}

.gallery__thumb:not(.is-active) {
  opacity: 0.62;
}

@media (prefers-reduced-motion: reduce) {
  .gallery__track {
    transition: none;
  }

  .gallery__slide img {
    transition: opacity 0.2s ease;
  }

  .gallery__slide.is-active img {
    animation: none;
    transform: none;
  }

  .gallery__progress-fill {
    transition: none;
  }

  .gallery__arrow,
  .gallery__arrow-icon,
  .gallery__thumb {
    transition: none;
  }
}

/* --------------------------------------------------------------------------
   Lightbox
   -------------------------------------------------------------------------- */
.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body.lightbox-open,
body.dialog-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  animation: lightbox-in 0.28s ease-out;
}

.lightbox[hidden] {
  display: none;
}

@keyframes lightbox-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(47, 8, 16, 0.58);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  border: none;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

.lightbox__panel {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  width: 100%;
  max-width: min(96vw, 72rem);
  max-height: min(92vh, 52rem);
  pointer-events: none;
}

.lightbox__panel > * {
  pointer-events: auto;
}

.lightbox__figure {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: min(88vh, 50rem);
}

.lightbox__img {
  max-width: 100%;
  max-height: min(88vh, 50rem);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow:
    0 8px 48px rgba(58, 55, 50, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.12);
}

.lightbox__copyright {
  position: absolute;
  right: 0.5rem;
  bottom: 0.5rem;
  margin: 0;
  padding: 0.28rem 0.52rem;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 3px rgba(47, 8, 16, 0.72);
  background: rgba(47, 8, 16, 0.52);
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.lightbox__close {
  position: absolute;
  top: -2.75rem;
  right: 0;
  width: var(--touch-min);
  height: var(--touch-min);
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(91, 15, 27, 0.44);
  color: var(--color-white);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  appearance: none;
}

.lightbox__close:hover {
  background: rgba(116, 24, 38, 0.76);
  border-color: rgba(255, 255, 255, 0.32);
}

.lightbox__close:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 3px;
}

.lightbox__arrow {
  flex: 0 0 auto;
  width: var(--touch-min);
  height: var(--touch-min);
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(91, 15, 27, 0.42);
  color: var(--color-white);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  appearance: none;
}

.lightbox__arrow:hover {
  background: rgba(116, 24, 38, 0.74);
  border-color: rgba(255, 255, 255, 0.32);
}

.lightbox__arrow:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 2px;
}

@media (max-width: 640px) {
  .lightbox {
    padding: 0.75rem;
  }

  .lightbox__close {
    top: 0;
    right: 0;
    width: 2.45rem;
    height: 2.45rem;
    font-size: 1.55rem;
  }

  .lightbox__panel {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    max-height: none;
    gap: 0.75rem;
  }

  .lightbox__arrow--prev {
    order: 2;
  }

  .lightbox__figure {
    order: 1;
    flex: 0 0 100%;
    max-height: min(64vh, 24rem);
  }

  .lightbox__arrow--next {
    order: 2;
  }

  .lightbox__arrow {
    align-self: center;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.35rem;
  }

  .lightbox__copyright {
    right: 0.4rem;
    bottom: 0.4rem;
    font-size: 0.54rem;
    padding: 0.18rem 0.38rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lightbox {
    animation: none;
  }
}

/* --------------------------------------------------------------------------
   Footer (light, understated)
   -------------------------------------------------------------------------- */
.footer {
  padding-block: clamp(var(--space-lg), 5vw, var(--space-xl));
  padding-bottom: max(var(--space-lg), env(safe-area-inset-bottom, 0px));
  background:
    radial-gradient(circle at top center, rgba(216, 186, 122, 0.08) 0%, rgba(216, 186, 122, 0) 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, #22060c 0%, #2f0810 100%);
  color: rgba(248, 243, 234, 0.78);
  border-top: 1px solid rgba(201, 168, 92, 0.22);
  position: relative;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 -18px 40px rgba(47, 8, 16, 0.08);
}

.footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 168, 92, 0), rgba(201, 168, 92, 0.65), rgba(201, 168, 92, 0));
  pointer-events: none;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(var(--space-md), 3vw, var(--space-lg));
  align-items: flex-start;
}

.footer .logo {
  color: var(--color-text-light);
}

.footer .logo:hover {
  color: var(--color-text-light);
}

.footer a.logo {
  text-decoration: none;
}

.footer a.logo:hover {
  text-decoration: none;
  opacity: 0.88;
}

.footer .logo__img {
  object-position: center center;
}

.footer__tagline {
  margin: var(--space-xs) 0 0;
  max-width: 16rem;
  font-size: 0.75rem;
  line-height: 1.55;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(248, 243, 234, 0.64);
}

.footer__contact {
  width: 100%;
}

.footer__contact-label {
  margin: 0 0 var(--space-xs);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(216, 186, 122, 0.86);
}

.footer__channels {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  align-items: flex-start;
  margin: 0;
  padding: 0;
}

.footer__channel {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: rgba(248, 243, 234, 0.92);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 0.4rem 0;
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  -webkit-tap-highlight-color: transparent;
  border-radius: 10px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.footer__channel:hover {
  color: #f6e1ab;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
  transform: translateX(2px);
}

.footer__channel:focus {
  outline: none;
}

.footer__channel:focus-visible {
  outline: 2px solid rgba(201, 168, 92, 0.85);
  outline-offset: 2px;
  border-radius: 2px;
}

.footer__channel-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-light);
  opacity: 0.92;
}

.footer__channel-text {
  word-break: break-word;
}

.footer__channel--map .footer__channel-text {
  font-weight: 500;
  letter-spacing: 0.01em;
  font-size: 0.9rem;
  text-transform: none;
  line-height: 1.4;
}

.footer__address {
  margin: var(--space-sm) 0 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: rgba(248, 243, 234, 0.64);
  white-space: pre-line;
}

.footer__copy {
  margin: 0;
  width: 100%;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(201, 168, 92, 0.14);
  font-size: 0.8125rem;
  color: rgba(248, 243, 234, 0.54);
  letter-spacing: 0.02em;
  text-align: center;
}

.footer__backtop {
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
  min-height: 2.45rem;
  gap: 0.42rem;
  padding: 0.34rem 1rem;
  border: 1px solid rgba(201, 168, 92, 0.22);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(116, 24, 38, 0.48), rgba(47, 8, 16, 0.22) 48%, rgba(199, 161, 91, 0.04));
  color: rgba(248, 243, 234, 0.9);
  text-decoration: none;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow:
    0 0.55rem 1.15rem rgba(47, 8, 16, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 -1px 0 rgba(47, 8, 16, 0.22);
}

.footer__backtop::before {
  content: "↑";
  font-size: 0.82rem;
  line-height: 1;
  color: rgba(236, 206, 142, 0.94);
  text-shadow: 0 0 0.28rem rgba(184, 148, 72, 0.12);
}

.footer__backtop:hover {
  text-decoration: none;
  color: rgba(247, 240, 225, 0.96);
  border-color: rgba(201, 168, 92, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(116, 24, 38, 0.58), rgba(47, 8, 16, 0.24) 48%, rgba(216, 186, 122, 0.08));
}

.footer__backtop:focus {
  outline: none;
}

.footer__backtop:focus-visible {
  outline: 2px solid rgba(201, 168, 92, 0.82);
  outline-offset: 2px;
}

.footer__copy-accent {
  text-decoration: none;
  color: rgba(236, 206, 142, 0.96);
  text-shadow:
    0 1px 0 rgba(47, 8, 16, 0.28),
    0 0 0.35rem rgba(184, 148, 72, 0.14);
}

.footer__copy-accent:hover {
  text-decoration: none;
  color: rgba(244, 217, 162, 0.98);
}

.footer__copy-heart {
  display: inline-block;
  margin-left: 0.03em;
  color: rgba(223, 192, 124, 0.98);
  text-shadow:
    0 1px 0 rgba(47, 8, 16, 0.28),
    0 0 0.28rem rgba(184, 148, 72, 0.14);
  transform: translateY(0.02em) scale(0.92);
}

.footer__copy-accent:focus-visible {
  outline: 2px solid rgba(201, 168, 92, 0.82);
  outline-offset: 2px;
  border-radius: 2px;
}

.footer__credit {
  margin: 0.45rem 0 0;
  width: 100%;
  font-size: 0.75rem;
  line-height: 1.6;
  color: rgba(248, 243, 234, 0.46);
  letter-spacing: 0.04em;
}

@media (max-width: 767px) {
  .footer {
    padding-block: var(--space-md);
    padding-bottom: max(var(--space-md), env(safe-area-inset-bottom, 0px));
  }

  .footer__inner {
    align-items: stretch;
    gap: 0.9rem;
  }

  .footer__brand {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.78rem;
    text-align: left;
    width: 100%;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(201, 168, 92, 0.12);
  }

  .footer .logo,
  .footer a.logo {
    justify-content: flex-start;
    flex: 0 0 auto;
    max-width: none;
  }

  .footer .logo__img {
    filter:
      drop-shadow(0 0.28rem 0.7rem rgba(47, 8, 16, 0.2))
      drop-shadow(0 0 0.22rem rgba(201, 168, 92, 0.08));
  }

  .footer .logo__img--footer {
    height: 1.92rem;
    max-width: 8.8rem;
  }

  .footer__tagline {
    flex: 1 1 auto;
    max-width: none;
    margin-top: 0;
    padding-left: 0.78rem;
    border-left: 1px solid rgba(201, 168, 92, 0.16);
    font-size: 0.68rem;
    line-height: 1.42;
    letter-spacing: 0.1em;
    color: rgba(226, 217, 201, 0.64);
  }

  .footer__contact {
    width: 100%;
    max-width: none;
    margin-inline: 0;
    padding-top: 0;
    text-align: left;
  }

  .footer__contact-label {
    text-align: left;
    margin-bottom: 0.48rem;
  }

  .footer__channels {
    align-items: stretch;
    gap: 0.42rem;
  }

  .footer__channel {
    position: relative;
    width: 100%;
    justify-content: flex-start;
    gap: 0.72rem;
    padding: 0.72rem 0.78rem;
    border: 1px solid rgba(201, 168, 92, 0.14);
    border-radius: calc(var(--radius-sm) + 2px);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
      linear-gradient(135deg, rgba(184, 148, 72, 0.04), rgba(184, 148, 72, 0));
    box-shadow:
      0 0.45rem 1rem rgba(47, 8, 16, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.04);
  }

  .footer__address {
    text-align: left;
    margin-top: 0.95rem;
    max-width: 18rem;
  }

  .footer__channel-icon {
    width: 1.9rem;
    height: 1.9rem;
    border-radius: 999px;
    border: 1px solid rgba(201, 168, 92, 0.16);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  }

  .footer__channel-text {
    font-size: 0.92rem;
    line-height: 1.35;
  }

  .footer__channel--map .footer__channel-text {
    font-size: 0.9rem;
    letter-spacing: 0.01em;
  }

  .footer__copy {
    margin-top: 0.1rem;
    padding-top: 0.9rem;
    text-align: center;
    font-size: 0.62rem;
    line-height: 1.38;
    letter-spacing: 0.03em;
    white-space: normal;
    text-wrap: balance;
  }

  .footer__backtop {
    min-height: 2.22rem;
    padding: 0.26rem 0.8rem;
    font-size: 0.58rem;
    letter-spacing: 0.14em;
  }

  .footer__backtop::before {
    font-size: 0.72rem;
  }

  .footer__credit {
    margin-top: 0.3rem;
    text-align: left;
  }
}

/* --------------------------------------------------------------------------
   Gallery page (full grid)
   -------------------------------------------------------------------------- */
.gallery-page {
  padding-block: clamp(var(--space-xl), 8vw, var(--space-2xl));
  background:
    linear-gradient(180deg, rgba(47, 8, 16, 0.03), rgba(47, 8, 16, 0) 22%),
    var(--color-page);
  border-top: 1px solid var(--color-border);
}

.gallery-page__head {
  max-width: 42rem;
  margin-bottom: clamp(var(--space-lg), 4vw, var(--space-xl));
  padding: clamp(1.1rem, 2.6vw, 1.5rem) clamp(1.1rem, 2.8vw, 1.75rem);
  border: 1px solid rgba(184, 148, 72, 0.18);
  border-radius: calc(var(--radius-md) + 2px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.48)),
    linear-gradient(135deg, rgba(184, 148, 72, 0.06), rgba(184, 148, 72, 0));
  box-shadow: 0 10px 32px rgba(58, 55, 50, 0.05);
}

.gallery-page__title {
  margin: 0 0 var(--space-sm);
  font-size: clamp(1.45rem, 3.2vw, 1.875rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--color-charcoal);
}

.gallery-page__intro {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--color-muted);
}

@media (min-width: 768px) {
  .gallery-page__head {
    max-width: none;
    width: 100%;
  }

  .gallery-page__title {
    max-width: none;
    white-space: nowrap;
    text-wrap: nowrap;
    font-size: clamp(1.7rem, 2.05vw, 2.2rem);
    line-height: 1;
  }

  .gallery-page__intro {
    max-width: 40rem;
  }
}

.gallery-page__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  grid-auto-flow: dense;
}

.gallery-page__trigger {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: zoom-in;
  background: linear-gradient(180deg, var(--color-mahogany) 0%, var(--color-red) 100%);
  aspect-ratio: 4 / 3;
  box-shadow: 0 10px 28px rgba(47, 8, 16, 0.18);
  transition: box-shadow 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
}

.gallery-page__trigger:hover {
  border-color: rgba(184, 148, 72, 0.24);
  box-shadow: 0 16px 36px rgba(47, 8, 16, 0.24);
  transform: translateY(-2px);
}

.gallery-page__trigger:focus-visible {
  outline: none;
  border-color: rgba(184, 148, 72, 0.72);
  box-shadow: 0 0 0 3px rgba(184, 148, 72, 0.22);
}

.gallery-page__trigger img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.94;
  transition: opacity 0.22s ease, transform 0.45s ease;
}

.gallery-page__trigger:hover img {
  opacity: 1;
  transform: scale(1.02);
}

.gallery-page__stamp {
  position: absolute;
  right: 0.4rem;
  bottom: 0.4rem;
  z-index: 1;
  margin: 0;
  padding: 0.22rem 0.42rem;
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 3px rgba(47, 8, 16, 0.68);
  background: rgba(47, 8, 16, 0.54);
  border-radius: 3px;
  border: 1px solid rgba(212, 196, 160, 0.16);
  pointer-events: none;
}

@media (min-width: 768px) {
  .gallery-page__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-lg);
  }

  .gallery-page__trigger:first-child {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
  }

  .gallery-page__trigger:nth-child(4) {
    aspect-ratio: 3 / 4;
  }
}

@media (min-width: 1024px) {
  .gallery-page__grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: clamp(0.95rem, 1.55vw, 1.2rem);
  }

  .gallery-page__trigger:first-child {
    grid-column: span 8;
    aspect-ratio: 16 / 8.7;
    border-color: rgba(184, 148, 72, 0.2);
    box-shadow: 0 14px 34px rgba(47, 8, 16, 0.22);
  }

  .gallery-page__trigger:nth-child(2) {
    grid-column: span 4;
  }

  .gallery-page__trigger:nth-child(3),
  .gallery-page__trigger:nth-child(4),
  .gallery-page__trigger:nth-child(5) {
    grid-column: span 4;
    aspect-ratio: 4 / 3;
  }

  .gallery-page__trigger:nth-child(6),
  .gallery-page__trigger:nth-child(7) {
    grid-column: span 6;
    aspect-ratio: 16 / 10;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-page__trigger {
    transition: none;
  }

  .gallery-page__trigger:hover {
    transform: none;
  }
}

/* --------------------------------------------------------------------------
   Desktop
   -------------------------------------------------------------------------- */
@media (min-width: 768px) {
  .services,
  .about,
  .why,
  .gallery {
    padding-block: clamp(calc(var(--space-lg) + 0.55rem), 4.6vw, calc(var(--space-xl) + 0.4rem));
  }

  .header {
    isolation: isolate;
    overflow: visible;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0)),
      linear-gradient(135deg, rgba(63, 11, 22, 0.995) 0%, rgba(96, 19, 35, 0.982) 58%, rgba(126, 29, 48, 0.945) 100%);
    border-bottom-color: rgba(199, 161, 91, 0.21);
    box-shadow:
      0 12px 26px rgba(47, 8, 16, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.04),
      inset 0 -1px 0 rgba(216, 186, 122, 0.04);
  }

  .header::after {
    background: linear-gradient(90deg, rgba(184, 148, 72, 0), rgba(184, 148, 72, 0.3), rgba(184, 148, 72, 0));
  }

  .hero {
    min-height: 72vh;
    padding-block: clamp(5.45rem, 7.6vw, 6.95rem) clamp(3.4rem, 5.1vw, 4.7rem);
    background-position: 62% center;
  }

  .hero::before {
    background: linear-gradient(
      102deg,
      rgba(47, 8, 16, 0.94) 0%,
      rgba(91, 15, 27, 0.76) 42%,
      rgba(116, 24, 38, 0.26) 100%
    );
  }

  .hero > .container,
  .hero__inner {
    position: relative;
    z-index: 1;
  }

  .hero__content::before {
    content: "";
    position: absolute;
    left: 0;
    top: -1.9rem;
    width: clamp(6.5rem, 10vw, 8.4rem);
    height: 1px;
    background: linear-gradient(90deg, rgba(216, 186, 122, 0.72), rgba(216, 186, 122, 0));
    opacity: 0.72;
    pointer-events: none;
  }

  .hero::after {
    inset: auto auto -16% 66%;
    width: min(38rem, 44vw);
    background: radial-gradient(circle, rgba(184, 148, 72, 0.18) 0%, rgba(184, 148, 72, 0) 74%);
    filter: blur(16px);
  }

  /* Desktop header: single visual row */
  .header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 0;
    gap: clamp(0.7rem, 1.55vw, 1.18rem);
    align-items: center;
    min-height: calc(var(--header-h) + 0.2rem);
    padding-block: 0.18rem 0.22rem;
  }

  .header__brand {
    justify-self: start;
    margin-right: 0;
    gap: 0;
    padding-right: 0;
    position: relative;
    flex: 0 0 auto;
    align-self: center;
    justify-content: flex-start;
  }

  .header__brand::after {
    display: none;
  }

  .header__brand .logo {
    min-height: 0;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .header__inner > .nav {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    align-self: center;
    margin-top: 0;
  }

  .header__inner > .header__toolbar {
    justify-self: end;
    align-items: center;
    align-self: center;
    flex: 0 0 auto;
    gap: 0.7rem;
    padding-left: 0;
    position: relative;
    margin-top: 0;
  }

  .header__inner > .header__toolbar::before {
    display: none;
  }

  .logo__img {
    height: 3.02rem;
    max-width: 16.6rem;
    filter: drop-shadow(0 5px 12px rgba(47, 8, 16, 0.12));
  }

  .header__microtag {
    display: block;
    align-self: center;
    max-width: none;
    margin-top: 0.16rem;
    text-align: center;
    white-space: nowrap;
    font-size: 0.56rem;
    line-height: 1.02;
    letter-spacing: 0.125em;
    color: rgba(226, 194, 122, 0.97);
    text-shadow: 0 1px 0 rgba(47, 8, 16, 0.34);
  }

  .nav-toggle {
    display: none;
  }

  .nav {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: clamp(0.14rem, 0.42vw, 0.26rem);
    min-width: 0;
    max-width: 100%;
    padding: 0.08rem 0.18rem;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    margin-left: 0;
    position: relative;
    overflow: hidden;
  }

  .nav::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 0;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(216, 186, 122, 0.16), rgba(216, 186, 122, 0));
    opacity: 0;
  }

  .nav__list {
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    gap: clamp(0.1rem, 0.28vw, 0.18rem);
    justify-content: center;
    min-width: 0;
    position: relative;
  }

  .nav__list > li {
    position: relative;
    display: flex;
    align-items: center;
  }

  .nav__list > li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: calc(clamp(0.18rem, 0.55vw, 0.42rem) / -2);
    width: 1px;
    height: 0.56rem;
    transform: translateY(-50%);
    background: linear-gradient(180deg, rgba(216, 186, 122, 0), rgba(216, 186, 122, 0.06), rgba(216, 186, 122, 0));
    pointer-events: none;
  }

  .nav__link {
    padding: 0.54rem clamp(0.56rem, 0.8vw, 0.72rem) 0.62rem;
    min-height: 2.28rem;
    white-space: nowrap;
    font-size: clamp(0.82rem, 0.24vw + 0.8rem, 0.9rem);
    letter-spacing: 0.07em;
    color: rgba(244, 237, 227, 0.86);
    border-radius: 0;
    position: relative;
    border: none;
    transition:
      color 0.2s ease,
      opacity 0.2s ease,
      transform 0.2s ease;
  }

  .nav__link::after {
    content: "";
    position: absolute;
    left: 0.6rem;
    right: 0.6rem;
    bottom: 0.34rem;
    height: 1px;
    background: linear-gradient(90deg, rgba(216, 186, 122, 0), rgba(216, 186, 122, 0.7), rgba(216, 186, 122, 0));
    opacity: 0;
    transform: scaleX(0.52);
    transform-origin: center;
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
  }

  .nav__link:hover {
    color: rgba(251, 245, 235, 0.98);
    transform: none;
  }

  .nav__link:hover::after {
    opacity: 0.72;
    transform: scaleX(1);
  }

  .nav__link--current {
    background: transparent;
    box-shadow: none;
    color: rgba(252, 247, 238, 0.98);
  }

  .nav__link--current::after {
    opacity: 0.8;
    transform: scaleX(1);
  }

  .nav__link--current:hover {
    background: transparent;
  }

  .nav__link--cta {
    min-height: 2.28rem;
    padding-inline: 0.84rem;
    border-radius: 12px;
    border: 1px solid rgba(216, 186, 122, 0.24);
    background: rgba(255, 255, 255, 0.016);
    color: rgba(248, 243, 234, 0.98);
    letter-spacing: 0.08em;
    box-shadow: none;
  }

  .nav__link--cta:hover {
    background: rgba(216, 186, 122, 0.07);
    color: rgba(250, 245, 236, 1);
    border-color: rgba(216, 186, 122, 0.3);
    box-shadow: none;
    transform: none;
  }

  .nav__link--cta:focus-visible {
    outline-offset: 3px;
  }

  .lang-dropdown__toggle {
    min-width: 4.76rem;
    min-height: 2.28rem;
    padding: 0 0.82rem 0 0.88rem;
    font-size: 0.69rem;
    letter-spacing: 0.12em;
    border-color: rgba(216, 186, 122, 0.22);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.016);
    box-shadow: none;
  }

  .lang-dropdown__toggle:hover {
    border-color: rgba(216, 186, 122, 0.34);
    background: rgba(216, 186, 122, 0.06);
    box-shadow: none;
    transform: none;
  }

  .lang-dropdown__toggle[aria-expanded="true"] {
    border-color: rgba(216, 186, 122, 0.4);
    background: rgba(216, 186, 122, 0.07);
    box-shadow: none;
  }

  .lang-dropdown__current {
    color: rgba(244, 236, 223, 0.94);
    letter-spacing: 0.12em;
    font-weight: 800;
    padding-right: 0.58rem;
    border-right-color: rgba(216, 186, 122, 0.24);
  }

  .lang-dropdown__caret {
    margin-left: 0.02rem;
    border-left-width: 4px;
    border-right-width: 4px;
    border-top-width: 5px;
    border-top-color: rgba(216, 186, 122, 0.88);
  }

  .lang-dropdown__list {
    top: calc(100% + 0.6rem);
    width: 100%;
    min-width: 100%;
    padding: 0.3rem;
    z-index: 80;
    border-radius: 14px;
    border-color: rgba(216, 186, 122, 0.22);
    background:
      linear-gradient(180deg, rgba(110, 22, 37, 0.97), rgba(58, 11, 20, 0.99)),
      linear-gradient(135deg, rgba(216, 186, 122, 0.1), rgba(216, 186, 122, 0.03));
    box-shadow: 0 12px 22px rgba(47, 8, 16, 0.18);
  }

  .lang-dropdown__list .lang-dropdown__option {
    min-height: 2.28rem;
    padding: 0.58rem 0.68rem;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    border-radius: 10px;
    color: rgba(242, 235, 224, 0.88);
  }

  .lang-dropdown__list .lang-dropdown__option:hover {
    background: rgba(216, 186, 122, 0.08);
    color: rgba(252, 246, 236, 0.98);
  }

  .lang-dropdown__list .lang__btn--active {
    background: rgba(216, 186, 122, 0.12);
    color: rgba(252, 246, 236, 0.98);
    box-shadow: inset 0 0 0 1px rgba(216, 186, 122, 0.1);
  }

  .gallery-page {
    padding-top: clamp(calc(var(--space-xl) + 1.3rem), 9vw, calc(var(--space-2xl) + 0.8rem));
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: clamp(var(--space-md), 3vw, calc(var(--space-lg) + 0.35rem));
  }

  .hero__content {
    margin-inline: 0;
    max-width: 47rem;
    text-align: left;
    padding-right: 0;
    padding-top: 0.7rem;
    position: relative;
  }

  .hero__eyebrow {
    margin-bottom: 1rem;
    padding: 0.52rem 0.98rem;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    border-color: rgba(212, 196, 160, 0.34);
    background: rgba(47, 8, 16, 0.44);
    box-shadow:
      0 10px 22px rgba(47, 8, 16, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.05);
    color: rgba(232, 216, 183, 0.96);
  }

  .hero__title {
    max-width: 40rem;
    margin-bottom: 1.5rem;
    font-size: clamp(3.7rem, 5.2vw, 5.55rem);
    line-height: 0.9;
    letter-spacing: -0.04em;
    text-shadow:
      0 1px 0 rgba(255, 255, 255, 0.05),
      0 24px 52px rgba(47, 8, 16, 0.36);
  }

  .hero__lead {
    margin-left: 0;
  }

  .hero__actions {
    margin-top: 0.22rem;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 0.82rem;
  }

  .hero__actions .btn {
    width: auto;
    min-height: 3.08rem;
    padding-inline: 1.22rem;
    font-size: 0.87rem;
    letter-spacing: 0.085em;
    box-shadow:
      0 14px 30px rgba(47, 8, 16, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.04);
  }

  .hero__panel {
    margin-inline: 0;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hero__side {
    display: none;
    max-width: none;
    margin-inline: 0;
    align-self: stretch;
  }

  .services__intro,
  .about__content,
  .why__intro,
  .gallery .section-head {
    max-width: 44rem;
  }

  .services > .container {
    display: flex;
    flex-direction: column;
  }

  .services__intro {
    order: 2;
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding: clamp(1.45rem, 2.3vw, 1.9rem) clamp(1.45rem, 2.7vw, 2.1rem) 1.05rem;
    border-color: rgba(184, 148, 72, 0.16);
    border-bottom-color: transparent;
    border-radius: calc(var(--radius-md) + 6px) calc(var(--radius-md) + 6px) 14px 14px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 246, 239, 0.92)),
      linear-gradient(135deg, rgba(184, 148, 72, 0.06), rgba(184, 148, 72, 0));
    box-shadow:
      0 12px 28px rgba(58, 55, 50, 0.045),
      inset 0 1px 0 rgba(255, 255, 255, 0.72);
  }

  .services__intro::after {
    content: "";
    position: absolute;
    left: clamp(1.45rem, 2.8vw, 2.05rem);
    right: clamp(1.45rem, 2.8vw, 2.05rem);
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(201, 168, 92, 0.42), rgba(201, 168, 92, 0.08));
    pointer-events: none;
  }

  .services__intro .section-head__title,
  .about__content .section-head__title,
  .why__intro .section-head__title,
  .gallery .section-head__title {
    max-width: 12ch;
    margin-bottom: 0.8rem;
  }

  .services__intro .section-head__title,
  .about__content .section-head__title {
    max-width: none;
    white-space: nowrap;
  }

  .gallery .section-head__title {
    max-width: none;
    white-space: nowrap;
  }

  .services__intro .section-head__text,
  .why__intro .section-head__text,
  .gallery .section-head__text {
    max-width: 40rem;
    line-height: 1.8;
  }

  .services__layout {
    order: 3;
    position: relative;
    margin-top: -0.22rem;
    padding: 0.82rem clamp(0.92rem, 1.7vw, 1.04rem) 0.12rem;
  }

  .hero-recruitment {
    order: 1;
    display: block;
    position: relative;
    margin-top: 0;
    padding-bottom: clamp(0.72rem, 1.5vw, 1rem);
    z-index: 1;
  }

  .hero-recruitment__card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: clamp(1rem, 1.8vw, 1.3rem);
    padding: clamp(1.15rem, 2vw, 1.55rem) clamp(1.25rem, 2.6vw, 1.8rem);
    border: 1px solid rgba(184, 148, 72, 0.18);
    border-radius: calc(var(--radius-lg) + 2px);
    background:
      linear-gradient(180deg, rgba(255, 252, 246, 0.95), rgba(245, 238, 228, 0.92)),
      linear-gradient(135deg, rgba(184, 148, 72, 0.08), rgba(184, 148, 72, 0));
    box-shadow:
      0 18px 34px rgba(47, 8, 16, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.78);
  }

  .hero-recruitment__icon {
    display: inline-grid;
    place-items: center;
    width: 3.35rem;
    height: 3.35rem;
    border-radius: 1rem;
    color: #8d6a2e;
    background:
      radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0) 55%),
      linear-gradient(145deg, rgba(255, 249, 237, 0.98), rgba(231, 215, 183, 0.9));
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.82),
      0 10px 22px rgba(141, 106, 46, 0.12);
  }

  .hero-recruitment__icon svg {
    width: 1.45rem;
    height: 1.45rem;
  }

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

  .hero-recruitment__eyebrow {
    display: inline-flex;
    align-items: center;
    margin: 0 0 0.45rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(141, 106, 46, 0.88);
  }

  .hero-recruitment__title {
    margin: 0 0 0.3rem;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 1.9vw, 1.95rem);
    line-height: 1.02;
    letter-spacing: -0.02em;
    color: #241c10;
    white-space: nowrap;
  }

  .hero-recruitment__text {
    margin: 0;
    max-width: none;
    font-size: clamp(0.9rem, 1vw, 1rem);
    line-height: 1.45;
    color: rgba(49, 39, 22, 0.9);
  }

  .services__layout::before {
    content: "";
    position: absolute;
    inset: 0 0 0 0;
    border: 1px solid rgba(184, 148, 72, 0.14);
    border-top: none;
    border-radius: 0 0 calc(var(--radius-lg) + 2px) calc(var(--radius-lg) + 2px);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(249, 245, 238, 0.9)),
      linear-gradient(135deg, rgba(184, 148, 72, 0.04), rgba(184, 148, 72, 0));
    box-shadow:
      0 14px 30px rgba(58, 55, 50, 0.042),
      inset 0 1px 0 rgba(255, 255, 255, 0.76);
    pointer-events: none;
  }

  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1rem, 1.8vw, 1.28rem);
  }

  .services__cards {
    position: relative;
    z-index: 1;
    gap: 0.92rem;
  }

  .services__cards .card {
    min-height: 100%;
    padding: clamp(1.28rem, 1.85vw, 1.55rem) clamp(1.18rem, 1.8vw, 1.42rem);
    border-color: rgba(184, 148, 72, 0.12);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(252, 249, 244, 0.72)),
      linear-gradient(135deg, rgba(184, 148, 72, 0.03), rgba(184, 148, 72, 0));
    box-shadow:
      0 8px 18px rgba(58, 55, 50, 0.026),
      inset 0 1px 0 rgba(255, 255, 255, 0.74);
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-areas:
      "icon title"
      "text text";
    column-gap: 0.68rem;
    row-gap: 0.38rem;
    align-content: start;
  }

  .services__cards .card::before {
    height: 1px;
    opacity: 0.5;
  }

  .services__cards .card--featured {
    grid-column: 1 / -1;
    padding: clamp(1.6rem, 2.5vw, 2rem) clamp(1.45rem, 2.6vw, 2rem);
  }

  .services__cards .card--featured-recruitment {
    display: none;
  }

  .services__cards .card--featured-recruitment .card__text {
    max-width: none;
    white-space: nowrap;
    font-size: clamp(0.82rem, 0.92vw, 0.94rem);
    line-height: 1.2;
  }

  .services__cards .card--featured-recruitment .card__title {
    max-width: none;
    white-space: nowrap;
    font-size: clamp(1.46rem, 1.75vw, 1.9rem);
    line-height: 1.02;
  }

  .services__cards .card__text {
    grid-area: text;
    align-self: start;
    grid-column: 1 / -1;
    max-width: 27rem;
    margin-top: 0.08rem;
    line-height: 1.58;
    font-size: 0.9rem;
  }

  .services__cards .card__title {
    grid-area: title;
    margin-bottom: 0;
    max-width: none;
    justify-self: start;
    align-self: center;
    font-size: clamp(1.36rem, 1.42vw, 1.58rem);
    line-height: 1.03;
    letter-spacing: -0.02em;
    color: rgba(34, 28, 24, 0.98);
  }

  .services__cards .card__icon {
    grid-area: icon;
    margin: 0;
    justify-self: start;
    align-self: center;
    width: 2.62rem;
    height: 2.62rem;
    border-radius: calc(var(--radius-sm) + 1px);
    color: rgba(135, 103, 36, 0.9);
    background: linear-gradient(180deg, rgba(184, 148, 72, 0.085), rgba(184, 148, 72, 0.032));
    box-shadow:
      inset 0 0 0 1px rgba(201, 168, 92, 0.14),
      0 3px 8px rgba(58, 55, 50, 0.018);
  }

  .services__cards .card__icon svg {
    width: 1.38rem;
    height: 1.38rem;
  }

  .services__cards .card--featured-recruitment .card__icon {
    width: 3.3rem;
    height: 3.3rem;
  }

  .hero__panel-actions {
    justify-content: flex-start;
  }

  .hero__panel-actions .btn {
    width: auto;
    min-width: 13rem;
  }

  .why__layout {
    grid-template-columns: minmax(15.5rem, 17.5rem) minmax(0, 1fr);
    gap: clamp(var(--space-lg), 3vw, calc(var(--space-xl) - 0.15rem));
    align-items: stretch;
  }

  .why__content {
    position: relative;
    display: grid;
    gap: 0;
    padding: clamp(1rem, 1.55vw, 1.12rem);
    border: 1px solid rgba(184, 148, 72, 0.14);
    border-radius: calc(var(--radius-lg) + 4px);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 244, 237, 0.9)),
      linear-gradient(135deg, rgba(184, 148, 72, 0.06), rgba(184, 148, 72, 0));
    box-shadow:
      0 16px 34px rgba(58, 55, 50, 0.045),
      inset 0 1px 0 rgba(255, 255, 255, 0.72);
  }

  .why__content::before {
    content: "";
    position: absolute;
    left: clamp(1.05rem, 1.7vw, 1.22rem);
    right: clamp(1.05rem, 1.7vw, 1.22rem);
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(201, 168, 92, 0.75), rgba(201, 168, 92, 0.08));
    pointer-events: none;
  }

  .why__intro {
    position: relative;
    display: grid;
    align-content: center;
    gap: 0.75rem;
    padding: 0.2rem 0 0.2rem 0.15rem;
  }

  .why__intro::after {
    content: "";
    width: min(3.4rem, 28%);
    height: 1px;
    margin-top: 0.15rem;
    background: linear-gradient(90deg, rgba(199, 161, 91, 0.72), rgba(199, 161, 91, 0.12));
  }

  .why__intro .section-head__title {
    max-width: 10.8ch;
    margin-bottom: 0;
    line-height: 0.98;
    text-wrap: balance;
  }

  .why__intro .section-head__text {
    max-width: 18.5rem;
    margin: 0;
    line-height: 1.72;
    color: rgba(67, 53, 46, 0.9);
  }

  .why__grid,
  .why__grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    align-items: stretch;
    gap: 0.88rem;
  }

  .why__card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-areas:
      "index title"
      "index text";
    column-gap: 0.82rem;
    row-gap: 0.26rem;
    align-content: start;
    min-height: 100%;
    padding: 0.96rem 0.98rem 1rem;
    border: 1px solid rgba(184, 148, 72, 0.14);
    border-radius: calc(var(--radius-md) + 1px);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.64)),
      linear-gradient(135deg, rgba(184, 148, 72, 0.045), rgba(184, 148, 72, 0));
    box-shadow:
      0 10px 20px rgba(58, 55, 50, 0.03),
      inset 0 1px 0 rgba(255, 255, 255, 0.72);
  }

  .why__card-index {
    grid-area: index;
    display: inline-grid;
    place-items: center;
    width: 2.12rem;
    min-height: 2.12rem;
    margin-bottom: 0;
    border-radius: 999px;
    border: 1px solid rgba(201, 168, 92, 0.22);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 242, 233, 0.84));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
    font-size: 0.68rem;
    line-height: 1;
    color: rgba(145, 111, 39, 0.92);
  }

  .why__card-title {
    grid-area: title;
    margin: 0;
    align-self: center;
    font-size: clamp(1.18rem, 1.2vw, 1.34rem);
    line-height: 1.08;
    letter-spacing: -0.014em;
  }

  .why__card-text {
    grid-area: text;
    max-width: none;
    line-height: 1.64;
    font-size: 0.915rem;
    color: rgba(79, 73, 66, 0.86);
  }

  .why__seal {
    order: -1;
    max-width: none;
    padding: clamp(1.55rem, 2.25vw, 2rem) clamp(1.45rem, 2.3vw, 1.95rem);
    border-color: rgba(201, 168, 92, 0.28);
    box-shadow:
      0 18px 38px rgba(20, 18, 16, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }

  .why__seal-eyebrow {
    margin-bottom: 0.78rem;
    color: rgba(223, 205, 165, 0.9);
  }

  .why__seal-text {
    max-width: 34rem;
    font-size: clamp(1.7rem, 2.2vw, 2.12rem);
    line-height: 1.08;
  }

  .about__grid {
    position: relative;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    gap: clamp(var(--space-lg), 3vw, calc(var(--space-xl) - 0.2rem));
    padding: clamp(1rem, 1.6vw, 1.2rem);
  }

  .about__grid::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(184, 148, 72, 0.14);
    border-radius: calc(var(--radius-lg) + 4px);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 244, 237, 0.9)),
      linear-gradient(135deg, rgba(184, 148, 72, 0.05), rgba(184, 148, 72, 0));
    box-shadow:
      0 16px 34px rgba(58, 55, 50, 0.04),
      inset 0 1px 0 rgba(255, 255, 255, 0.74);
    pointer-events: none;
  }

  .about__content {
    position: relative;
    z-index: 1;
    flex: 1 1 auto;
    max-width: 37rem;
    padding: clamp(1.15rem, 2vw, 1.35rem) clamp(1.15rem, 2vw, 1.4rem);
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .about__text {
    max-width: 40rem;
    line-height: 1.82;
  }

  .about__stats {
    position: relative;
    z-index: 1;
    flex: 0 0 15.8rem;
    margin-top: 0;
    align-self: stretch;
  }

  .about__stat {
    padding: clamp(1.4rem, 2vw, 1.72rem) clamp(1.25rem, 2vw, 1.5rem);
    box-shadow: 0 12px 26px rgba(58, 55, 50, 0.045);
  }

  .about__stat-value {
    font-size: clamp(2.25rem, 2.6vw, 2.8rem);
    line-height: 1.08;
  }

  .about__stat-label {
    line-height: 1.5;
    color: rgba(79, 73, 66, 0.8);
  }

  .gallery .section-head {
    display: grid;
    grid-template-columns: minmax(18rem, 24rem) minmax(22rem, 30rem);
    column-gap: clamp(2rem, 4vw, 4.25rem);
    row-gap: 0.18rem;
    align-items: end;
    justify-content: space-between;
    margin: 0 auto clamp(1rem, 2.3vw, 1.55rem);
    text-align: left;
    max-width: none;
    width: min(100%, 58rem);
    padding-bottom: 0.98rem;
    border-bottom: 1px solid rgba(184, 148, 72, 0.14);
  }

  .gallery__eyebrow {
    grid-column: 1;
    margin-bottom: 0.52rem;
  }

  .gallery .section-head__title,
  .gallery #gallery-heading {
    display: block;
    grid-column: 1;
    text-align: left;
    width: auto;
    max-width: none !important;
    white-space: nowrap !important;
    text-wrap: nowrap;
    font-size: clamp(1.62rem, 2.15vw, 2.08rem) !important;
    line-height: 1 !important;
  }

  .gallery .section-head__title::after {
    margin-left: 0;
    margin-right: 0;
  }

  .gallery .section-head__text {
    grid-column: 2;
    grid-row: 1 / span 2;
    text-align: left;
    align-self: center;
    max-width: 29rem;
    margin: 0;
    line-height: 1.72;
    text-wrap: balance;
  }

  .gallery__home-more {
    grid-column: 2;
    margin: 0.34rem 0 0;
    justify-self: start;
    text-align: left;
  }

  .gallery__home-more-link {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }

  .gallery__carousel {
    position: relative;
    margin-inline: auto;
    width: min(100%, 58rem);
    max-width: 58rem;
    padding: clamp(1rem, 1.8vw, 1.25rem);
    border: 1px solid rgba(184, 148, 72, 0.14);
    border-radius: calc(var(--radius-lg) + 10px);
    background:
      linear-gradient(180deg, rgba(251, 248, 242, 0.96), rgba(246, 239, 229, 0.9)),
      linear-gradient(135deg, rgba(91, 15, 27, 0.04), rgba(199, 161, 91, 0.08) 42%, rgba(199, 161, 91, 0));
    box-shadow:
      0 18px 38px rgba(47, 8, 16, 0.09),
      inset 0 1px 0 rgba(255, 255, 255, 0.72);
  }

  .gallery__carousel::before {
    content: "";
    position: absolute;
    left: clamp(1rem, 1.8vw, 1.25rem);
    right: clamp(1rem, 1.8vw, 1.25rem);
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(201, 168, 92, 0.72), rgba(201, 168, 92, 0.08));
    pointer-events: none;
  }

  .gallery__stage {
    box-shadow: 0 14px 34px rgba(47, 8, 16, 0.16);
  }

  .gallery__frame {
    padding: clamp(0.8rem, 1.2vw, 0.95rem);
  }

  .gallery__zoom,
  .gallery__slide img {
    border-radius: calc(var(--radius-md) + 1px);
  }

  .gallery__arrow-bg {
    background: linear-gradient(135deg, rgba(47, 8, 16, 0.56), rgba(91, 15, 27, 0.28));
    border-color: rgba(212, 196, 160, 0.28);
    box-shadow:
      0 6px 16px rgba(47, 8, 16, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  .gallery__arrow {
    width: 2rem;
    height: 2rem;
    margin-top: -1rem;
  }

  .gallery__arrow--prev {
    left: 0.55rem;
  }

  .gallery__arrow--next {
    right: 0.55rem;
  }

  .gallery__arrow-icon {
    font-size: 1.28rem;
    text-shadow: 0 1px 2px rgba(47, 8, 16, 0.28);
  }

  .gallery__footer {
    margin-top: clamp(0.9rem, 1.5vw, 1.15rem);
  }

  .gallery__footer-row {
    gap: 0.58rem;
  }

  .gallery__counter {
    min-width: 3rem;
    justify-content: center;
    padding: 0.32rem 0.72rem;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    background: linear-gradient(180deg, rgba(251, 248, 242, 0.9), rgba(245, 237, 227, 0.84));
    box-shadow: 0 4px 12px rgba(47, 8, 16, 0.08);
  }

  .gallery__autoplay {
    min-height: auto;
    padding: 0.42rem 1rem;
    font-size: 0.6rem;
    letter-spacing: 0.17em;
    box-shadow: 0 4px 12px rgba(47, 8, 16, 0.09);
  }

  .footer__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand contact"
      "copy backtop";
    align-items: start;
    column-gap: clamp(var(--space-lg), 4vw, calc(var(--space-xl) + 0.25rem));
    row-gap: 1rem;
  }

  .footer__brand {
    grid-area: brand;
    flex: none;
    max-width: 24rem;
    padding-right: 1rem;
  }

  .footer .logo__img--footer {
    height: 2.9rem;
    max-width: 15.8rem;
  }

  .footer .logo__img {
    filter:
      drop-shadow(0 0.34rem 0.9rem rgba(47, 8, 16, 0.22))
      drop-shadow(0 0 0.28rem rgba(201, 168, 92, 0.1));
  }

  .footer__tagline {
    max-width: 19rem;
    margin-top: 0.35rem;
    line-height: 1.62;
    color: rgba(223, 192, 124, 0.92);
    text-shadow: 0 1px 0 rgba(47, 8, 16, 0.28);
  }

  .footer__contact {
    grid-area: contact;
    flex: none;
    width: auto;
    max-width: 22rem;
    justify-self: end;
    padding: 0.2rem 0 0;
    text-align: right;
  }

  .footer__contact-label {
    text-align: right;
  }

  .footer__channels {
    align-items: flex-end;
    gap: 0.28rem;
  }

  .footer__channel {
    padding: 0.18rem 0;
    font-size: 0.95rem;
  }

  .footer__channel-icon {
    opacity: 0.96;
  }

  .footer__address {
    text-align: right;
  }

  .footer__backtop {
    grid-area: backtop;
    justify-self: end;
    align-self: end;
    min-width: 10.5rem;
  }

  .footer__copy {
    grid-area: copy;
    flex-basis: auto;
    width: auto;
    max-width: 34rem;
    padding-top: 1rem;
    border-top-color: rgba(201, 168, 92, 0.18);
    color: rgba(248, 243, 234, 0.62);
    text-align: left;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .why__card:last-child {
    grid-column: auto;
    max-width: none;
    justify-self: auto;
  }
}

@media (min-width: 1024px) {
  .why__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1.2rem, 1.8vw, 1.65rem);
  }

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

  .services__cards .card--featured {
    grid-column: 1 / -1;
  }
}

.about__grid--single .about__content {
  max-width: none;
}

.stats {
  padding-block: clamp(var(--space-xl), 8vw, calc(var(--space-2xl) - 0.15rem));
  background: var(--color-white);
  border-top: 1px solid rgba(184, 148, 72, 0.08);
}

.stats .section-head {
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
}

.stats__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.85rem, 2.8vw, 1.25rem);
}

.stats__item {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 5.45rem;
  padding: clamp(0.95rem, 2.35vw, 1.16rem) clamp(1rem, 2.2vw, 1.22rem);
  border: 1px solid rgba(184, 148, 72, 0.16);
  border-radius: calc(var(--radius-md) + 2px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(249, 245, 239, 0.82)),
    linear-gradient(135deg, rgba(184, 148, 72, 0.045), rgba(184, 148, 72, 0));
  box-shadow:
    0 8px 20px rgba(58, 55, 50, 0.032),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.stats__item::before {
  content: "";
  position: absolute;
  inset: 0.82rem auto 0.82rem 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(184, 148, 72, 0.82), rgba(184, 148, 72, 0.14));
}

.stats__item:last-child {
  grid-column: 1 / -1;
}

.stats__value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.95rem, 5.2vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.034em;
  line-height: 0.92;
  color: var(--color-gold);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.42);
}

.stats__label {
  display: block;
  margin-top: 0.3rem;
  max-width: 11.2rem;
  font-size: 0.74rem;
  line-height: 1.26;
  letter-spacing: 0.085em;
  text-transform: uppercase;
  color: rgba(67, 53, 46, 0.88);
}

.statement {
  padding-block: clamp(var(--space-lg), 6vw, var(--space-xl));
  background:
    linear-gradient(180deg, rgba(47, 8, 16, 0.03), rgba(47, 8, 16, 0)),
    var(--color-white);
}

.statement .why__seal {
  max-width: none;
}

.statement .why__seal-text {
  max-width: none;
}

.recruitment {
  padding-block: clamp(var(--space-xl), 8vw, var(--space-2xl));
  background:
    linear-gradient(180deg, rgba(47, 8, 16, 0.02), rgba(47, 8, 16, 0) 18%),
    var(--color-white);
  border-top: 1px solid rgba(184, 148, 72, 0.08);
}

.recruitment__intro {
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
}

.recruitment__roles {
  position: relative;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.08rem;
  padding-top: 0.18rem;
}

.recruitment__roles::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.45rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(199, 161, 91, 0.16), rgba(199, 161, 91, 0.04) 24%, rgba(199, 161, 91, 0.04) 76%, rgba(199, 161, 91, 0.16));
  pointer-events: none;
}

.recruitment__role {
  position: relative;
  overflow: hidden;
  min-height: 4.7rem;
  display: grid;
  place-items: center;
  padding: 0.9rem 0.8rem 0.82rem;
  border-color: rgba(184, 148, 72, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(249, 245, 239, 0.86)),
    linear-gradient(135deg, rgba(184, 148, 72, 0.038), rgba(184, 148, 72, 0));
  box-shadow:
    0 8px 20px rgba(58, 55, 50, 0.028),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.recruitment__role::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(199, 161, 91, 0.72), rgba(199, 161, 91, 0.12));
  pointer-events: none;
}

.recruitment__role-title {
  display: block;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.02rem, 2.8vw, 1.22rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.016em;
  color: rgba(42, 33, 28, 0.94);
}

.final-cta {
  padding-block: clamp(var(--space-lg), 7vw, calc(var(--space-xl) + 0.25rem));
  background: var(--color-page);
}

.final-cta__card {
  display: grid;
  justify-items: center;
  gap: 1rem;
  text-align: center;
  padding: clamp(1.35rem, 4vw, 2rem);
  border: 1px solid rgba(184, 148, 72, 0.16);
  border-top-color: transparent;
  border-radius: calc(var(--radius-lg) + 2px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 244, 237, 0.86)),
    linear-gradient(135deg, rgba(184, 148, 72, 0.06), rgba(184, 148, 72, 0));
  box-shadow: 0 10px 24px rgba(58, 55, 50, 0.04);
}

.final-cta__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4.2vw, 2.2rem);
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--color-charcoal);
}

@media (min-width: 768px) {
  .stats__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(100%, 58rem);
    margin-inline: auto;
    gap: 1rem;
  }

  .stats__item:last-child {
    grid-column: auto;
  }

  .stats__item {
    min-height: 5.55rem;
    padding: 1rem 1.05rem 0.96rem 1.12rem;
  }

  .stats__value {
    font-size: clamp(2.05rem, 2.2vw, 2.42rem);
  }

  .stats__label {
    max-width: 10.5rem;
    font-size: 0.73rem;
    line-height: 1.22;
  }

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

@media (min-width: 1024px) {
  .header {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0)),
      linear-gradient(135deg, rgba(63, 11, 22, 0.995) 0%, rgba(96, 19, 35, 0.986) 58%, rgba(126, 29, 48, 0.952) 100%);
  }

  .header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    row-gap: 0;
    column-gap: 0;
    gap: clamp(0.72rem, 1.3vw, 1.08rem);
    min-height: calc(var(--header-h) - 0.1rem);
    padding-block: 0.14rem 0.18rem;
  }

  .header__brand {
    align-self: center;
    justify-content: flex-start;
    gap: 0;
    padding-right: 0;
    flex: 0 0 auto;
  }

  .header__brand::after {
    display: none;
  }

  .header__inner > .header__toolbar {
    align-self: center;
    padding-left: 0;
    gap: 0.62rem;
    margin-top: 0;
  }

  .header__inner > .header__toolbar::before {
    display: none;
  }

  .header__inner > .nav {
    flex: 1 1 auto;
    justify-content: center;
    align-self: center;
    width: auto;
    max-width: 100%;
    transform: none;
    margin-top: 0;
  }

  .logo__img {
    height: 2.88rem;
  }

  .header__brand .logo {
    min-height: 0;
    padding: 0;
  }


  .header__microtag {
    display: block;
    align-self: center;
    max-width: none;
    margin-top: 0.16rem;
    text-align: center;
    white-space: nowrap;
    font-size: 0.58rem;
    line-height: 1.02;
    letter-spacing: 0.13em;
    color: rgba(226, 194, 122, 0.97);
    text-shadow: 0 1px 0 rgba(47, 8, 16, 0.36);
  }

  .nav {
    padding: 0.08rem 0.2rem;
    border-radius: 0;
    box-shadow: none;
  }

  .nav__link {
    padding: 0.52rem clamp(0.5rem, 0.72vw, 0.66rem) 0.6rem;
    font-size: clamp(0.8rem, 0.18vw + 0.79rem, 0.88rem);
  }

  .nav__link::after {
    bottom: 0.34rem;
  }

  .nav__link--cta {
    padding-inline: 0.78rem;
  }

  .lang-dropdown__toggle {
    min-height: 2.28rem;
    min-width: 4.54rem;
    font-size: 0.68rem;
    border-radius: 12px;
  }

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

  .about__grid--single {
    display: block;
  }

  .about__grid--single::before {
    inset: 0;
  }

  .about__grid--single .about__content {
    max-width: none;
  }

  .statement .why__seal {
    padding: clamp(1.55rem, 2.25vw, 2rem) clamp(1.45rem, 2.3vw, 1.95rem);
  }

  .recruitment .container {
    max-width: min(72rem, calc(var(--max-w) - 4rem));
  }

  .recruitment__intro {
    position: relative;
    width: min(100%, 54rem);
    margin-bottom: clamp(0.7rem, 1vw, 0.85rem);
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    text-align: center;
  }

  .recruitment__intro .section-head__title,
  .recruitment__intro .section-head__title--left {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .recruitment__intro .section-head__title::after,
  .recruitment__intro .section-head__title--left::after {
    margin-left: auto;
    margin-right: auto;
  }

  .recruitment__intro::after {
    content: "";
    display: block;
    width: min(3.6rem, 14%);
    height: 1px;
    margin-top: 0.72rem;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(90deg, rgba(199, 161, 91, 0.72), rgba(199, 161, 91, 0.12));
  }

  .recruitment__roles {
    width: min(100%, 52rem);
    margin-top: 0.95rem;
    margin-left: auto;
    margin-right: auto;
    gap: 1rem;
    padding: 0.26rem 0 0.2rem;
  }

  .recruitment__role {
    min-height: 5.1rem;
    padding: 0.98rem 0.84rem 0.9rem;
    border-radius: calc(var(--radius-md) - 1px);
  }

  .recruitment__role-title {
    font-size: clamp(1.08rem, 1.05vw, 1.2rem);
    letter-spacing: -0.014em;
  }
}

/* --------------------------------------------------------------------------
   Premium redesign overrides (Ivory / Warm Gray / Soft Gold)
   -------------------------------------------------------------------------- */
:root {
  --color-red: #c6a96a;
  --color-red-soft: rgba(198, 169, 106, 0.1);
  --color-red-hover: #b7995d;
  --color-mahogany: #2e2a26;
  --color-charcoal: #2b2b2b;
  --color-white: #f8f5f1;
  --color-text-light: #f6f3ef;
  --color-muted: #66605a;
  --color-border: #d6cec5;
  --color-surface: #e7e2dc;
  --color-page: #f6f3ef;
  --color-gold: #c6a96a;
  --color-gold-light: #d1b57a;
  --color-gold-soft: rgba(198, 169, 106, 0.14);
  --shadow-xs: 0 2px 6px rgba(46, 42, 38, 0.04);
  --shadow-sm: 0 14px 36px rgba(46, 42, 38, 0.07);
  --shadow-card: 0 2px 8px rgba(46, 42, 38, 0.04), 0 18px 40px rgba(46, 42, 38, 0.06);
}

body {
  color: var(--color-charcoal);
  background:
    radial-gradient(circle at top, rgba(198, 169, 106, 0.06), rgba(198, 169, 106, 0) 24%),
    linear-gradient(180deg, #faf8f4 0%, var(--color-page) 30%, #f3eee8 100%);
}

a {
  color: #8f7648;
}

a:hover {
  text-decoration-color: rgba(198, 169, 106, 0.34);
}

.header {
  background:
    linear-gradient(180deg, rgba(248, 245, 241, 0.95), rgba(238, 233, 227, 0.92)),
    rgba(246, 243, 239, 0.94);
  border-bottom: 1px solid rgba(214, 206, 197, 0.9);
  box-shadow:
    0 14px 34px rgba(46, 42, 38, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: visible;
}

.header::before {
  background:
    radial-gradient(circle at 10% 10%, rgba(198, 169, 106, 0.1), rgba(198, 169, 106, 0) 24%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
  opacity: 1;
}

.header::after {
  background: linear-gradient(90deg, rgba(198, 169, 106, 0), rgba(198, 169, 106, 0.52), rgba(198, 169, 106, 0));
}

.header .logo__img {
  filter: drop-shadow(0 4px 10px rgba(46, 42, 38, 0.06));
}

.header__microtag {
  color: rgba(143, 118, 72, 0.95);
  text-shadow: none;
}

.nav {
  background:
    linear-gradient(180deg, rgba(248, 245, 241, 0.98), rgba(232, 226, 220, 0.98)),
    rgba(246, 243, 239, 0.98);
  border: 1px solid rgba(214, 206, 197, 0.92);
  box-shadow: 0 16px 36px rgba(46, 42, 38, 0.09);
}

.nav__link {
  color: rgba(43, 43, 43, 0.82);
  border-radius: 12px;
}

.nav__link:hover {
  background: rgba(198, 169, 106, 0.08);
  color: rgba(43, 43, 43, 0.96);
}

.nav__link--current {
  color: rgba(43, 43, 43, 0.98);
  background:
    linear-gradient(180deg, rgba(198, 169, 106, 0.08), rgba(198, 169, 106, 0.04)),
    rgba(255, 255, 255, 0.5);
  box-shadow: inset 0 -1px 0 rgba(198, 169, 106, 0.46);
}

.nav__link--cta {
  color: #f6f3ef;
  border: 1px solid rgba(198, 169, 106, 0.24);
  background: linear-gradient(135deg, #c6a96a, #b59559);
  box-shadow: 0 10px 24px rgba(198, 169, 106, 0.16);
}

.nav__link--cta:hover {
  color: #f6f3ef;
  background: linear-gradient(135deg, #cfb276, #bc9d61);
  border-color: rgba(198, 169, 106, 0.3);
  box-shadow: 0 12px 28px rgba(198, 169, 106, 0.18);
}

.lang-dropdown__toggle {
  border-color: rgba(214, 206, 197, 0.96);
  background:
    linear-gradient(180deg, rgba(248, 245, 241, 0.98), rgba(232, 226, 220, 0.96)),
    rgba(246, 243, 239, 0.98);
  color: rgba(43, 43, 43, 0.88);
  box-shadow: 0 8px 20px rgba(46, 42, 38, 0.06);
}

.lang-dropdown__toggle:hover,
.lang-dropdown__toggle[aria-expanded="true"] {
  border-color: rgba(198, 169, 106, 0.34);
  background:
    linear-gradient(180deg, rgba(250, 247, 243, 1), rgba(235, 229, 222, 0.98)),
    rgba(246, 243, 239, 1);
  box-shadow: 0 10px 22px rgba(46, 42, 38, 0.08);
}

.lang-dropdown__current {
  color: rgba(43, 43, 43, 0.9);
  border-right-color: rgba(214, 206, 197, 0.92);
}

.lang-dropdown__caret {
  border-top-color: rgba(143, 118, 72, 0.9);
}

.lang-dropdown__list {
  background:
    linear-gradient(180deg, rgba(248, 245, 241, 0.99), rgba(231, 226, 220, 0.99)),
    rgba(246, 243, 239, 0.99);
  border-color: rgba(214, 206, 197, 0.96);
  box-shadow: 0 16px 36px rgba(46, 42, 38, 0.1);
}

.lang-dropdown__list .lang-dropdown__option {
  color: rgba(43, 43, 43, 0.84);
}

.lang-dropdown__list .lang-dropdown__option:hover,
.lang-dropdown__list .lang__btn--active {
  background: rgba(198, 169, 106, 0.1);
  color: rgba(43, 43, 43, 0.98);
}

.nav-toggle {
  border: 1px solid rgba(214, 206, 197, 0.96);
  background: rgba(248, 245, 241, 0.94);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(46, 42, 38, 0.05);
}

.nav-toggle__bar {
  background: rgba(114, 98, 74, 0.92);
}

.hero {
  background-color: #d7d0c7;
}

.hero::before {
  background: linear-gradient(
    102deg,
    rgba(246, 243, 239, 0.94) 0%,
    rgba(238, 233, 227, 0.84) 42%,
    rgba(82, 72, 61, 0.3) 100%
  );
}

.hero::after {
  inset: auto auto -14% 56%;
  width: min(36rem, 50vw);
  background: radial-gradient(circle, rgba(198, 169, 106, 0.18) 0%, rgba(198, 169, 106, 0.05) 36%, rgba(198, 169, 106, 0) 74%);
  filter: blur(18px);
}

.hero__eyebrow {
  border-color: rgba(214, 206, 197, 0.96);
  background: rgba(248, 245, 241, 0.78);
  box-shadow:
    0 10px 24px rgba(46, 42, 38, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  color: rgba(143, 118, 72, 0.94);
}

.hero__title {
  color: rgba(43, 43, 43, 0.98);
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.44),
    0 18px 36px rgba(46, 42, 38, 0.08);
}

.hero__lead {
  color: rgba(62, 58, 53, 0.9);
}

.hero__panel {
  border-color: rgba(214, 206, 197, 0.96);
  background:
    linear-gradient(180deg, rgba(248, 245, 241, 0.92), rgba(231, 226, 220, 0.9)),
    rgba(246, 243, 239, 0.92);
  box-shadow:
    0 16px 34px rgba(46, 42, 38, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.hero__panel-eyebrow {
  color: rgba(143, 118, 72, 0.88);
}

.hero__panel-title {
  color: rgba(43, 43, 43, 0.96);
}

.hero__panel-item + .hero__panel-item {
  border-top-color: rgba(214, 206, 197, 0.72);
}

.hero__panel-item-title {
  color: rgba(43, 43, 43, 0.9);
}

.hero__panel-item-text {
  color: rgba(98, 90, 82, 0.9);
}

.btn {
  min-height: 2.95rem;
  border-radius: 999px;
  font-size: 0.84rem;
  letter-spacing: 0.09em;
}

.btn--primary {
  background: linear-gradient(135deg, #c6a96a, #b59559);
  color: #f6f3ef;
  border-color: rgba(198, 169, 106, 0.24);
  box-shadow: 0 12px 26px rgba(198, 169, 106, 0.16);
}

.btn--primary:hover {
  background: linear-gradient(135deg, #cfb276, #bc9d61);
  color: #f6f3ef;
  border-color: rgba(198, 169, 106, 0.3);
  box-shadow: 0 14px 30px rgba(198, 169, 106, 0.18);
}

.btn--ghost,
.btn--secondary {
  background: rgba(248, 245, 241, 0.72);
  color: rgba(43, 43, 43, 0.88);
  border-color: rgba(214, 206, 197, 0.96);
  box-shadow: none;
}

.btn--ghost:hover,
.btn--secondary:hover {
  background: rgba(198, 169, 106, 0.08);
  border-color: rgba(198, 169, 106, 0.24);
  color: rgba(43, 43, 43, 0.98);
  box-shadow: none;
}

.hero .btn--ghost.btn--on-dark,
.hero .btn--on-dark,
.hero .btn--secondary.btn--on-dark {
  background: rgba(248, 245, 241, 0.76);
  color: rgba(43, 43, 43, 0.92);
  border-color: rgba(214, 206, 197, 0.92);
  box-shadow: 0 10px 22px rgba(46, 42, 38, 0.06);
}

.hero .btn--ghost.btn--on-dark:hover,
.hero .btn--on-dark:hover,
.hero .btn--secondary.btn--on-dark:hover {
  background: rgba(255, 255, 255, 0.92);
  color: rgba(43, 43, 43, 0.98);
  border-color: rgba(198, 169, 106, 0.28);
}

.section-head__title,
.card__title,
.why__card-title,
.final-cta__title,
.recruitment__role-title {
  color: rgba(43, 43, 43, 0.98);
}

.section-head__title::after {
  background: linear-gradient(90deg, rgba(198, 169, 106, 0.94), rgba(198, 169, 106, 0.18));
}

.section-head__text,
.about__text,
.card__text,
.why__card-text,
.gallery .section-head__text,
.gallery-page__intro,
.gallery__copyright,
.stats__label {
  color: rgba(98, 90, 82, 0.92);
}

.services,
.about,
.why,
.stats,
.statement,
.gallery,
.recruitment,
.final-cta,
.gallery-page {
  background-color: transparent;
}

.services,
.stats,
.gallery,
.final-cta {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0)),
    transparent;
}

.about,
.statement,
.recruitment {
  background:
    linear-gradient(180deg, rgba(231, 226, 220, 0.58), rgba(231, 226, 220, 0.32)),
    transparent;
}

.services__intro,
.about__content,
.why__card,
.stats__item,
.statement .why__seal,
.recruitment__role,
.final-cta__card,
.gallery__frame,
.gallery-page__trigger {
  border: 1px solid rgba(214, 206, 197, 0.96);
  background:
    linear-gradient(180deg, rgba(248, 245, 241, 0.98), rgba(231, 226, 220, 0.92)),
    rgba(246, 243, 239, 0.96);
  box-shadow:
    0 12px 30px rgba(46, 42, 38, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.services__intro::before,
.card::before,
.stats__item::before,
.why__seal::before {
  background: linear-gradient(90deg, rgba(198, 169, 106, 0.88), rgba(198, 169, 106, 0.12));
}

.card {
  border-color: rgba(214, 206, 197, 0.92);
  background:
    linear-gradient(180deg, rgba(248, 245, 241, 0.98), rgba(231, 226, 220, 0.9)),
    rgba(246, 243, 239, 0.96);
  box-shadow: 0 12px 30px rgba(46, 42, 38, 0.05);
}

.card:hover,
.why__card:hover,
.gallery-page__trigger:hover {
  border-color: rgba(198, 169, 106, 0.3);
  box-shadow: 0 16px 34px rgba(46, 42, 38, 0.08);
}

.card__icon {
  color: #9c814d;
  background: rgba(198, 169, 106, 0.1);
  box-shadow: inset 0 0 0 1px rgba(198, 169, 106, 0.18);
}

.card:hover .card__icon,
.card--featured .card__icon,
.card--featured:hover .card__icon {
  color: #8f7648;
  background: rgba(198, 169, 106, 0.14);
}

.card--featured {
  border-color: rgba(198, 169, 106, 0.2);
}

.why__card-index,
.stats__value,
.why__seal-eyebrow,
.gallery__eyebrow {
  color: var(--color-gold);
}

.gallery__home-more-link {
  color: rgba(43, 43, 43, 0.88);
}

.gallery__home-more-link::after {
  background: linear-gradient(90deg, rgba(198, 169, 106, 0.88), rgba(198, 169, 106, 0.18));
}

.gallery__home-more-link:hover {
  color: rgba(43, 43, 43, 0.98);
}

.gallery__arrow-bg {
  background:
    linear-gradient(180deg, rgba(248, 245, 241, 0.98), rgba(231, 226, 220, 0.98)),
    rgba(246, 243, 239, 0.98);
  border: 1px solid rgba(214, 206, 197, 0.96);
  box-shadow: 0 10px 24px rgba(46, 42, 38, 0.07);
}

.gallery__arrow-icon {
  color: rgba(143, 118, 72, 0.92);
}

.gallery__arrow:hover .gallery__arrow-bg {
  border-color: rgba(198, 169, 106, 0.28);
  background:
    linear-gradient(180deg, rgba(250, 247, 243, 1), rgba(235, 229, 222, 0.98)),
    rgba(246, 243, 239, 1);
}

.gallery__arrow:hover .gallery__arrow-icon {
  color: rgba(43, 43, 43, 0.96);
}

.statement .why__seal-text,
.why__seal-text {
  color: rgba(58, 54, 49, 0.94);
}

.footer {
  background:
    radial-gradient(circle at top center, rgba(198, 169, 106, 0.08) 0%, rgba(198, 169, 106, 0) 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    #2e2a26;
  color: #f6f3ef;
  border-top: 1px solid rgba(198, 169, 106, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 -16px 36px rgba(46, 42, 38, 0.08);
}

.footer::before {
  background: linear-gradient(90deg, rgba(198, 169, 106, 0), rgba(198, 169, 106, 0.58), rgba(198, 169, 106, 0));
}

.footer .logo,
.footer .logo:hover,
.footer__channel,
.footer__channel:hover,
.footer__copy,
.footer__address {
  color: #f6f3ef;
}

.footer__tagline {
  color: rgba(246, 243, 239, 0.72);
}

.footer__contact-label,
.footer__channel-icon,
.footer__copy-accent,
.footer__copy-heart,
.footer__backtop::before {
  color: #c6a96a;
}

.footer__channel:hover {
  background: linear-gradient(90deg, rgba(198, 169, 106, 0.08), rgba(198, 169, 106, 0));
}

.footer__copy {
  border-top-color: rgba(198, 169, 106, 0.12);
  color: rgba(246, 243, 239, 0.58);
}

.footer__backtop {
  border-color: rgba(198, 169, 106, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01)),
    rgba(246, 243, 239, 0.04);
  color: rgba(246, 243, 239, 0.9);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
}

.footer__backtop:hover {
  border-color: rgba(198, 169, 106, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.015)),
    rgba(246, 243, 239, 0.06);
  color: rgba(246, 243, 239, 0.98);
}

@media (max-width: 767px) {
  .recruitment__intro .section-head__title,
  .recruitment__intro .section-head__title--left {
    font-size: clamp(1.46rem, 5.4vw, 1.72rem);
    line-height: 1;
    letter-spacing: -0.026em;
  }

  .header {
    background:
      linear-gradient(180deg, rgba(248, 245, 241, 0.97), rgba(235, 229, 222, 0.95)),
      rgba(246, 243, 239, 0.96);
    box-shadow: 0 10px 24px rgba(46, 42, 38, 0.05);
  }

  .header__brand {
    max-width: calc(100% - 7.6rem);
  }

  .header__microtag {
    color: rgba(143, 118, 72, 0.94);
    letter-spacing: 0.09em;
  }

  .lang-dropdown__toggle {
    background: rgba(248, 245, 241, 0.96);
    border-color: rgba(214, 206, 197, 0.96);
    box-shadow: none;
  }

  .lang-dropdown__list {
    background:
      linear-gradient(180deg, rgba(248, 245, 241, 0.99), rgba(231, 226, 220, 0.99)),
      rgba(246, 243, 239, 0.99);
    box-shadow: 0 14px 28px rgba(46, 42, 38, 0.08);
  }

  .nav {
    background:
      linear-gradient(180deg, rgba(248, 245, 241, 0.99), rgba(231, 226, 220, 0.98)),
      rgba(246, 243, 239, 0.99);
    border: 1px solid rgba(214, 206, 197, 0.96);
    box-shadow: 0 14px 28px rgba(46, 42, 38, 0.08);
  }

  .nav .nav__link {
    color: rgba(43, 43, 43, 0.88);
    background: rgba(255, 255, 255, 0.38);
    border: 1px solid rgba(214, 206, 197, 0.78);
  }

  .nav .nav__link:hover,
  .nav .nav__link--current {
    background: rgba(198, 169, 106, 0.08);
    color: rgba(43, 43, 43, 0.98);
    border-color: rgba(198, 169, 106, 0.2);
    box-shadow: none;
  }

  .nav .nav__link--cta,
  .nav .nav__link--cta:hover {
    color: #f6f3ef;
    background: linear-gradient(135deg, #c6a96a, #b59559);
    border-color: rgba(198, 169, 106, 0.28);
  }

  .hero::before {
    background: linear-gradient(
      180deg,
      rgba(246, 243, 239, 0.92) 0%,
      rgba(236, 231, 224, 0.8) 44%,
      rgba(82, 72, 61, 0.28) 100%
    );
  }

  .hero__title {
    color: rgba(43, 43, 43, 0.98);
    text-shadow:
      0 1px 0 rgba(255, 255, 255, 0.46),
      0 12px 24px rgba(46, 42, 38, 0.08);
  }

  .hero__lead {
    color: rgba(62, 58, 53, 0.92);
  }

  .hero__panel,
  .services__intro,
  .card,
  .why__card,
  .stats__item,
  .statement .why__seal,
  .recruitment__role,
  .final-cta__card {
    box-shadow: 0 10px 24px rgba(46, 42, 38, 0.05);
  }
}

@media (min-width: 768px) {
  .nav {
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .nav__list > li:not(:last-child)::after {
    background: linear-gradient(180deg, rgba(214, 206, 197, 0), rgba(214, 206, 197, 0.9), rgba(214, 206, 197, 0));
  }

  .nav__link {
    color: rgba(43, 43, 43, 0.78);
  }

  .nav__link::after {
    background: linear-gradient(90deg, rgba(198, 169, 106, 0), rgba(198, 169, 106, 0.76), rgba(198, 169, 106, 0));
  }

  .nav__link:hover,
  .nav__link--current {
    color: rgba(43, 43, 43, 0.98);
    background: transparent;
  }

  .nav__link--cta {
    color: #f6f3ef;
    background: linear-gradient(135deg, #c6a96a, #b59559);
    border-color: rgba(198, 169, 106, 0.28);
    box-shadow: 0 10px 24px rgba(198, 169, 106, 0.14);
  }

  .nav__link--cta:hover {
    color: #f6f3ef;
    background: linear-gradient(135deg, #cfb276, #bc9d61);
  }

  .lang-dropdown__toggle {
    background: rgba(248, 245, 241, 0.78);
    border-color: rgba(214, 206, 197, 0.92);
    box-shadow: none;
  }

  .lang-dropdown__toggle:hover,
  .lang-dropdown__toggle[aria-expanded="true"] {
    background: rgba(231, 226, 220, 0.68);
    box-shadow: none;
  }
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 1.5rem);
}

.contact-modal[hidden] {
  display: none;
}

.contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(46, 42, 38, 0.42);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  -webkit-tap-highlight-color: transparent;
}

.contact-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 54rem);
  max-height: min(92vh, 48rem);
  overflow: auto;
  border: 1px solid rgba(214, 206, 197, 0.96);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(248, 245, 241, 0.98), rgba(231, 226, 220, 0.96)),
    rgba(246, 243, 239, 0.98);
  box-shadow:
    0 24px 60px rgba(46, 42, 38, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.contact-modal__panel::before {
  content: "";
  position: absolute;
  left: 2rem;
  right: 2rem;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(198, 169, 106, 0), rgba(198, 169, 106, 0.78), rgba(198, 169, 106, 0));
  pointer-events: none;
}

.contact-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid rgba(214, 206, 197, 0.96);
  border-radius: 999px;
  background: rgba(248, 245, 241, 0.9);
  color: rgba(43, 43, 43, 0.86);
  font-size: 1.75rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  appearance: none;
}

.contact-modal__close:hover {
  background: rgba(198, 169, 106, 0.1);
  border-color: rgba(198, 169, 106, 0.28);
  color: rgba(43, 43, 43, 0.98);
}

.contact-modal__close:focus-visible {
  outline: 2px solid rgba(198, 169, 106, 0.88);
  outline-offset: 3px;
}

.contact-modal__head {
  padding: clamp(1.5rem, 4vw, 2.35rem) clamp(1.35rem, 4vw, 2.4rem) 1.15rem;
  border-bottom: 1px solid rgba(214, 206, 197, 0.74);
}

.contact-modal__eyebrow {
  margin: 0 0 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(143, 118, 72, 0.92);
}

.contact-modal__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.7rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: rgba(43, 43, 43, 0.98);
}

.contact-modal__intro {
  margin: 0;
  max-width: 34rem;
  color: rgba(98, 90, 82, 0.92);
  line-height: 1.75;
}

.contact-modal__grid {
  display: grid;
  gap: 1.15rem;
  padding: 1.15rem clamp(1.35rem, 4vw, 2.4rem) clamp(1.35rem, 4vw, 2.2rem);
}

.contact-modal__info,
.contact-modal__form {
  border: 1px solid rgba(214, 206, 197, 0.96);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(248, 245, 241, 0.96), rgba(236, 231, 224, 0.88)),
    rgba(246, 243, 239, 0.94);
  box-shadow:
    0 12px 30px rgba(46, 42, 38, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.contact-modal__info {
  display: grid;
  gap: 0.8rem;
  align-content: start;
  padding: 1.2rem 1.2rem 1.15rem;
}

.contact-modal__label {
  margin: 0 0 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(143, 118, 72, 0.92);
}

.contact-modal__email {
  display: inline-flex;
  align-items: center;
  width: 100%;
  min-height: 2.8rem;
  padding: 0.92rem 1rem;
  border: 1px solid rgba(198, 169, 106, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.42);
  color: rgba(43, 43, 43, 0.96);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 8px 18px rgba(46, 42, 38, 0.04);
  -webkit-tap-highlight-color: transparent;
}

.contact-modal__email:hover {
  text-decoration: none;
  border-color: rgba(198, 169, 106, 0.28);
  background: rgba(198, 169, 106, 0.08);
}

.contact-modal__hint {
  margin: 0;
  color: rgba(98, 90, 82, 0.84);
  font-size: 0.92rem;
  line-height: 1.65;
}

.contact-modal__form {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
}

.contact-modal__field {
  display: grid;
  gap: 0.45rem;
}

.contact-modal__field-label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  color: rgba(43, 43, 43, 0.84);
}

.contact-modal__field input,
.contact-modal__field textarea {
  width: 100%;
  border: 1px solid rgba(214, 206, 197, 0.96);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.66);
  color: rgba(43, 43, 43, 0.96);
  font: inherit;
  line-height: 1.5;
  padding: 0.95rem 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-modal__field textarea {
  min-height: 9rem;
  resize: vertical;
}

.contact-modal__field--file {
  align-content: start;
}

.contact-modal__file-shell {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 3.55rem;
  padding: 0.5rem;
  border: 1px solid rgba(214, 206, 197, 0.92);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(247, 243, 237, 0.84)),
    rgba(255, 255, 255, 0.7);
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 8px 18px rgba(46, 42, 38, 0.035);
}

.contact-modal__file-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
  -webkit-tap-highlight-color: transparent;
}

.contact-modal__file-button {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.5rem;
  padding: 0.72rem 1.02rem;
  border: 1px solid rgba(198, 169, 106, 0.18);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(198, 169, 106, 0.18), rgba(198, 169, 106, 0.07)),
    rgba(255, 255, 255, 0.52);
  color: rgba(88, 72, 42, 0.96);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    0 4px 10px rgba(198, 169, 106, 0.08);
}

.contact-modal__file-button::before {
  content: "";
  width: 0.82rem;
  height: 0.82rem;
  border: 1.6px solid currentColor;
  border-top: 0;
  border-left: 0;
  border-radius: 0.12rem 0.12rem 0.24rem 0.24rem;
  transform: rotate(45deg) translateY(-0.02rem);
  opacity: 0.9;
}

.contact-modal__file-name {
  min-width: 0;
  flex: 1 1 auto;
  padding-right: 0.2rem;
  color: rgba(90, 83, 76, 0.82);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.contact-modal__file-shell:focus-within {
  border-color: rgba(198, 169, 106, 0.36);
  box-shadow: 0 0 0 4px rgba(198, 169, 106, 0.12);
  background: rgba(255, 255, 255, 0.9);
}

.contact-modal__file-shell:hover {
  border-color: rgba(198, 169, 106, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(248, 244, 238, 0.9)),
    rgba(255, 255, 255, 0.76);
}

.contact-modal__form .btn {
  margin-top: 0.15rem;
  -webkit-tap-highlight-color: transparent;
}

.contact-modal__field input:focus,
.contact-modal__field textarea:focus {
  outline: none;
}

.contact-modal__field input:focus-visible,
.contact-modal__field textarea:focus-visible {
  border-color: rgba(198, 169, 106, 0.36);
  box-shadow: 0 0 0 4px rgba(198, 169, 106, 0.12);
  background: rgba(255, 255, 255, 0.9);
}

@media (min-width: 768px) {
  .contact-modal__panel {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .contact-modal__panel::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
  }

  .contact-modal__grid {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    align-items: start;
    gap: 1.2rem;
  }

  .contact-modal__info {
    position: sticky;
    top: 0;
  }

  .contact-modal__form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .contact-modal__form > .contact-modal__field:nth-child(3),
  .contact-modal__form > .contact-modal__field:nth-child(4),
  .contact-modal__form > .contact-modal__field:nth-child(5),
  .contact-modal__form > .btn {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .contact-modal {
    padding: 0.85rem;
  }

  .contact-modal__panel {
    max-height: calc(100dvh - 1.7rem);
    border-radius: 20px;
  }

  .contact-modal__panel::before {
    left: 1.2rem;
    right: 1.2rem;
  }

  .contact-modal__close {
    top: 0.8rem;
    right: 0.8rem;
    width: 2.55rem;
    height: 2.55rem;
  }

  .contact-modal__head {
    padding-top: 1.2rem;
    padding-right: 4rem;
  }

  .contact-modal__title {
    font-size: clamp(1.72rem, 7vw, 2.05rem);
  }

  .contact-modal__intro,
  .contact-modal__hint {
    font-size: 0.94rem;
    line-height: 1.6;
  }

  .contact-modal__grid {
    gap: 0.95rem;
    padding-top: 0.95rem;
  }

  .contact-modal__file-shell {
    align-items: stretch;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.62rem;
  }

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

  .contact-modal__file-name {
    width: 100%;
    padding-inline: 0.15rem;
    white-space: normal;
    overflow: visible;
    text-overflow: initial;
  }

  .contact-modal__info,
  .contact-modal__form {
    padding: 1rem;
    border-radius: 18px;
  }
}

/* --------------------------------------------------------------------------
   Prompt angajați — instalare aplicație (card flotant, dismissable)
   -------------------------------------------------------------------------- */
.emp-app {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 120;
  width: min(23rem, calc(100vw - 2rem));
  padding: 1.15rem 1.15rem 1.05rem;
  border-radius: 16px;
  background: linear-gradient(158deg, #1c1c1c 0%, #0e0e0e 100%);
  color: var(--color-text-light);
  border: 1px solid rgba(184, 148, 72, 0.34);
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.5),
    0 2px 8px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.32s ease, transform 0.32s ease;
}

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

.emp-app::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 2px;
  border-radius: 16px 16px 0 0;
  background: linear-gradient(90deg, transparent, var(--color-gold-light), transparent);
}

.emp-app__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 1.9rem;
  height: 1.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: rgba(248, 243, 234, 0.6);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.emp-app__close:hover {
  background: rgba(248, 243, 234, 0.08);
  color: var(--color-text-light);
}

.emp-app__body {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding-right: 1.6rem;
}

.emp-app__icon {
  flex-shrink: 0;
  width: 2.7rem;
  height: 2.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--color-gold-soft);
  border: 1px solid rgba(199, 161, 91, 0.4);
  color: var(--color-gold-light);
}

.emp-app__eyebrow {
  margin: 0;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold-light);
}

.emp-app__title {
  margin: 0.2rem 0 0;
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
}

.emp-app__desc {
  margin: 0.3rem 0 0;
  font-size: 0.86rem;
  line-height: 1.5;
  color: rgba(248, 243, 234, 0.78);
}

.emp-app__actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1rem;
}

.emp-app__cta {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--touch-min);
  padding: 0.55rem 1rem;
  border-radius: 10px;
  background: linear-gradient(180deg, var(--color-gold-light), var(--color-gold));
  color: #171717;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: filter 0.2s ease, transform 0.15s ease;
}

.emp-app__cta:hover {
  filter: brightness(1.06);
  text-decoration: none;
  transform: translateY(-1px);
}

.emp-app__later {
  flex-shrink: 0;
  min-height: var(--touch-min);
  padding: 0.55rem 0.75rem;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: rgba(248, 243, 234, 0.7);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s ease;
}

.emp-app__later:hover {
  color: var(--color-text-light);
}

@media (max-width: 520px) {
  .emp-app {
    right: 0.75rem;
    left: 0.75rem;
    bottom: 0.75rem;
    bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
    width: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .emp-app {
    transition: opacity 0.2s ease;
    transform: none;
  }
}

/* --------------------------------------------------------------------------
   Împrospătare 2026 — mișcare discretă & micro-interacțiuni (aditiv)
   -------------------------------------------------------------------------- */

/* Scroll reveal — elementele apar fin la derulare (clasa adăugată din JS) */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s cubic-bezier(0.2, 0.65, 0.2, 1),
    transform 0.7s cubic-bezier(0.2, 0.65, 0.2, 1);
  will-change: opacity, transform;
}

.reveal.reveal--in {
  opacity: 1;
  transform: none;
}

/* Header: se strânge discret la derulare */
.header {
  transition: box-shadow 0.32s ease, background 0.32s ease;
}

.header__inner {
  transition: min-height 0.32s ease;
}

.header.is-scrolled {
  box-shadow:
    0 16px 34px rgba(47, 8, 16, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.header.is-scrolled .header__inner {
  min-height: 4.35rem;
}

.header__brand .logo,
.header__microtag {
  transition: transform 0.32s ease, opacity 0.32s ease;
}

.header.is-scrolled .header__microtag {
  opacity: 0;
  transform: translateY(-4px);
}

/* Hover pe reperele numerice și pe chip-urile de recrutare */
.stats__item,
.recruitment__role {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

@media (hover: hover) {
  .stats__item:hover,
  .recruitment__role:hover {
    transform: translateY(-3px);
    border-color: rgba(184, 148, 72, 0.36);
    box-shadow:
      0 18px 36px rgba(58, 55, 50, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.82);
  }
}

/* „Sheen" discret pe butoanele aurii, la hover */
.btn--primary,
.emp-app__cta {
  position: relative;
  overflow: hidden;
}

.btn--primary::after,
.emp-app__cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent,
    rgba(255, 255, 255, 0.32),
    transparent
  );
  transform: skewX(-18deg);
  pointer-events: none;
}

@media (hover: hover) {
  .btn--primary:hover::after,
  .emp-app__cta:hover::after {
    animation: bmar-sheen 0.85s ease;
  }
}

@keyframes bmar-sheen {
  to {
    left: 150%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.reveal--in {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .header.is-scrolled .header__microtag {
    opacity: 1;
    transform: none;
  }

  .btn--primary::after,
  .emp-app__cta::after {
    display: none;
  }
}
