@charset "UTF-8";
/* =========================
   FONTS (preserved)
========================= */
/* Font weights */
/* =========================
   LAYOUT
========================= */
/* Breakpoints */
/* =========================
   COLORS (preserved)
========================= */
/* Backgrounds */
/* Text */
/* Accent */
/* Hairlines & dividers */
/* =========================
   SPACING (8pt rhythm)
========================= */
/* Section vertical rhythm */
/* =========================
   RADIUS
========================= */
/* =========================
   ELEVATION (low-key, institutional)
========================= */
/* =========================
   MOTION
========================= */
/* =========================
   TRACKING (letter-spacing)
========================= */
/* =========================
   RESET
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  background: none;
  border: none;
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}

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

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* =========================
   BASE
========================= */
body {
  min-height: 100vh;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: #0b2941;
  background: #faf3f2;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
  overflow-x: hidden;
}

.container {
  width: 1200px;
  max-width: 100%;
  padding-inline: 16px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .container {
    padding-inline: 24px;
  }
}

/* =========================
   TYPOGRAPHY
========================= */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poltawski Nowy", "Times New Roman", serif;
  font-weight: 700;
  color: #0b2941;
  line-height: 1.1;
  letter-spacing: -0.01em;
  font-feature-settings: "kern" 1, "liga" 1, "dlig" 1;
}

h1 {
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.015em;
}

h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.1;
}

h3 {
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.2;
}

h4 {
  font-size: 20px;
  line-height: 1.25;
}

h5 {
  font-size: 18px;
  line-height: 1.3;
}

h6 {
  font-size: 16px;
  line-height: 1.4;
}

p {
  font-size: 16px;
  line-height: 1.7;
}

/* Eyebrow / kicker label — small caps tracked label above section titles.
   Apply via class .eyebrow (or .kicker as alias) wherever desired. */
.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b08d4b;
}
.eyebrow::before,
.kicker::before {
  content: "";
  width: 32px;
  height: 1px;
  background: #b08d4b;
}
.eyebrow--center,
.kicker--center {
  justify-content: center;
}
.eyebrow--light,
.kicker--light {
  color: #e7d7bd;
}
.eyebrow--light::before,
.kicker--light::before {
  background: #e7d7bd;
}

/* Numerals tabular for figures / lists */
.tnum {
  font-variant-numeric: tabular-nums;
}

/* =========================
   FOCUS / A11Y
========================= */
:focus {
  outline: none;
}

:focus-visible {
  outline: 2px solid #b08d4b;
  outline-offset: 3px;
  border-radius: 2px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[role=button]:focus-visible {
  outline: 2px solid #b08d4b;
  outline-offset: 3px;
}

::selection {
  background: rgba(176, 141, 75, 0.32);
  color: #0b2941;
}

/* =========================
   MOTION PREFERENCE
========================= */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* =========================
   UTILITY: thin gold rule
========================= */
.rule {
  display: block;
  width: 56px;
  height: 1px;
  background: #b08d4b;
  margin: 18px 0;
}
.rule--center {
  margin-inline: auto;
}
.rule--light {
  background: rgba(255, 255, 255, 0.55);
}

/* =========================
   SCROLL REVEAL
========================= */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 800ms cubic-bezier(0.16, 1, 0.3, 1), transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
/* =========================
   BACKGROUND HELPERS
========================= */
.bg-dark {
  background: #0b2941;
}

.bg-beige {
  background: #e7d7bd;
}

.bg-light {
  background: #faf3f2;
}

/* =========================
   BUTTON
========================= */
.button {
  --btn-bg: #b08d4b;
  --btn-bg-hover: #9b7a3e;
  --btn-fg: #ffffff;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 30px;
  border-radius: 9999px;
  border: 1px solid var(--btn-bg);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--btn-fg);
  background: var(--btn-bg);
  cursor: pointer;
  transition: background 220ms cubic-bezier(0.2, 0.6, 0.2, 1), border-color 220ms cubic-bezier(0.2, 0.6, 0.2, 1), color 220ms cubic-bezier(0.2, 0.6, 0.2, 1), transform 150ms cubic-bezier(0.2, 0.6, 0.2, 1), box-shadow 220ms cubic-bezier(0.2, 0.6, 0.2, 1);
  /* Outline variant — for use on light backgrounds */
  /* On-dark variant */
  /* Compact */
}
.button::after {
  content: "";
  width: 16px;
  height: 1px;
  background: currentColor;
  transition: width 220ms cubic-bezier(0.16, 1, 0.3, 1), transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: right center;
}
.button:hover {
  background: var(--btn-bg-hover);
  border-color: var(--btn-bg-hover);
  box-shadow: 0 4px 12px rgba(11, 41, 65, 0.08);
}
.button:hover::after {
  width: 22px;
}
.button:active {
  transform: translateY(1px);
}
.button--ghost {
  --btn-bg: transparent;
  --btn-bg-hover: rgba(176, 141, 75, 0.12);
  --btn-fg: #b08d4b;
  border-color: #b08d4b;
}
.button--ghost:hover {
  color: #b08d4b;
}
.button--on-dark {
  --btn-bg: transparent;
  --btn-bg-hover: rgba(255, 255, 255, 0.10);
  --btn-fg: #ffffff;
  border-color: rgba(255, 255, 255, 0.55);
}
.button--sm {
  padding: 12px 22px;
  font-size: 13px;
}

/* =========================
   SECTION TITLE TREATMENT
   (works on existing __title classes via shared base)
========================= */
.services__title,
.approach__title,
.coverage__title,
.why__title,
.contacts__title,
.case-block__title,
.team__title,
.footer-cta__title {
  margin: 0 0 28px;
  position: relative;
  color: #0b2941;
}
.services__title::after,
.approach__title::after,
.coverage__title::after,
.why__title::after,
.contacts__title::after,
.case-block__title::after,
.team__title::after,
.footer-cta__title::after {
  content: "";
  display: block;
  width: 56px;
  height: 1px;
  background: #b08d4b;
  margin-top: 18px;
}

/* =========================
   HEADER
========================= */
.site-header {
  background: #0b2941;
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: padding 220ms cubic-bezier(0.2, 0.6, 0.2, 1), box-shadow 220ms cubic-bezier(0.2, 0.6, 0.2, 1), background 220ms cubic-bezier(0.2, 0.6, 0.2, 1);
  /* Desktop nav */
  /* Messengers */
}
.site-header.is-scrolled {
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06), 0 8px 24px rgba(0, 0, 0, 0.18);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-header__logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  transition: opacity 150ms cubic-bezier(0.2, 0.6, 0.2, 1);
}
.site-header__logo:hover {
  opacity: 0.86;
}
.site-header__logo-image {
  width: 178px;
  height: auto;
  display: block;
}
.site-header__nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.site-header__nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
}
.site-header__nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 10px 16px;
  border-radius: 9999px;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.02em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  transition: background 220ms cubic-bezier(0.2, 0.6, 0.2, 1), color 220ms cubic-bezier(0.2, 0.6, 0.2, 1);
}
.site-header__nav-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}
.site-header__nav-link--active {
  background: #b08d4b;
  color: #ffffff;
}
.site-header__nav-link--active:hover {
  background: #b08d4b;
  color: #ffffff;
}
.site-header__actions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-left: 10px;
  margin-left: 4px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}
