/* ══════════════════════════════════════════════════
   TOKENS
══════════════════════════════════════════════════ */
:root {
  --bg: #f6f4f1;
  --dark: #191917;
  --text: #2d2b28;
  --muted: #8b877e;
  --border: rgba(25, 25, 23, 0.1);
  --gold: #c6a24a; /* matches the logo star */
  --gold-light: rgba(198, 162, 74, 0.15);
  --header-h: 72px;

  --font-display:
    "Syne", sans-serif; /* geometric editorial sans — distinctive, not overused */
  --font-ui:
    "Figtree", sans-serif; /* clean modern sans, good unicode for Azerbaijani */

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t: 0.26s;
}

/* ══════════════════════════════════════════════════
   RESET
══════════════════════════════════════════════════ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-ui);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
ul {
  list-style: none;
}

/* ══════════════════════════════════════════════════
   HEADER  —  floats over hero photo
══════════════════════════════════════════════════ */
.header {
  position: absolute;
  inset: 0 0 auto 0;
  width: 100%;
  z-index: 500;
  height: var(--header-h);
  /* white with slight blur so image beneath is hinted */
  background: transparent;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.header__inner {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: space-between;
}

/* ── Logo ─────────────────────────────────────── */
.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 52px;
}
.logo-img {
  height: 16px;
  width: auto;
  display: block;
}

/* ── Nav dropdown (Kataloq) ──────────────────── */
.nav__item--drop {
  position: relative;
}

.nav__link--drop {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav__caret {
  flex-shrink: 0;
  transition: transform var(--t) var(--ease);
}
.nav__item--drop:hover .nav__caret {
  transform: rotate(180deg);
}

.nav__drop {
  position: absolute;
  top: calc(100% + 8px);
  left: -20px;
  min-width: 210px;
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 6px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-5px);
  transition:
    opacity var(--t) var(--ease),
    transform var(--t) var(--ease);
  z-index: 200;
}
/* Transparent bridge fills the gap — mouse won't lose hover mid-air */
.nav__drop::before {
  content: '';
  position: absolute;
  top: -18px;
  left: 0;
  right: 0;
  height: 18px;
}
.nav__item--drop:hover .nav__drop {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.nav__drop-item {
  display: block;
  padding: 10px 20px 10px 22px;
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--muted);
  position: relative;
  transition:
    color var(--t) var(--ease),
    background var(--t) var(--ease);
}
/* gold left-bar reveal on hover */
.nav__drop-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) scaleY(0);
  width: 2px;
  height: 55%;
  background: var(--gold);
  transition: transform var(--t) var(--ease);
  transform-origin: center;
}
.nav__drop-item:hover::before {
  transform: translateY(-50%) scaleY(1);
}
.nav__drop-item:hover {
  color: var(--dark);
  background: var(--gold-light);
}

/* ── Center: nav ↔ search ────────────────────── */
.header__center {
  flex: 1;
  min-width: 0;
  position: relative;
  display: flex;
  align-items: center;
  /* padding keeps nav/search away from logo and right controls */
  padding: 0 16px 0 0;
  height: 100%;
}

/* Nav */
.header__nav {
  display: flex;
  align-items: center;
  transition: opacity var(--t) var(--ease);
}
.nav__list {
  display: flex;
  gap: 32px;
}
.nav__link {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg);
  position: relative;
  transition: color var(--t) var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--dark);
  transition: width var(--t) var(--ease);
}
.nav__link:hover {
  color: var(--dark);
}
.nav__link:hover::after {
  width: 100%;
}

/* Search field — occupies same area as nav, fades in over it */
.header__search-field {
  position: absolute;
  left: 0;
  right: 16px; /* matches center's right padding */
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t) var(--ease);
}

/* open states */
.header--search .header__nav {
  opacity: 0;
  pointer-events: none;
}
.header--search .header__search-field {
  opacity: 1;
  pointer-events: all;
}
.header--search .st-icon--search {
  opacity: 0;
}
.header--search .st-icon--close {
  opacity: 1;
}

/* ── Shared search row + dropdown ─────────────── */
.search-field__row {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--bg);
  padding-bottom: 5px;
  width: 100%;
}
.sf-icon {
  color: var(--muted);
  flex-shrink: 0;
}
.sf-input {
  flex: 1;
  min-width: 0;
  background: none;
  border: none;
  outline: none;
  font-family: var(--font-ui);
  font-size: 13.5px;
  font-weight: 300;
  letter-spacing: 0.03em;
  color: var(--text);
}
.sf-input::placeholder {
  color: var(--muted);
}
.sf-clear {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  color: var(--muted);
  padding: 2px;
  transition: color var(--t) var(--ease);
}
.sf-clear:hover {
  color: var(--dark);
}