.site-header__icon-link {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  color: #ffffff;
  background: transparent;
  transition: background 220ms cubic-bezier(0.2, 0.6, 0.2, 1), transform 220ms cubic-bezier(0.2, 0.6, 0.2, 1);
}
.site-header__icon-link:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}
.site-header__icon-link img {
  width: 16px;
  height: 16px;
  display: block;
}

/* =========================
   HEADER MOBILE (<= 960px)
========================= */
.site-header__burger, .site-header__overlay, .site-header__panel {
  display: none;
}
.site-header.is-open .site-header__overlay {
  opacity: 1;
  pointer-events: auto;
}
.site-header.is-open .site-header__panel {
  transform: translateX(0);
}
@media (max-width: 959.98px) {
  .site-header__nav {
    display: none;
  }
  .site-header__burger {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    cursor: pointer;
    padding: 0;
    transition: background 220ms cubic-bezier(0.2, 0.6, 0.2, 1);
  }
  .site-header__burger:hover {
    background: rgba(255, 255, 255, 0.16);
  }
  .site-header__burger-line {
    display: block;
    width: 20px;
    height: 1.5px;
    background: #ffffff;
    border-radius: 2px;
  }
  .site-header__overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms cubic-bezier(0.2, 0.6, 0.2, 1);
    z-index: 50;
  }
  .site-header__panel {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: min(86vw, 380px);
    background: #0b2941;
    z-index: 60;
    padding: 22px;
    transform: translateX(110%);
    transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.35);
  }
  .site-header__close {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    cursor: pointer;
    padding: 0;
    margin-left: auto;
  }
  .site-header__close-line {
    position: absolute;
    width: 18px;
    height: 1.5px;
    background: #ffffff;
    border-radius: 2px;
  }
  .site-header__close-line:first-child {
    transform: rotate(45deg);
  }
  .site-header__close-line:last-child {
    transform: rotate(-45deg);
  }
  .site-header__mobile-list {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
  }
  .site-header__mobile-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-radius: 6px;
    font-family: "Poltawski Nowy", "Times New Roman", serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: rgba(255, 255, 255, 0.92);
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    transition: color 220ms cubic-bezier(0.2, 0.6, 0.2, 1), padding-left 220ms cubic-bezier(0.2, 0.6, 0.2, 1);
  }
  .site-header__mobile-link::after {
    content: "→";
    font-family: "Poppins", Arial, sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1), color 220ms cubic-bezier(0.2, 0.6, 0.2, 1);
  }
  .site-header__mobile-link:hover {
    color: #ffffff;
    padding-left: 28px;
  }
  .site-header__mobile-link:hover::after {
    transform: translateX(4px);
    color: #b08d4b;
  }
  .site-header__mobile-link--active {
    color: #b08d4b;
  }
  .site-header__mobile-actions {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: inline-flex;
    gap: 10px;
  }
}

.is-locked {
  overflow: hidden;
}

/* =========================
   HERO  (v2 — display-grade)
========================= */
.hero {
  position: relative;
  overflow: hidden;
  background: #faf3f2;
}

/* Architectural left rail with hairline gold accent */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: max(20px, 50vw - 600px + 24px);
  width: 1px;
  background: linear-gradient(to bottom, rgba(176, 141, 75, 0) 0%, rgba(176, 141, 75, 0.45) 22%, rgba(176, 141, 75, 0.45) 78%, rgba(176, 141, 75, 0) 100%);
  z-index: 5;
  pointer-events: none;
}

/* Decorative corner brace (top-right) */
.hero::after {
  content: "";
  position: absolute;
  top: clamp(20px, 4vw, 40px);
  right: clamp(20px, 4vw, 40px);
  width: 56px;
  height: 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.55);
  border-right: 1px solid rgba(255, 255, 255, 0.55);
  z-index: 4;
  pointer-events: none;
}

.hero__media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 60vw;
  min-width: calc(100vw - 720px);
  overflow: hidden;
  /* Feather the LEFT edge of the photo block itself.
     The photo's own pixels fade to transparent so the cream bg shows through —
     no hard cutoff, no colored overlay. The transparent zone is wide enough
     that the text column on the left always reads against clean cream. */
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 28%, rgba(0, 0, 0, 0.25) 42%, rgba(0, 0, 0, 0.7) 58%, rgb(0, 0, 0) 75%);
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 28%, rgba(0, 0, 0, 0.25) 42%, rgba(0, 0, 0, 0.7) 58%, rgb(0, 0, 0) 75%);
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  transition: transform 14s linear;
}

.hero:hover .hero__image {
  transform: scale(1.1);
}

.hero__inner {
  min-height: 640px;
  display: flex;
  align-items: center;
  padding: clamp(96px, 12vw, 156px) 0 clamp(80px, 10vw, 130px);
}

.hero__content {
  max-width: 56%;
  position: relative;
  z-index: 10;
  padding-left: clamp(28px, 3.5vw, 56px);
}

.hero__title {
  margin: 0 0 24px;
  font-feature-settings: "kern" 1, "liga" 1, "dlig" 1;
  font-size: clamp(40px, 6.8vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.hero__subtitle {
  margin: 0 0 38px;
  padding: 18px 0 0 0;
  position: relative;
  font-family: "Poltawski Nowy", "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.3;
  color: rgba(11, 41, 65, 0.78);
  letter-spacing: -0.01em;
  max-width: 560px;
}
.hero__subtitle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 64px;
  height: 1px;
  background: #b08d4b;
}

.hero__text {
  margin: 0 0 44px;
  max-width: 540px;
}
.hero__text p {
  margin: 0 0 16px;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(11, 41, 65, 0.84);
}
.hero__text p:first-child {
  font-size: 18px;
  color: #0b2941;
  text-wrap: pretty;
}
.hero__text p:last-child {
  margin-bottom: 0;
}

.hero__button {
  margin-top: 4px;
}

@media (max-width: 959.98px) {
  .hero::before {
    left: 20px;
  }
  .hero::after {
    width: 36px;
    height: 36px;
    border-color: rgba(255, 255, 255, 0.6);
  }
  .hero__media {
    left: auto;
    right: auto;
    height: 100%;
    width: 100%;
    min-width: 100%;
    /* On mobile: drop the left-edge feather and use a top-to-bottom dark fade
       behind the text instead. */
    -webkit-mask-image: none;
    mask-image: none;
  }
  .hero__image {
    position: relative;
    z-index: 0;
  }
  .hero__media::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(
      to bottom,
      rgba(11, 41, 65, 0.78) 0%,
      rgba(11, 41, 65, 0.86) 55%,
      rgba(11, 41, 65, 0.94) 100%
    );
  }
  .hero__title,
  .hero__subtitle {
    color: #ffffff;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
  }
  .hero__subtitle {
    color: rgba(255, 255, 255, 0.94);
  }
  .hero__text p,
  .hero__text p:first-child {
    color: rgba(255, 255, 255, 0.94);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
  }
  .hero__inner {
    min-height: 560px;
    padding: 80px 0 72px;
    color: #ffffff;
  }
  .hero__content {
    max-width: 100%;
    padding-left: 24px;
  }
}
/* =========================
   BENEFITS (4 cards) — v2
========================= */
.benefits {
  background: #faf3f2;
  padding: clamp(72px, 9vw, 110px) 0;
  border-top: 1px solid rgba(11, 41, 65, 0.12);
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  counter-reset: nvs-benefit;
}

.benefits__card {
  padding: 40px 30px 36px;
  position: relative;
  counter-increment: nvs-benefit;
  transition: background 220ms cubic-bezier(0.2, 0.6, 0.2, 1);
  /* Top edge gold rule that grows on hover */
  /* Vertical hairline divider */
}
.benefits__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 1px;
  background: #b08d4b;
  transform-origin: left;
  transition: width 360ms cubic-bezier(0.16, 1, 0.3, 1);
}
.benefits__card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 32px;
  right: 0;
  bottom: 32px;
  width: 1px;
  background: linear-gradient(to bottom, rgba(11, 41, 65, 0) 0%, rgba(11, 41, 65, 0.16) 50%, rgba(11, 41, 65, 0) 100%);
}
.benefits__card:hover::before {
  width: 56px;
}

/* Serial numeral 01–04 in serif gold */
.benefits__numeral {
  display: block;
  margin-bottom: 28px;
  font-family: "Poltawski Nowy", "Times New Roman", serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #b08d4b;
  white-space: nowrap;
}
.benefits__numeral::before {
  content: counter(nvs-benefit, decimal-leading-zero);
}

/* Standalone SVG icon (used in Geography benefits cards) */
.benefits__icon {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 24px;
}
.benefits__icon img {
  width: 56px;
  height: 56px;
  display: block;
}

.benefits__title {
  margin: 0 0 16px;
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.benefits__text {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(11, 41, 65, 0.74);
  text-wrap: pretty;
}

@media (max-width: 1023.98px) {
  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .benefits__card {
    border-bottom: 1px solid rgba(11, 41, 65, 0.12);
  }
  .benefits__card::after {
    display: none;
  }
  .benefits__card:nth-child(odd):not(:last-child)::after {
    display: block;
    top: 32px;
    bottom: 32px;
  }
  .benefits__card:nth-last-child(-n+2) {
    border-bottom: none;
  }
}
@media (max-width: 599.98px) {
  .benefits {
    padding: 48px 0;
  }
  .benefits__grid {
    grid-template-columns: 1fr;
  }
  .benefits__card {
    padding: 28px 8px;
    border-bottom: 1px solid rgba(11, 41, 65, 0.12);
  }
  .benefits__card::after {
    display: none;
  }
  .benefits__card:last-child {
    border-bottom: none;
  }
}
/* =========================
   CTA FULL-WIDTH BANNER  (v2)
========================= */
.cta {
  position: relative;
  background: url("../images/cta-bg.png") center/cover no-repeat;
  background-attachment: fixed;
  padding: clamp(110px, 14vw, 180px) 0;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
}

.cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 41, 65, 0.55) 0%, rgba(11, 41, 65, 0.78) 100%);
}

/* Architectural top + bottom hairlines spanning the section */
.cta::before,
.cta::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: min(80%, 960px);
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.35) 50%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}

.cta::before {
  top: clamp(36px, 5vw, 64px);
}

.cta::after {
  bottom: clamp(36px, 5vw, 64px);
}

.cta__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}

.cta__logo {
  margin-bottom: 36px;
  position: relative;
  display: inline-block;
}
.cta__logo img {
  width: clamp(96px, 10vw, 140px);
  height: auto;
  display: inline-block;
  opacity: 0.96;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.3));
}

.cta__title {
  margin-bottom: 18px;
  color: #ffffff;
  font-size: clamp(34px, 5.6vw, 76px);
  line-height: 1;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.cta__title::after {
  display: none;
}

.cta__subtitle {
  margin: 0 auto;
  padding-top: 22px;
  position: relative;
  display: inline-block;
  font-family: "Poltawski Nowy", "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(20px, 2.2vw, 28px);
  letter-spacing: -0.01em;
  text-transform: none;
}
.cta__subtitle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 1px;
  background: #b08d4b;
}

.cta__button {
  font-size: 14px;
}

@media (max-width: 767.98px) {
  .cta {
    background-attachment: scroll;
  }
  .cta::before {
    top: 24px;
  }
  .cta::after {
    bottom: 24px;
  }
}
/* =========================
   SERVICES (Slick) — v2
========================= */
.services {
  padding: clamp(80px, 10vw, 130px) 0;
  background: #faf3f2;
}

.services__title {
  margin: 0 0 44px;
}

.services__slider {
  margin: 0;
  counter-reset: nvs-service;
}

.services__slider .slick-list {
  margin-right: -22px;
  padding: 30px 0 50px;
}

.services__slider .slick-slide {
  padding: 0;
  margin-right: 22px;
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  counter-increment: nvs-service;
  background: #ffffff;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid rgba(11, 41, 65, 0.12);
  box-shadow: 0 4px 14px rgba(11, 41, 65, 0.05);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  position: relative;
  transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 360ms cubic-bezier(0.16, 1, 0.3, 1), border-color 360ms cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: #b08d4b;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card:hover, .service-card:focus-visible {
  transform: translateY(-8px);
  box-shadow: 0 28px 50px rgba(11, 41, 65, 0.16);
  border-color: rgba(176, 141, 75, 0.4);
}
.service-card:hover::after, .service-card:focus-visible::after {
  transform: scaleX(1);
}

.service-card__media {
  width: 100%;
  aspect-ratio: 4/3;
  background: #ddd;
  overflow: hidden;
  position: relative;
  /* Soft top fade so the numeral reads clearly without darkening the whole photo */
  /* Serial numeral overlay top-left */
}
.service-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 41, 65, 0.38) 0%, rgba(11, 41, 65, 0) 32%);
  pointer-events: none;
}
.service-card__media::before {
  content: counter(nvs-service, decimal-leading-zero);
  position: absolute;
  top: 20px;
  left: 22px;
  z-index: 2;
  font-family: "Poltawski Nowy", "Times New Roman", serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}