/* Dropdown */
.sf-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: var(--bg);
  border: 1px solid var(--border);
  max-height: 380px;
  overflow-y: auto;
  display: none;
  z-index: 10;
}
.sf-dropdown.is-open {
  display: block;
}

.search-result {
  display: block;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background var(--t) var(--ease);
}
.search-result:last-child {
  border-bottom: none;
}
.search-result:hover {
  background: rgba(0, 0, 0, 0.03);
}
.search-result__cat {
  display: block;
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}
.search-result__name {
  font-size: 13.5px;
  color: var(--text);
}
.search-result--empty {
  font-size: 13px;
  color: var(--muted);
}

/* ── Search overlay (dims page below header) ─── */
.search-overlay {
  position: fixed;
  top: var(--header-h);
  inset-inline: 0;
  bottom: 0;
  background: rgba(20, 20, 18, 0.42);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t) var(--ease);
  z-index: 400;
}
.search-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

/* ── Right controls ───────────────────────────── */
.header__right {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

/* Search toggle button (search/close icons stacked) */
.header__search-toggle {
  position: relative;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: color var(--t) var(--ease);
}
.header__search-toggle:hover {
  color: var(--dark);
}
.st-icon {
  position: absolute;
  transition: opacity var(--t) var(--ease);
}
.st-icon--search {
  opacity: 1;
}
.st-icon--close {
  opacity: 0;
}

/* Language */
.header__lang {
  position: relative;
}
.lang__current {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--bg);
  padding: 4px;
  transition: color var(--t) var(--ease);
}
.lang__current:hover {
  color: var(--dark);
}
.lang__arrow {
  transition: transform var(--t) var(--ease);
}
.header__lang.is-open .lang__arrow {
  transform: rotate(180deg);
}

.lang__dropdown {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  min-width: 132px;
  background: var(--bg);
  border: 1px solid var(--border);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-5px);
  transition:
    opacity var(--t) var(--ease),
    transform var(--t) var(--ease);
  z-index: 50;
}
.header__lang.is-open .lang__dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.lang__option {
  display: block;
  padding: 11px 16px;
  font-size: 11px;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: var(--muted);
  transition:
    color var(--t) var(--ease),
    background var(--t) var(--ease);
}
.lang__option:hover,
.lang__option.is-active {
  color: var(--dark);
  background: rgba(0, 0, 0, 0.03);
}

/* Contact button — gold accent */
.header__contact-btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-ui);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bg);
  border: 1px solid var(--gold);
  padding: 9px 20px;
  white-space: nowrap;
  transition:
    background var(--t) var(--ease),
    color var(--t) var(--ease),
    border-color var(--t) var(--ease);
}
.header__contact-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

/* ── Mobile controls ──────────────────────────── */
.header__mobile-controls {
  display: none;
  align-items: center;
  gap: 20px;
}
.header__burger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 4px;
}
.burger__line {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--bg);
  transition:
    transform var(--t) var(--ease),
    opacity var(--t) var(--ease);
}
.header__burger.is-open .burger__line:nth-child(1) {
  transform: translateY(3.75px) rotate(45deg);
}
.header__burger.is-open .burger__line:nth-child(2) {
  transform: translateY(-3.75px) rotate(-45deg);
}

/* ══════════════════════════════════════════════════
   DRAWER  (mobile)
══════════════════════════════════════════════════ */
.drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(380px, 88vw);
  height: 100dvh;
  background: var(--bg);
  z-index: 600;
  overflow-y: auto;
  transition: right 0.38s var(--ease);
}
.drawer.is-open {
  right: 0;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 20, 18, 0.44);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 599;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t) var(--ease);
}
.drawer-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.drawer__inner {
  display: flex;
  flex-direction: column;
  gap: 44px;
  padding: 36px 32px 48px;
}

.drawer__search {
  position: relative;
}
.drawer__search .search-field__row {
  border-bottom: 1px solid var(--dark);
  padding-bottom: 8px;
}
.drawer__search .sf-dropdown {
  border: 1px solid var(--border);
  border-top: none;
}