.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.service-card:hover .service-card__media img,
.service-card:focus-visible .service-card__media img {
  transform: scale(1.07);
}

.service-card__body {
  padding: 32px 30px 34px;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}

.service-card__title {
  margin: 0 0 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(11, 41, 65, 0.12);
  font-size: clamp(22px, 1.8vw, 26px);
  line-height: 1.18;
  color: #0b2941;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.service-card__text {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(11, 41, 65, 0.76);
  flex: 1;
  text-wrap: pretty;
}

.service-card__body::after {
  content: "Read more →";
  display: inline-flex;
  align-self: flex-start;
  margin-top: 28px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b08d4b;
  transition: letter-spacing 220ms cubic-bezier(0.16, 1, 0.3, 1), padding-right 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-card__body::after,
.service-card:focus-visible .service-card__body::after {
  letter-spacing: 0.24em;
}

/* Slick arrows */
.services .slick-prev,
.services .slick-next {
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  background: #ffffff;
  border: 1px solid rgba(11, 41, 65, 0.12);
  z-index: 2;
  transition: background 220ms cubic-bezier(0.2, 0.6, 0.2, 1), border-color 220ms cubic-bezier(0.2, 0.6, 0.2, 1), transform 220ms cubic-bezier(0.2, 0.6, 0.2, 1);
}
.services .slick-prev:hover,
.services .slick-next:hover {
  background: #b08d4b;
  border-color: #b08d4b;
  transform: scale(1.05);
}

.services .slick-prev {
  left: -8px;
}

.services .slick-next {
  right: -8px;
}

@media (max-width: 720px) {
  .services .slick-prev,
  .services .slick-next {
    display: none !important;
  }
}

.services .slick-prev:before,
.services .slick-next:before {
  font-size: 18px;
  color: #0b2941;
  opacity: 1;
}

.services .slick-prev:hover:before,
.services .slick-next:hover:before {
  color: #ffffff;
}

/* Dots */
.services .slick-dots {
  bottom: -8px;
}
.services .slick-dots li {
  margin: 0 4px;
}
.services .slick-dots li button {
  width: 24px;
  height: 24px;
}
.services .slick-dots li button:before {
  color: #0b2941;
  opacity: 0.25;
  font-size: 8px;
  line-height: 24px;
  width: 24px;
  height: 24px;
  transition: opacity 220ms cubic-bezier(0.2, 0.6, 0.2, 1), color 220ms cubic-bezier(0.2, 0.6, 0.2, 1);
}
.services .slick-dots li.slick-active button:before {
  color: #b08d4b;
  opacity: 1;
}

@media (max-width: 959.98px) {
  .services {
    padding: 56px 0 64px;
  }
  .services__slider {
    margin: 0 -10px;
  }
  .services__slider .slick-slide {
    padding: 0 10px;
    margin-right: 0;
  }
  .services__slider .slick-list {
    margin-right: 0;
    padding: 20px 0;
  }
  .service-card__media {
    height: 220px;
  }
  .services .slick-prev {
    left: 6px;
  }
  .services .slick-next {
    right: 6px;
  }
}
/* =========================
   CASE BLOCK (image + 2 columns) — v2
   Numbered via section counter so headings (Shipbrokering, Advisory, etc.)
   pick up 01 / 02 / 03 automatically.
========================= */
.case-block {
  padding: clamp(72px, 9vw, 120px) 0;
  background: #faf3f2;
  counter-increment: nvs-case;
}

body {
  counter-reset: nvs-case;
}

.case-block__title {
  margin: 0 0 40px;
  display: flex;
  align-items: baseline;
  gap: 24px;
  flex-wrap: wrap;
  /* Place the serial numeral inline with the title */
  /* Override the global section-title rule placement: title still keeps its underline */
}
.case-block__title::before {
  content: counter(nvs-case, decimal-leading-zero);
  font-family: "Poltawski Nowy", "Times New Roman", serif;
  font-weight: 700;
  font-size: clamp(14px, 1.2vw, 16px);
  letter-spacing: 0.16em;
  color: #b08d4b;
  line-height: 1;
  padding-right: 18px;
  border-right: 1px solid #b08d4b;
  align-self: center;
  margin-bottom: 28px;
}

.case-block__card {
  background: #0b2941;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(11, 41, 65, 0.1);
  border-radius: 0;
  border: 1px solid rgba(11, 41, 65, 0.06);
}
.case-block__card--light .case-block__right {
  background: #e7d7bd;
}
.case-block__card--light .case-block__lead,
.case-block__card--light .case-block__right,
.case-block__card--light .case-block__label,
.case-block__card--light .case-block__list li,
.case-block__card--light .case-block__list li::before,
.case-block__card--light .case-block__note {
  color: #0b2941 !important;
}
.case-block__card--light .case-block__list li::before {
  background: #b08d4b !important;
}
.case-block__card--light .case-block__left {
  background: url(../images/grid-light.svg) left center/cover no-repeat;
}

.case-block__image {
  width: 100%;
  height: clamp(280px, 38vw, 480px);
  position: relative;
  overflow: hidden;
  /* Single soft bottom fade so the photo blends into the dark info panel below */
}
.case-block__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 41, 65, 0) 65%, rgba(11, 41, 65, 0.45) 100%);
  pointer-events: none;
}
.case-block__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.case-block__card:hover .case-block__image img {
  transform: scale(1.04);
}

.case-block__bottom {
  display: flex;
  align-items: stretch;
}

.case-block__left {
  flex: 1 1 50%;
  padding: clamp(40px, 5vw, 72px);
  min-height: clamp(280px, 38vw, 420px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  background: url("../images/grid-dark.svg") left center/cover no-repeat;
  position: relative;
}

.case-block__lead {
  margin: 0;
  font-family: "Poltawski Nowy", "Times New Roman", serif;
  font-weight: 700;
  color: #e7d7bd;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  max-width: 520px;
  position: relative;
  padding-left: 28px;
  text-wrap: balance;
}
.case-block__lead::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: #b08d4b;
}

.case-block__lead-sub {
  margin: 0;
  padding-left: 28px;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(231, 215, 189, 0.78);
  max-width: 520px;
}

.case-block__card--light .case-block__lead-sub {
  color: rgba(11, 41, 65, 0.74);
}

.case-block__right {
  flex: 1 1 50%;
  padding: clamp(40px, 5vw, 72px);
  background: #0b2941;
  color: rgba(255, 255, 255, 0.92);
  min-height: clamp(280px, 38vw, 420px);
  display: flex;
  align-items: center;
}

.case-block__label {
  margin: 0 0 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #e7d7bd;
}

.case-block__list {
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}
.case-block__list li {
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.94);
  position: relative;
  padding-left: 28px;
}
.case-block__list li:not(:last-child) {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.case-block__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 16px;
  height: 1px;
  background: #b08d4b;
}