.drawer__lang {
  display: flex;
  align-items: center;
  gap: 12px;
}
.dlang__option {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--t) var(--ease);
}
.dlang__option.is-active {
  color: var(--dark);
}
.dlang__sep {
  color: var(--border);
  font-size: 12px;
}

.drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.drawer__link {
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  transition: color var(--t) var(--ease);
}
.drawer__link:hover {
  color: var(--dark);
}

.drawer__contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dark);
  border: 1px solid var(--dark);
  padding: 14px 24px;
  margin-top: auto;
  transition:
    background var(--t) var(--ease),
    color var(--t) var(--ease);
}
.drawer__contact-btn:hover {
  background: var(--dark);
  color: var(--bg);
}

/* ══════════════════════════════════════════════════
   HERO  —  full 100vh, header floats over it
══════════════════════════════════════════════════ */
.hero {
  /* no padding-top — hero starts at 0, header overlays it */
  height: 100dvh;
  min-height: 560px;
}

.hero-swiper,
.hero-swiper .swiper-wrapper,
.hero-swiper .swiper-slide {
  height: 100%;
}

.hero__slide {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #d6d1ca; /* fallback */
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(48px, 7vh, 96px);
}

/* ── Gradient at top of image — backs the white header ── */
.hero__top-grad {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 220px;
  background: linear-gradient(
    to bottom,
    rgba(18, 18, 16, 0.48) 0%,
    rgba(18, 18, 16, 0.22) 50%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* ── Gradient at bottom — hero text legibility ── */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(18, 18, 16, 0.58) 0%,
    rgba(18, 18, 16, 0.18) 38%,
    transparent 60%
  );
  pointer-events: none;
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(246, 244, 241, 0.55);
  margin-bottom: 20px;
}
/* gold rule before eyebrow text */
.hero__eyebrow::before {
  content: "";
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: #f6f4f1;
  margin-bottom: 20px;
}
/* second line — thinner weight + gold */
.hero__title-accent {
  display: block;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.hero__subtitle {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: rgba(246, 244, 241, 0.68);
  margin-bottom: 44px;
  max-width: 440px;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-ui);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f6f4f1;
  border: 1px solid var(--gold);
  padding: 14px 36px;
  transition:
    background var(--t) var(--ease),
    color var(--t) var(--ease);
}
.hero__btn:hover {
  background: var(--gold);
  color: var(--dark);
}

/* ── Swiper controls ──────────────────────────── */
.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
  color: rgba(246, 244, 241, 0.55);
  width: 44px;
  height: 44px;
  transition: color var(--t) var(--ease);
}
.hero-swiper .swiper-button-prev:hover,
.hero-swiper .swiper-button-next:hover {
  color: rgba(246, 244, 241, 0.92);
}
.hero-swiper .swiper-button-prev::after,
.hero-swiper .swiper-button-next::after {
  font-size: 15px;
}

.hero-swiper .swiper-pagination {
  bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.hero-swiper .swiper-pagination-bullet {
  background: rgba(246, 244, 241, 0.4);
  opacity: 1;
  width: 26px;
  height: 1.5px;
  border-radius: 0;
  margin: 0 !important;
  transition:
    background var(--t) var(--ease),
    width var(--t) var(--ease);
}
.hero-swiper .swiper-pagination-bullet-active {
  background: #f6f4f1;
  width: 46px;
}

/* ══════════════════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════════════════ */
.about {
  background: var(--bg);
  border-top: 1px solid var(--gold);
  padding: 96px 0 112px;
}

.about__wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
}

/* ── Intro ─── */
.about__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 80px;
  align-items: flex-start;
  margin-bottom: 80px;
}

.s-eye {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.s-eye::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.about__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.2vw, 50px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--dark);
}

.about__intro-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  padding-bottom: 4px;
}

.about__desc {
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text);
}

.about__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dark);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
  transition:
    color var(--t) var(--ease),
    border-color var(--t) var(--ease);
}
.about__cta::after {
  content: "→";
  font-size: 12px;
  transition: transform var(--t) var(--ease);
}
.about__cta:hover {
  color: var(--gold);
}
.about__cta:hover::after {
  transform: translateX(4px);
}

/* ── Stats row ─── */
.about__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 3px;
}

.astat {
  padding: 44px 0 44px 40px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.astat:first-child {
  padding-left: 0;
}
.astat:last-child {
  border-right: none;
}

.astat__n {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(40px, 4vw, 60px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--dark);
}
.astat__sup {
  font-size: 0.45em;
  vertical-align: super;
  color: var(--gold);
  font-weight: 600;
}

.astat__l {
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Feature cards ─── */
.about__feats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.afeat {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition:
    border-color var(--t) var(--ease),
    background var(--t) var(--ease);
}
.afeat:hover {
  border-color: var(--gold);
  background: var(--gold-light);
}

.afeat__num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gold);
}

.afeat__title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
}

.afeat__text {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
  flex: 1;
}

/* ══════════════════════════════════════════════════
   CATALOG SECTION
══════════════════════════════════════════════════ */
.catalog {
  background: var(--dark);
  padding: 96px 0 112px;
}

.catalog__wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
}

.catalog__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 80px;
  align-items: end;
  margin-bottom: 56px;
}

/* override s-eye for dark bg */
.catalog__eye {
  color: rgba(246, 244, 241, 0.45);
}
.catalog__eye::before {
  background: var(--gold);
}

.catalog__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.2vw, 50px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--bg);
}

.catalog__head-desc {
  align-self: end;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(246, 244, 241, 0.5);
}

/* ── Desktop grid ─────────────────────────────── */
.catalog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

/* ── Mobile swiper (hidden on desktop) ──────────  */
.catalog-swiper {
  display: none;
}

/* ── Product card ────────────────────────────── */
.pcard {
  background: #1f1f1d;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: background var(--t) var(--ease);
}
.pcard:hover {
  background: #252523;
}

.pcard__img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  /* fallback gradient while image loads */
  background: linear-gradient(150deg, #2c2c28 0%, #222220 100%);
}

.pcard__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s var(--ease);
}
.pcard:hover .pcard__img {
  transform: scale(1.05);
}

/* dim overlay on hover */
.pcard__img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 18, 0);
  transition: background var(--t) var(--ease);
  pointer-events: none;
}
.pcard:hover .pcard__img-wrap::after {
  background: rgba(20, 20, 18, 0.18);
}

.pcard__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-ui);
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  padding: 4px 10px;
  z-index: 1;
}

.pcard__body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.pcard__title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--bg);
  transition: color var(--t) var(--ease);
}
.pcard:hover .pcard__title {
  color: var(--gold);
}

.pcard__desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.72;
  color: rgba(246, 244, 241, 0.5);
  flex: 1;
}

.pcard__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(246, 244, 241, 0.4);
  margin-top: 8px;
  transition: color var(--t) var(--ease);
}
.pcard__link-arrow {
  display: inline-block;
  transition: transform var(--t) var(--ease);
}
.pcard:hover .pcard__link {
  color: var(--gold);
}
.pcard:hover .pcard__link-arrow {
  transform: translateX(5px);
}

/* Swiper pagination dots on dark bg */
.catalog-swiper__pag .swiper-pagination-bullet {
  background: rgba(246, 244, 241, 0.3);
  opacity: 1;
}
.catalog-swiper__pag .swiper-pagination-bullet-active {
  background: var(--gold);
}

/* ══════════════════════════════════════════════════
   GOLDEN TRAIL
══════════════════════════════════════════════════ */
.gt {
  background: var(--bg);
  padding: 100px 0 0;
  border-top: 1px solid var(--gold);
}

.gt__wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.gt__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 64px;
}

.gt__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.15;
  margin-top: 20px;
}

.gt__desc {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1.8;
  padding-top: 8px;
}

/* 2×2 service grid — hairline borders via gap + bg trick */
.gt__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
}

.gsvc {
  background: var(--bg);
  padding: 44px 48px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background var(--t) var(--ease);
}

.gsvc:hover {
  background: #fff;
}

.gsvc__icon {
  width: 28px;
  height: 28px;
  color: var(--gold);
  flex-shrink: 0;
  margin-bottom: 6px;
}

.gsvc__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
}

.gsvc__text {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}

/* Full-bleed dark CTA strip */
.gt__cta {
  background: var(--dark);
  padding: 52px 40px;
  margin-top: 1px;
}

.gt__cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.gt__cta-text {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.45;
  max-width: 520px;
}

.gt__cta-btn {
  flex-shrink: 0;
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 14px 32px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity var(--t) var(--ease);
}

.gt__cta-btn:hover {
  opacity: 0.82;
}

/* ══════════════════════════════════════════════════
   PROCESS
══════════════════════════════════════════════════ */
.process {
  background: var(--bg);
  padding: 100px 0 108px;
  border-top: 1px solid var(--gold);
}