.case-block__card--light .case-block__list li:not(:last-child) {
  border-bottom-color: rgba(11, 41, 65, 0.12);
}

.case-block__note {
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-family: "Poltawski Nowy", "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
  letter-spacing: -0.01em;
}

.case-block__card--light .case-block__label {
  color: #b08d4b !important;
  border-bottom-color: rgba(11, 41, 65, 0.18);
}

.case-block__card--light .case-block__note {
  border-top-color: rgba(11, 41, 65, 0.18);
  color: rgba(11, 41, 65, 0.7) !important;
}

@media (max-width: 959.98px) {
  .case-block {
    padding: 48px 0;
  }
  .case-block__image {
    height: 260px;
  }
  .case-block__bottom {
    flex-direction: column;
  }
  .case-block__left,
  .case-block__right {
    padding: 36px 22px;
    aspect-ratio: auto;
  }
  .case-block__lead {
    font-size: 22px;
  }
}
/* =========================
   OUR APPROACH
========================= */
.approach {
  position: relative;
  padding: clamp(64px, 9vw, 110px) 0 clamp(56px, 8vw, 96px);
  background: #e7d7bd;
  overflow: hidden;
}

.approach::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
  background: radial-gradient(1200px 240px at 60% 55%, rgba(11, 41, 65, 0.12), rgba(11, 41, 65, 0) 60%), radial-gradient(900px 220px at 30% 70%, rgba(11, 41, 65, 0.1), rgba(11, 41, 65, 0) 60%);
}

.approach > .container {
  position: relative;
  z-index: 1;
}

.approach__title {
  margin: 0 0 32px;
}

.approach__text {
  margin: 0 0 18px;
  max-width: 780px;
  font-family: "Poltawski Nowy", "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.4;
  color: rgba(11, 41, 65, 0.92);
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.approach__text:first-of-type::first-letter {
  /* subtle drop-cap on first paragraph */
  font-size: 1.4em;
  font-weight: 700;
  color: #b08d4b;
  line-height: 1;
}

.approach__lead {
  margin: 44px 0 36px;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b08d4b;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.approach__lead::before {
  content: "";
  width: 32px;
  height: 1px;
  background: #b08d4b;
}

.approach__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  counter-reset: nvs-approach;
}

.approach-card {
  padding: 36px 24px 32px;
  position: relative;
  border-right: 1px solid rgba(11, 41, 65, 0.18);
  counter-increment: nvs-approach;
}
.approach-card:last-child {
  border-right: none;
}
.approach-card::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 0;
  width: 32px;
  height: 1px;
  background: #b08d4b;
  transition: width 360ms cubic-bezier(0.16, 1, 0.3, 1);
}
.approach-card::after {
  content: counter(nvs-approach, decimal-leading-zero);
  position: absolute;
  top: 14px;
  right: 24px;
  font-family: "Poltawski Nowy", "Times New Roman", serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: rgba(11, 41, 65, 0.32);
}
.approach-card:hover::before {
  width: 64px;
}

.approach-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 4px;
  background: #0b2941;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  /* Faux gold corner accent on icon */
}
.approach-card__icon::after {
  content: "";
  position: absolute;
  top: -3px;
  right: -3px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #b08d4b;
  border-right: 1px solid #b08d4b;
}
.approach-card__icon img {
  width: 22px;
  height: 22px;
  display: block;
  filter: brightness(0) invert(1);
}

.approach-card__title {
  margin: 0;
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.22;
  color: #0b2941;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.approach__footer {
  margin: 36px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(11, 41, 65, 0.18);
  font-family: "Poltawski Nowy", "Times New Roman", serif;
  font-weight: 700;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.3;
  color: #0b2941;
  letter-spacing: -0.01em;
  font-style: italic;
}

@media (max-width: 959.98px) {
  .approach {
    padding: 56px 0 48px;
  }
  .approach__grid {
    grid-template-columns: 1fr;
  }
  .approach-card {
    border-right: none;
    border-bottom: 1px solid rgba(11, 41, 65, 0.18);
    padding: 24px 0;
  }
  .approach-card::before {
    left: 0;
  }
  .approach-card:last-child {
    border-bottom: none;
  }
}
/* =========================
   GLOBAL COVERAGE
========================= */
.coverage {
  padding: clamp(64px, 9vw, 110px) 0;
  background: #faf3f2;
}

.coverage__title {
  margin: 0 0 32px;
}

.coverage__wrap {
  position: relative;
}

.coverage__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.coverage-card {
  min-height: 380px;
  padding: clamp(40px, 5vw, 72px);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/2;
  display: flex;
  align-items: center;
  border-radius: 0;
}

.coverage-card--left {
  background: #0b2941;
  /* Decorative corner braces */
}
.coverage-card--left::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/grid-dark.svg") center/cover no-repeat;
  opacity: 0.55;
}
.coverage-card--left::after {
  content: "";
  position: absolute;
  top: 22px;
  left: 22px;
  width: 28px;
  height: 28px;
  border-top: 1px solid rgba(231, 215, 189, 0.55);
  border-left: 1px solid rgba(231, 215, 189, 0.55);
}

.coverage-card--left > * {
  position: relative;
  z-index: 1;
}

.coverage-card--right {
  background: url("../images/coverage-bg.png") center/cover no-repeat;
}
.coverage-card--right::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 41, 65, 0.55) 0%, rgba(11, 41, 65, 0.85) 100%);
  pointer-events: none;
}
.coverage-card--right::after {
  content: "";
  position: absolute;
  top: 22px;
  right: 22px;
  width: 28px;
  height: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.55);
  border-right: 1px solid rgba(255, 255, 255, 0.55);
  z-index: 1;
}

.coverage-card--right > * {
  position: relative;
  z-index: 1;
}

.coverage-card__big {
  margin: 0;
  font-family: "Poltawski Nowy", "Times New Roman", serif;
  font-weight: 700;
  font-size: clamp(24px, 2.8vw, 38px);
  line-height: 1.2;
  color: #e7d7bd;
  letter-spacing: -0.01em;
  max-width: 460px;
  position: relative;
  padding-left: 28px;
  text-wrap: balance;
}
.coverage-card__big::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: #b08d4b;
}

.coverage-card__text {
  margin: 0 0 20px;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.94);
  text-wrap: pretty;
}
.coverage-card__text:first-child {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 17px;
  color: #ffffff;
}
.coverage-card__text:last-child {
  margin-bottom: 0;
}

.coverage__ship {
  position: absolute;
  left: 50%;
  bottom: -16px;
  transform: translateX(-50%);
  width: clamp(140px, 18vw, 240px);
  height: auto;
  display: block;
  pointer-events: none;
  z-index: 3;
  filter: drop-shadow(0 12px 28px rgba(11, 41, 65, 0.45));
}