.process__wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.process__head {
  margin-bottom: 72px;
}

.process__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-top: 16px;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

/* Dashed line through the center of all step circles */
.process__steps::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 26px;
  right: 26px;
  border-top: 1px dashed rgba(198, 162, 74, 0.45);
  pointer-events: none;
}

.pstep__num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: 28px;
  background: var(--bg);
  position: relative;
  z-index: 1;
  transition:
    background var(--t) var(--ease),
    color var(--t) var(--ease);
}

.pstep:hover .pstep__num {
  background: var(--gold);
  color: #fff;
}

.pstep__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
}

.pstep__text {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
}

/* ══════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════ */
.contact {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 120px 40px;
  background-image: url("../assets/hero/form.png");
  background-size: cover;
  background-position: center;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 19, 17, 0.62);
  pointer-events: none;
}

.contact__card {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  width: 100%;
  max-width: 620px;
  padding: 56px 52px 60px;
}

.contact__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 12px;
}

.contact__sub {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 36px;
}

/* Form */
.cform__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cform__field {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.cform__label {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.cform__req {
  color: var(--gold);
}

.cform__input {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--dark);
  background: #fff;
  border: 1px solid rgba(25, 25, 23, 0.18);
  padding: 11px 14px;
  outline: none;
  transition: border-color var(--t) var(--ease);
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

.cform__input::placeholder {
  color: rgba(25, 25, 23, 0.3);
}

.cform__input:focus {
  border-color: var(--dark);
}
.cform__input.is-err {
  border-color: #b94040;
}
.cform__input.is-ok {
  border-color: #4a7c59;
}

.cform__err {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  color: #b94040;
  margin-top: 5px;
  min-height: 1em;
  display: block;
}

/* Select */
.cform__select-wrap {
  position: relative;
}

.cform__select {
  cursor: pointer;
  padding-right: 36px;
}

.cform__select-arrow {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
}

/* Textarea */
.cform__textarea {
  resize: vertical;
  min-height: 108px;
}

/* Submit button */
.cform__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--dark);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 15px 32px;
  border: none;
  cursor: pointer;
  margin-top: 8px;
  transition:
    background var(--t) var(--ease),
    opacity var(--t) var(--ease);
  letter-spacing: 0.03em;
}

.cform__btn:hover:not(:disabled) {
  background: var(--gold);
  color: var(--dark);
}
.cform__btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

/* Success state */
.cform__success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 40px 0 8px;
  color: var(--gold);
}

.cform__success.is-visible {
  display: flex;
}

.cform__success-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  margin: 0;
}

.cform__success-text {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--muted);
  margin: 0;
}

/* ══════════════════════════════════════════════════
   CONTACTS INFO
══════════════════════════════════════════════════ */
.contacts {
  display: flex;
  height: 520px;
}

.contacts__panel {
  width: 360px;
  flex-shrink: 0;
  background: #fff;
  padding: 56px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 4px 0 32px rgba(25, 25, 23, 0.08);
  position: relative;
  z-index: 1;
}

.contacts__title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 32px;
}

.contacts__list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.cinfo {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.cinfo__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-top: 1px;
}

.cinfo__text {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.55;
  padding-top: 7px;
  transition: color var(--t) var(--ease);
}

a.cinfo__text:hover { color: var(--gold); }

.contacts__map {
  flex: 1;
  min-width: 0;
}

.contacts__map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(246, 244, 241, 0.07);
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 40px 64px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 64px;
}

.footer__logo-img {
  height: 20px;
  width: auto;
  display: block;
  margin-bottom: 20px;
}

.footer__tagline {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(246, 244, 241, 0.45);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer__voen {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(246, 244, 241, 0.25);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer__col-title {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(246, 244, 241, 0.35);
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer__links a {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(246, 244, 241, 0.6);
  transition: color var(--t) var(--ease);
}

.footer__links a:hover { color: var(--gold); }

/* Bottom bar */
.footer__bottom {
  border-top: 1px solid rgba(246, 244, 241, 0.07);
}

.footer__bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer__copy {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(246, 244, 241, 0.28);
}

.footer__legal {
  display: flex;
  gap: 28px;
}

.footer__legal a {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(246, 244, 241, 0.28);
  transition: color var(--t) var(--ease);
}

.footer__legal a:hover { color: rgba(246, 244, 241, 0.6); }

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .header__inner {
    padding: 0 32px;
  }
  .header__logo {
    margin-right: 36px;
  }
  .nav__list {
    gap: 24px;
  }
  .hero__content {
    padding: 0 48px;
  }

  .about__wrap {
    padding: 0 48px;
  }
  .about__intro {
    gap: 0 48px;
  }
  .astat {
    padding: 36px 0 36px 28px;
  }
}

@media (max-width: 768px) {
  .header__center {
    display: none;
  }
  .header__right {
    display: none;
  }
  .header__mobile-controls {
    display: flex;
  }
  .header__inner {
    padding: 0 24px;
  }

  /* on mobile, logo still needs right margin since center is hidden */
  .header__logo {
    margin-right: 0;
  }

  .hero__content {
    padding: 0 24px;
  }
  .hero__subtitle {
    display: none;
  }
  .hero-swiper .swiper-button-prev,
  .hero-swiper .swiper-button-next {
    display: none;
  }

  /* Catalog — tablet/mobile: switch grid to 2-col, show swiper on mobile */
  .catalog {
    padding: 64px 0 80px;
  }
  .catalog__wrap {
    padding: 0 24px;
  }
  .catalog__head {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }
  .catalog__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* About — tablet/mobile */
  .about {
    padding: 64px 0 80px;
  }
  .about__wrap {
    padding: 0 24px;
  }

  .about__intro {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 56px;
  }
  .about__intro-right {
    gap: 24px;
  }

  .about__stats {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 3px;
  }
  .astat {
    padding: 32px 16px 32px 20px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .astat:nth-child(2n) {
    border-right: none;
  }
  .astat:nth-child(3),
  .astat:nth-child(4) {
    border-bottom: none;
  }
  .astat:first-child {
    padding-left: 20px;
  }

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

  /* Footer — tablet */
  .footer__inner       { grid-template-columns: 1fr 1fr; gap: 48px; padding: 56px 24px 48px; }
  .footer__brand       { grid-column: 1 / -1; }
  .footer__bottom-inner { padding: 20px 24px; }

  /* Contact — tablet */
  .contact {
    padding: 80px 24px;
  }
  .contact__card {
    padding: 48px 40px 52px;
  }

  /* Contacts info — tablet */
  .contacts        { flex-direction: column; height: auto; }
  .contacts__panel { width: 100%; padding: 48px 40px; box-shadow: none; border-bottom: 1px solid var(--border); }
  .contacts__map   { height: 360px; }

  /* Process — tablet: 2-col, hide line */
  .process__wrap {
    padding: 0 24px;
  }
  .process__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 48px;
  }
  .process__steps::before {
    display: none;
  }

  /* GT — tablet */
  .gt__intro {
    grid-template-columns: 1fr;
    gap: 0;
    padding-bottom: 48px;
  }
  .gt__desc {
    padding-top: 20px;
  }
  .gt__wrap {
    padding: 0 24px;
  }
  .gsvc {
    padding: 36px 28px;
  }
  .gt__cta {
    padding: 40px 24px;
  }
}

@media (max-width: 560px) {
  /* Catalog: hide grid, show swiper */
  .catalog__grid {
    display: none;
  }
  .catalog-swiper {
    display: block;
  }

  /* GT — mobile: single column */
  .gt__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .header__inner {
    padding: 0 20px;
  }
  .hero__eyebrow {
    display: none;
  }

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

  .catalog__wrap {
    padding: 0 16px;
  }

  /* Process — small mobile */
  .process__wrap {
    padding: 0 16px;
  }
  .process__steps {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  /* GT — small mobile */
  .gt__wrap {
    padding: 0 16px;
  }
  .gsvc {
    padding: 32px 20px;
  }
  .gt__cta {
    padding: 32px 16px;
  }
  .gt__cta-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  /* Footer — small mobile */
  .footer__inner        { grid-template-columns: 1fr; gap: 36px; padding: 48px 16px 40px; }
  .footer__bottom-inner { flex-direction: column; align-items: flex-start; gap: 12px; padding: 20px 16px; }
  .footer__legal        { gap: 16px; flex-wrap: wrap; }

  /* Contacts info — small mobile */
  .contacts__panel { padding: 40px 20px; }
  .contacts__map   { height: 280px; }

  /* Contact — small mobile */
  .contact {
    padding: 60px 16px;
    min-height: auto;
  }
  .contact__card {
    padding: 36px 24px 40px;
  }
  .cform__row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