@media (max-width: 959.98px) {
  .coverage {
    padding: 56px 0 60px;
  }
  .coverage__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .coverage-card {
    padding: 36px 22px;
    min-height: auto;
    aspect-ratio: auto;
  }
  .coverage-card__big {
    font-size: 22px;
    max-width: 100%;
  }
  .coverage__ship {
    bottom: -16px;
    width: 110px;
  }
}
/* =========================
   WHY NVS
========================= */
.why {
  padding: clamp(64px, 9vw, 110px) 0;
  background: #faf3f2;
}

.why__title {
  margin: 0 0 36px;
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid rgba(11, 41, 65, 0.12);
  border-left: 1px solid rgba(11, 41, 65, 0.12);
  counter-reset: nvs-why;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 40px 32px;
  counter-increment: nvs-why;
  border-right: 1px solid rgba(11, 41, 65, 0.12);
  border-bottom: 1px solid rgba(11, 41, 65, 0.12);
  position: relative;
  transition: background 220ms cubic-bezier(0.2, 0.6, 0.2, 1);
}
.why-item:hover {
  background: rgba(255, 255, 255, 0.6);
}
.why-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 1px;
  background: #b08d4b;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
}
.why-item:hover::before {
  transform: scaleX(2.5);
}

.why-item__icon {
  width: 60px;
  height: 60px;
  border-radius: 4px;
  background: transparent;
  border: 1px solid rgba(11, 41, 65, 0.16);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  /* Numeral floating to the top-right of the icon */
}
.why-item__icon img {
  width: 24px;
  height: 24px;
  display: block;
  opacity: 0.92;
}
.why-item__icon::after {
  content: counter(nvs-why, decimal-leading-zero);
  position: absolute;
  top: -14px;
  right: -6px;
  font-family: "Poltawski Nowy", "Times New Roman", serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: #b08d4b;
}

.why-item__title {
  margin: 0 0 12px;
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.2;
  color: #0b2941;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.why-item__text {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(11, 41, 65, 0.74);
  max-width: 440px;
  text-wrap: pretty;
}

@media (max-width: 767.98px) {
  .why {
    padding: 56px 0 64px;
  }
  .why__grid {
    grid-template-columns: 1fr;
  }
  .why-item {
    padding: 24px 22px;
    gap: 18px;
  }
  .why-item__icon {
    width: 48px;
    height: 48px;
  }
}
/* =========================
   CONTACTS
========================= */
.contacts {
  padding: clamp(64px, 9vw, 110px) 0;
  background: #faf3f2;
}

.contacts__title {
  margin: 0 0 32px;
}

.contacts__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.contacts-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 4px;
  display: flex;
}

.contacts-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 41, 65, 0.78) 0%, rgba(11, 41, 65, 0.92) 100%);
  pointer-events: none;
}

.contacts-card--info {
  background: url("../images/contacts-bg.png") center/cover no-repeat;
}

.contacts-card--form {
  background: url("../images/grid-dark.svg") center/cover no-repeat;
}

.contacts-card__content,
.contacts-form {
  position: relative;
  z-index: 1;
  width: 100%;
}

/* LEFT info card */
.contacts-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 4vw, 64px);
  position: relative;
}

/* Decorative top-left corner brace */
.contacts-card__content::before {
  content: "";
  position: absolute;
  top: clamp(20px, 2vw, 32px);
  left: clamp(20px, 2vw, 32px);
  width: 32px;
  height: 32px;
  border-top: 1px solid rgba(231, 215, 189, 0.55);
  border-left: 1px solid rgba(231, 215, 189, 0.55);
}

.contacts__info-text {
  margin: 0;
  font-family: "Poltawski Nowy", "Times New Roman", serif;
  font-weight: 700;
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: #e7d7bd;
  max-width: 480px;
  text-wrap: balance;
}

.contacts__info-text--spaced {
  margin-top: 0;
  margin-bottom: 28px;
}

.contacts-info {
  margin-top: 36px;
  display: grid;
  width: 100%;
  gap: 22px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}
.contacts-info__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contacts-info__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.contacts-info__value {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #ffffff;
  text-decoration: none;
  transition: color 220ms cubic-bezier(0.2, 0.6, 0.2, 1);
  /* Override the heading font that comes from .contacts__info-text */
}
.contacts-info__value:hover {
  color: #b08d4b;
}
.contacts-info__value.contacts__info-text {
  font-family: "Poppins", Arial, sans-serif !important;
  font-weight: 300 !important;
  font-size: 18px !important;
  line-height: 1.5 !important;
  letter-spacing: 0 !important;
  color: #ffffff !important;
  max-width: none;
}

/* RIGHT FORM */
.contacts-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: clamp(36px, 4vw, 56px);
}

.contacts-form__heading {
  margin: 0 0 4px;
  font-family: "Poltawski Nowy", "Times New Roman", serif;
  font-weight: 700;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #e7d7bd;
}

.contacts-form__sub {
  margin: 0 0 12px;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  max-width: 380px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.form-input {
  width: 100%;
  padding: 14px 0;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.4;
  color: #ffffff;
  background: transparent;
  outline: none;
  transition: border-color 220ms cubic-bezier(0.2, 0.6, 0.2, 1);
}
.form-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.form-input:focus {
  border-bottom-color: #b08d4b;
}

.form-error {
  display: none;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 12px;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: #ffb4b4;
  margin-top: 4px;
}

.form-field.is-invalid .form-input {
  border-bottom-color: #ff7a7a;
}

.form-field.is-invalid .form-error {
  display: block;
}

.contacts-form__bottom {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

/* Checkbox */
.checkbox {
  display: inline-flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}

.checkbox__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checkbox__box {
  width: 16px;
  height: 16px;
  border-radius: 2px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  flex: 0 0 auto;
  position: relative;
  margin-top: 2px;
  transition: background 220ms cubic-bezier(0.2, 0.6, 0.2, 1), border-color 220ms cubic-bezier(0.2, 0.6, 0.2, 1);
}

.checkbox__text {
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 300;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
  max-width: 320px;
}

.checkbox__input:checked + .checkbox__box {
  background: #b08d4b;
  border-color: #b08d4b;
}

.checkbox__input:checked + .checkbox__box::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: 2px solid #ffffff;
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg);
}

.checkbox__input:focus-visible + .checkbox__box {
  box-shadow: 0 0 0 3px rgba(176, 141, 75, 0.35);
}

.contacts-form__submit {
  white-space: nowrap;
}

.contacts-form__submit:disabled {
  opacity: 0.45;
  pointer-events: none;
}

.contacts-form__status {
  margin-top: 4px;
  min-height: 18px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.92);
}

/* =========================
   CONTACTS — MINIMAL
========================= */
.contacts-min {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: url("../images/contacts-bg.png") center / cover no-repeat;
  min-height: 460px;
  display: flex;
}

.contacts-min__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 41, 65, 0.86) 0%, rgba(11, 41, 65, 0.94) 100%);
  pointer-events: none;
}

.contacts-min__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: clamp(48px, 6vw, 88px) clamp(32px, 5vw, 80px);
  display: flex;
  flex-direction: column;
}
.contacts-min__inner::before {
  content: "";
  position: absolute;
  top: clamp(20px, 2vw, 32px);
  left: clamp(20px, 2vw, 32px);
  width: 32px;
  height: 32px;
  border-top: 1px solid rgba(231, 215, 189, 0.55);
  border-left: 1px solid rgba(231, 215, 189, 0.55);
}

.contacts-min__eyebrow {
  display: inline-block;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b08d4b;
  margin-bottom: 18px;
}

.contacts-min__title {
  margin: 0 0 18px;
  font-family: "Poltawski Nowy", "Times New Roman", serif;
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #e7d7bd;
  max-width: 720px;
  text-wrap: balance;
}

.contacts-min__sub {
  margin: 0 0 44px;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  max-width: 620px;
}

.contacts-min__channels {
  list-style: none;
  margin: 0 0 40px;
  padding: 28px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.contacts-min__channel {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.contacts-min__label {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.contacts-min__value {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.4;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  word-break: break-word;
}
.contacts-min__value:hover {
  color: #b08d4b;
}
.contacts-min__value--svg {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.contacts-min__value--svg svg {
  display: block;
  height: 22px;
  width: auto;
}

.contacts-min__quick {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.contacts-min__quick-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid rgba(231, 215, 189, 0.32);
  background: transparent;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #ffffff;
  text-decoration: none;
  transition: border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1), background 0.25s cubic-bezier(0.4, 0, 0.2, 1), color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.contacts-min__quick-link img {
  width: 18px;
  height: 18px;
  display: block;
}
.contacts-min__quick-link:hover {
  border-color: #b08d4b;
  background: rgba(176, 141, 75, 0.16);
  color: #b08d4b;
}

@media (max-width: 720px) {
  .contacts-min__channels {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .contacts-min__inner {
    padding: 56px 24px 48px;
  }
}

/* intl-tel-input — match underline aesthetic */
.iti {
  width: 100%;
}

.iti--separate-dial-code .iti__selected-flag {
  background: transparent;
  border-radius: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.iti__selected-flag {
  padding-left: 0;
}

.iti--separate-dial-code .iti__selected-dial-code {
  color: #ffffff;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
}

.iti__country-list {
  background: #0b2941;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.iti__country.iti__highlight {
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 959.98px) {
  .contacts {
    padding: 56px 0 64px;
  }
  .contacts__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .contacts-card {
    min-height: auto;
  }
  .contacts-card__content,
  .contacts-form {
    padding: 32px 22px;
  }
  .contacts-form__bottom {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .contacts-form__submit {
    width: 100%;
  }
}
/* =========================
   POPUP
========================= */
.popup {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
}

.popup.is-open {
  display: block;
  animation: popup-fade 220ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes popup-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 41, 65, 0.65);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.popup__dialog {
  position: relative;
  width: min(520px, 100% - 32px);
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
  background: #faf3f2;
  border-radius: 6px;
  padding: 40px 36px 32px;
  box-shadow: 0 18px 44px rgba(11, 41, 65, 0.14);
  border-top: 3px solid #b08d4b;
  text-align: center;
  animation: popup-slide 360ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes popup-slide {
  from {
    opacity: 0;
    transform: translateY(calc(-50% + 16px));
  }
  to {
    opacity: 1;
    transform: translateY(-50%);
  }
}
.popup__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  border: none;
  background: rgba(11, 41, 65, 0.06);
  color: #0b2941;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  transition: background 220ms cubic-bezier(0.2, 0.6, 0.2, 1);
}
.popup__close:hover {
  background: rgba(11, 41, 65, 0.12);
}

.popup__title {
  margin: 0 0 12px;
  color: #0b2941;
  font-size: 26px;
  letter-spacing: -0.01em;
}

.popup__text {
  margin: 0 0 24px;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(11, 41, 65, 0.8);
}

.popup__button {
  margin-top: 6px;
}

/* =========================
   FOOTER  (v2)
========================= */
.footer {
  background: #0b2941;
  padding: 56px 0 36px;
  position: relative;
}

/* Hairline gold rule top of footer */
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(176, 141, 75, 0) 0%, rgba(176, 141, 75, 0.6) 30%, rgba(176, 141, 75, 0.6) 70%, rgba(176, 141, 75, 0) 100%);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 36px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo img {
  width: 168px;
  height: auto;
  display: block;
  opacity: 0.96;
}

.footer__center {
  text-align: center;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 300;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
}

.footer__policy {
  display: inline-block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  letter-spacing: 0.04em;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 500;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  transition: color 220ms cubic-bezier(0.2, 0.6, 0.2, 1), border-color 220ms cubic-bezier(0.2, 0.6, 0.2, 1), letter-spacing 220ms cubic-bezier(0.2, 0.6, 0.2, 1);
}
.footer__policy:hover {
  color: #b08d4b;
  border-bottom-color: #b08d4b;
  letter-spacing: 0.06em;
}

.footer__copyright {
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.5);
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__social-link {
  width: 38px;
  height: 38px;
  border-radius: 9999px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 220ms cubic-bezier(0.2, 0.6, 0.2, 1), border-color 220ms cubic-bezier(0.2, 0.6, 0.2, 1), transform 220ms cubic-bezier(0.2, 0.6, 0.2, 1);
}
.footer__social-link img {
  width: 14px;
  height: 14px;
  display: block;
  transition: transform 220ms cubic-bezier(0.2, 0.6, 0.2, 1);
}
.footer__social-link:hover {
  background: #b08d4b;
  border-color: #b08d4b;
  transform: translateY(-2px);
}
.footer__social-link:hover img {
  transform: scale(1.06);
}

@media (max-width: 767.98px) {
  .footer__inner {
    flex-direction: column;
    gap: 28px;
    text-align: center;
  }
  .footer__center {
    order: 3;
  }
}
/* =========================
   SECTION DIVIDER (editorial)
========================= */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin: 0 auto clamp(56px, 7vw, 88px);
  max-width: 360px;
  padding: 0 8px;
}

.section-divider__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(176, 141, 75, 0) 0%, rgba(176, 141, 75, 0.55) 100%);
}

.section-divider__line:last-child {
  background: linear-gradient(to left, rgba(176, 141, 75, 0) 0%, rgba(176, 141, 75, 0.55) 100%);
}

.section-divider__mark {
  width: 9px;
  height: 9px;
  background: #b08d4b;
  transform: rotate(45deg);
  flex-shrink: 0;
  position: relative;
}

.section-divider__mark::before,
.section-divider__mark::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 3px;
  height: 3px;
  background: #b08d4b;
  border-radius: 50%;
  transform: translateY(-50%) rotate(-45deg);
  opacity: 0.55;
}

.section-divider__mark::before {
  left: -16px;
}

.section-divider__mark::after {
  right: -16px;
}

/* =========================
   OUR PEOPLE (home page)
========================= */
.people {
  background: #faf3f2;
  padding: clamp(72px, 9vw, 110px) 0;
}

.people__head {
  max-width: 720px;
  margin: 0 auto clamp(40px, 5vw, 64px);
  text-align: center;
}

.people__eyebrow {
  display: inline-block;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b08d4b;
  margin-bottom: 18px;
}

.people__title {
  margin: 0 0 18px;
  font-family: "Poltawski Nowy", "Times New Roman", serif;
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #0b2941;
  text-wrap: balance;
}

.people__sub {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(11, 41, 65, 0.78);
}

.people__list {
  list-style: none;
  margin: 0 0 clamp(40px, 5vw, 56px);
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 56px);
}

/* Temporary modifier: balanced 2-card layout while one team member is hidden */
.people__list--two {
  grid-template-columns: repeat(2, minmax(180px, 280px));
  justify-content: center;
}

.people__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.people__avatar {
  width: clamp(120px, 14vw, 180px);
  height: clamp(120px, 14vw, 180px);
  border-radius: 50%;
  overflow: hidden;
  background: #e7d7bd;
  border: 1px solid rgba(11, 41, 65, 0.08);
  position: relative;
}

.people__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.people__item:hover .people__avatar img {
  transform: scale(1.05);
}

.people__avatar--zoom img {
  transform: scale(1.25);
  transform-origin: center 30%;
}

.people__item:hover .people__avatar--zoom img {
  transform: scale(1.32);
  transform-origin: center 30%;
}

.people__name {
  margin: 0;
  font-family: "Poltawski Nowy", "Times New Roman", serif;
  font-weight: 700;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #0b2941;
}

.people__role {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(11, 41, 65, 0.6);
}

.people__cta-wrap {
  display: flex;
  justify-content: center;
}

@media (max-width: 720px) {
  .people__list {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* =========================
   HERO SCROLL-DOWN ARROW
========================= */
.hero__scroll-down {
  position: absolute;
  left: clamp(48px, 6vw, 96px);
  bottom: clamp(20px, 3vw, 36px);
  z-index: 11;

  background: transparent;
  border: 0;
  padding: 8px 4px;
  cursor: pointer;

  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;

  color: #b08d4b;
  transition: color 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

.hero__scroll-down:hover {
  color: #0b2941;
}

.hero__scroll-down-rail {
  width: 1px;
  height: 36px;
  background: linear-gradient(
    to bottom,
    rgba(176, 141, 75, 0.1) 0%,
    rgba(176, 141, 75, 0.85) 100%
  );
  transition: background 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

.hero__scroll-down:hover .hero__scroll-down-rail {
  background: linear-gradient(
    to bottom,
    rgba(11, 41, 65, 0.1) 0%,
    rgba(11, 41, 65, 0.85) 100%
  );
}

.hero__scroll-down-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  animation: hero-scroll-bounce 2.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.hero__scroll-down-arrow svg {
  display: block;
}

@keyframes hero-scroll-bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(5px);
  }
  60% {
    transform: translateY(2px);
  }
}

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

@media (max-width: 720px) {
  .hero__scroll-down {
    display: none;
  }
}

/* =========================
   SCROLL TO TOP
========================= */
.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  background: #0b2941;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 220ms cubic-bezier(0.2, 0.6, 0.2, 1), transform 220ms cubic-bezier(0.2, 0.6, 0.2, 1), background 220ms cubic-bezier(0.2, 0.6, 0.2, 1), border-color 220ms cubic-bezier(0.2, 0.6, 0.2, 1);
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top:hover {
  background: #b08d4b;
  border-color: #b08d4b;
}

/* =========================
   TEAM
========================= */
.team {
  padding: clamp(64px, 9vw, 110px) 0;
  background: #faf3f2;
}

.team__header {
  margin-bottom: 36px;
}

.team__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  counter-reset: nvs-team;
}

.team-card {
  display: grid;
  grid-template-columns: minmax(380px, 460px) 1fr;
  background: #ffffff;
  border: 1px solid rgba(11, 41, 65, 0.12);
  border-radius: 0;
  overflow: hidden;
  position: relative;
  counter-increment: nvs-team;
  box-shadow: 0 4px 12px rgba(11, 41, 65, 0.08);
  transition: box-shadow 360ms cubic-bezier(0.16, 1, 0.3, 1), border-color 360ms cubic-bezier(0.16, 1, 0.3, 1);
  /* Faint serial numeral in top-right corner of content area */
}
.team-card:hover {
  box-shadow: 0 24px 48px rgba(11, 41, 65, 0.16);
  border-color: rgba(176, 141, 75, 0.4);
}
.team-card::before {
  content: counter(nvs-team, decimal-leading-zero);
  position: absolute;
  top: clamp(24px, 3vw, 36px);
  right: clamp(24px, 3vw, 44px);
  font-family: "Poltawski Nowy", "Times New Roman", serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  color: #b08d4b;
  z-index: 1;
  padding-bottom: 4px;
  border-bottom: 1px solid #b08d4b;
  line-height: 1;
}

.team-card__media {
  position: relative;
  background: #e5e5e5;
  min-height: 480px;
  /* Soft right-edge fade into the white info panel for visual continuity */
}
.team-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 75%, rgba(255, 255, 255, 0.18) 100%);
  pointer-events: none;
}
.team-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-card:hover .team-card__media img {
  transform: scale(1.04);
}

.team-card__content {
  padding: clamp(36px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.team-card__role {
  margin: 0 0 12px;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b08d4b;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.team-card__role::before {
  content: "";
  width: 32px;
  height: 1px;
  background: #b08d4b;
}

.team-card__name {
  margin: 0 0 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(11, 41, 65, 0.12);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.team-card__text p {
  margin: 0 0 14px;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 300;
  font-size: 15.5px;
  line-height: 1.78;
  color: rgba(11, 41, 65, 0.78);
  text-wrap: pretty;
}
.team-card__text p:first-child {
  font-family: "Poltawski Nowy", "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 1.6vw, 20px);
  line-height: 1.5;
  color: rgba(11, 41, 65, 0.92);
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(11, 41, 65, 0.12);
}
.team-card__text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 959.98px) {
  .team {
    padding: 56px 0;
  }
  .team-card {
    grid-template-columns: 1fr;
  }
  .team-card__media {
    aspect-ratio: 16/10;
    min-height: auto;
  }
  .team-card__media img {
    position: static;
    width: 100%;
    height: 100%;
  }
  .team-card__content {
    padding: 28px 22px;
  }
}

/*# sourceMappingURL=main.css.map */
