/* ================= BASE ================= */

:root {
  --nobilis-accent: #c9a24d;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: #000;
  color: #fff;
  margin: 0;
  padding: 0;
}

/* ================= HERO LOADER ================= */

#heroLoader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  transition: opacity 0.6s ease;
  pointer-events: all;
}

#heroLoader.is-done {
  opacity: 0;
  pointer-events: none;
}

#heroLoaderBar {
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--nobilis-accent);
  transition: width 0.15s linear;
}

#heroLoaderContent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  animation: loaderContentIn 1s ease forwards;
}

#heroLoaderBrand {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 26px;
  font-weight: 300;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--nobilis-accent);
  animation: loaderPulse 2.4s ease-in-out infinite;
}

#heroLoaderText {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

#heroLoaderDots span {
  opacity: 0;
  animation: dotFade 1.5s ease-in-out infinite;
}
#heroLoaderDots span:nth-child(1) { animation-delay: 0s; }
#heroLoaderDots span:nth-child(2) { animation-delay: 0.25s; }
#heroLoaderDots span:nth-child(3) { animation-delay: 0.5s; }

@keyframes loaderContentIn {
  from { opacity: 0; transform: translate(-50%, -46%); }
  to   { opacity: 1; transform: translate(-50%, -50%); }
}

@keyframes loaderPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}

@keyframes dotFade {
  0%, 100% { opacity: 0; }
  50%       { opacity: 1; }
}

/* ================= HERO ================= */
/* Full viewport hero behind navbar (like Vostok) */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: #000;
  overflow: hidden;
}

/* Video — full cover, behind overlay */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

/* Darkening overlay for contrast */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* Content — spans full width, vertically centered. text-align handles horizontal. */
.hero-content {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 2;
  padding: 0 24px;
  text-align: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-content.is-visible {
  opacity: 1;
}

/* Main title */
.hero-content h1 {
  font-size: 64px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin: 0;
}

/* Subtitle */
.hero-content p {
  margin-top: 20px;
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

/* CTA button (same style as Vostok) */
.hero-content .hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-top: 42px;
  padding: 14px 42px;

  background: #fff;
  color: #000 !important;

  text-decoration: none;
  border: none;
  outline: none;

  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;

  cursor: pointer;

  transition: background .25s ease, color .25s ease, transform .25s ease;
}

/* Kill ALL link states */
.hero-content .hero-btn:visited,
.hero-content .hero-btn:active,
.hero-content .hero-btn:focus {
  color: #000;
  text-decoration: none;
}

.hero-content .hero-btn:focus-visible {
  outline: 2px solid var(--nobilis-accent);
  outline-offset: 2px;
}

.hero-content .hero-btn:hover {
  background: var(--nobilis-accent);
  color: #000;
  transform: translateY(-2px);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 42px;
    letter-spacing: 0.18em;
  }

  .hero-content p {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  #heroLoaderBrand {
    font-size: 18px;
    letter-spacing: 0.28em;
    white-space: nowrap;
  }

  .hero-content h1 {
    font-size: 32px;
    letter-spacing: 0.14em;
  }

  .hero-content p {
    font-size: 11px;
    letter-spacing: 0.16em;
    margin-top: 14px;
  }

  .hero-content .hero-btn {
    margin-top: 28px;
    padding: 12px 32px;
    font-size: 11px;
  }
}

/* ================= EXCLUSIVE STRIP ================= */

.exclusive-strip {
  background: #fff;
  color: #000;
  padding: 56px 24px; /* keep size */
}

.exclusive-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* Eyebrow — Vostok-style */
.exclusive-eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--nobilis-accent);
  margin-bottom: 22px;
}

/* Main text container */
.exclusive-lines {
  display: flex;
  flex-direction: column;
  gap: 12px; /* spacing between lines */
}

/* Each line — THIS is the key fix */
.exclusive-lines span {
  display: block;
  font-size: 14px;                /* visually stronger */
  letter-spacing: 0.14em;         /* Vostok-like tracking */
  text-transform: uppercase;      /* luxury editorial feel */
  line-height: 1.6;
  color: #111;
  font-weight: 400;
}

/* ================= ARRIVALS ================= */

.arrivals {
  background: #fff;
  color: #000;
  padding: 80px 0 100px;
}

.arrivals-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 56px;
}

/* Header */
.arrivals-header {
  margin-bottom: 48px;
}

.arrivals-header h2 {
  font-size: 22px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.arrivals-header p {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #666;
  max-width: 560px;
}

/* Grid */
.arrivals-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: start;
}

/* Feature card */
.arrivals-feature {
  background: #111 url("../images/newarrivals/feature.webp") center/cover no-repeat;
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 420px;
  text-decoration: none;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Dark gradient overlay so text stays readable over any photo */
.arrivals-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.18) 60%, rgba(0,0,0,0.05) 100%);
  z-index: 0;
}

.arrivals-feature > * {
  position: relative;
  z-index: 1;
}

.feature-eyebrow {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--nobilis-accent);
  margin-bottom: 18px;
}

.feature-title {
  font-size: 20px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 32px;
  color: #fff;
}

.feature-cta {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 28px;
  background: #fff;
  color: #000;
  width: fit-content;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}

/* Hover — only highlight button when directly over it */
.feature-cta:hover {
  background: var(--nobilis-accent);
  color: #000;
  transform: translateY(-2px);
}


/* ================= PRODUCT SLIDER (ADMIN READY) ================= */

.arrivals-slider {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
}

.arrivals-track {
  display: flex;
  gap: 32px;
  min-height: 420px;
}

/* Hide the scrollbar (keep scrolling working) */
.arrivals-slider {
  scrollbar-width: none;      /* Firefox */
  -ms-overflow-style: none;   /* IE/Edge legacy */
}

.arrivals-slider::-webkit-scrollbar {
  display: none;              /* Chrome/Safari */
}

/* ===== Slider Arrows ===== */
.slider-wrap {
  position: relative;
  min-width: 0; /* respect grid column */
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 52px;
  height: 52px;
  border: none;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.10);
  color: #111;
  display: grid;
  place-items: center;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.slider-arrow:hover {
  background: #fff;
  transform: translateY(-50%) translateY(-2px);
}

.slider-arrow-left { left: -26px; }
.slider-arrow-right { right: -26px; }

.slider-arrow.is-hidden {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 768px) {
  .slider-arrow { display: none; }
}

/* Product cards now MATCH the editorial card vibe */
.product-card {
  background: #f4f4f4;     /* same as editorial */
  padding: 28px 26px;
  min-width: 340px;
  min-height: 420px;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  scroll-snap-align: start;

  text-decoration: none;
  color: #000;
}

.product-card img {
  width: 100%;
  height: 260px;          /* keep strong visual like Vostok */
  object-fit: cover;
  background: #e9e9e9;
  margin-bottom: 18px;
  display: block;
}

.product-card h3 {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #000;
}

.product-card .price {
  margin-top: 8px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #555;
}

/* ================= Responsive (KEPT, only adjusted for slider) ================= */

@media (max-width: 1200px) {
  .arrivals-grid {
    grid-template-columns: 1fr;
  }

  .arrivals-track {
    min-height: 0;
  }
}

@media (max-width: 768px) {
  .arrivals-inner {
    padding: 0 24px;
  }

  .arrivals-feature {
    min-height: 340px;
    padding: 36px 28px;
  }

  .product-card {
    min-width: 280px;
    min-height: 380px;
  }

  .arrivals-track .catalog-card {
    width: 240px;
    flex: 0 0 240px;
  }

  .product-card img {
    height: 220px;
  }
}

@media (max-width: 480px) {
  .arrivals {
    padding: 56px 0 72px;
  }

  .arrivals-inner {
    padding: 0 16px;
  }

  .arrivals-feature {
    min-height: 280px;
    padding: 28px 20px;
  }

  .product-card {
    min-width: 240px;
  }

  .arrivals-track .catalog-card {
    width: 210px;
    flex: 0 0 210px;
  }

  .arrivals-track {
    gap: 20px;
  }
}

/* ================= BRANDS HOVER (NEW SECTION) ================= */

.brands-hover {
  position: relative;
  width: 100%;
  height: 75vh;          /* not full viewport, like reference */
  min-height: 520px;
  background: #000;
  overflow: hidden;
}

.brands-hover-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.brands-hover-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 420ms ease;
  will-change: opacity;
}

.brands-hover-bg.is-visible {
  opacity: 1;
}

.brands-hover-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.28);
}

/* Pyramid layout */
.brands-hover-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 64px 56px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  align-items: center;
  justify-items: center;
}

/* Place items: 1st is top center, 2nd bottom-left, 3rd bottom-right */
.brands-hover-inner .brand-link:nth-child(1) {
  grid-column: 1 / 3;
  grid-row: 1;
  align-self: end;                 /* pulls Rolex down slightly */
  padding-bottom: 14px;            /* tighter pyramid */
}

.brands-hover-inner .brand-link:nth-child(2) {
  grid-column: 1;
  grid-row: 2;
  justify-self: center;            /* CHANGED: brings it inward */
  margin-right: 34px;              /* CHANGED: separation control */
}

.brands-hover-inner .brand-link:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
  justify-self: center;            /* CHANGED: brings it inward */
  margin-left: 34px;               /* CHANGED: separation control */
}

/* Link style */
.brand-link {
  text-decoration: none;
  text-transform: uppercase;

  /* CHANGED: smaller + cleaner */
  font-size: clamp(22px, 3.2vw, 46px);
  letter-spacing: 0.20em;
  line-height: 1.05;

  color: rgba(255,255,255,0.50);
  display: inline-block;
  position: relative;
}

/* “Liquid fill” effect: grey base + white overlay that grows left->right */
.brand-text {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

.brand-text::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  overflow: hidden;
  white-space: nowrap;
  color: rgba(255,255,255,0.96);
  transition: width 560ms ease;
  will-change: width;
}

/* Fill on hover AND when active (so the chosen one stays filled) */
.brand-link:hover .brand-text::after,
.brand-link.is-active .brand-text::after {
  width: 100%;
}

/* Slight brighten on hover */
.brand-link:hover {
  color: rgba(255,255,255,0.65);
}

@media (max-width: 768px) {
  .brands-hover {
    height: 62vh;
    min-height: 460px;
  }

  .brands-hover-inner {
    padding: 46px 32px;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 22px;
    align-content: center;
    justify-items: start;
  }

  .brands-hover-inner .brand-link:nth-child(1),
  .brands-hover-inner .brand-link:nth-child(2),
  .brands-hover-inner .brand-link:nth-child(3) {
    grid-column: auto;
    grid-row: auto;
    justify-self: start;
    margin-left: 0;
    margin-right: 0;
    padding-bottom: 0;
  }

  /* CHANGED: slightly smaller on mobile */
  .brand-link {
    font-size: clamp(20px, 7vw, 36px);
    letter-spacing: 0.16em;
  }

  /* Slow fill on mobile — left to right over 1.8s */
  .brand-text::after {
    transition: width 1800ms linear;
  }
}

@media (max-width: 480px) {
  .brands-hover {
    height: 52vh;
    min-height: 380px;
  }

  .brands-hover-inner {
    padding: 32px 16px;
    gap: 20px;
  }
}

/* ================= POPULAR SPLIT (FIXED FULL-BLEED) ================= */

.popular-split {
  background: #fff;
  color: #000;

  /* ✅ untie from brands hover (clear separation) */
  padding-top: 90px;
  padding-bottom: 90px;
}

/* ✅ each row is FULL WIDTH (no max-width, no side padding) */
.popular-row {
  width: 100%;
  margin: 0;

  display: grid;
  grid-template-columns: 1fr 1fr; /* ✅ image side + content side */
  gap: 0;                         /* ✅ no gap like Vostok */

  align-items: stretch;
  min-height: 640px;
}

/* ✅ second block should also be full width */
.popular-row--image-right {
  grid-template-columns: 1fr 1fr;
}

/* ✅ big static image should touch edges */
.popular-media {
  width: 100%;
  height: 100%;
  min-height: 640px;
  overflow: hidden;
  position: relative;
}

.popular-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

/* ✅ content should be “most left / most right” but still have inner padding */
.popular-content {
  width: 100%;
  height: 100%;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 64px 56px; /* inner spacing only */
}

/* ✅ title styling */
.popular-header h2 {
  margin: 0 0 22px;
  font-size: 20px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* ✅ product cards grid */
.popular-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

/* ✅ reuse exact same product-card, but allow grid sizing */
.popular-split .product-card {
  min-width: 0;
  width: 100%;
}

/* catalog-card sizing overrides for homepage contexts */

/* Prevent slider column from stretching to match the tall feature card */
.arrivals-slider,
.slider-wrap {
  align-self: start;
}

.arrivals-track .catalog-card {
  width: 260px;
  flex: 0 0 260px;
  scroll-snap-align: start;
}

.arrivals-track .catalog-card-media img {
  height: 220px;
}

.popular-split .catalog-card {
  min-width: 0;
  width: 100%;
}

.popular-split .catalog-card-media img {
  height: 340px;
}

/* ✅ spacing between block 1 and block 2 (like Vostok continuity) */
.popular-row + .popular-row {
  margin-top: 90px;
}

/* Responsive */
@media (max-width: 1200px) {
  .popular-row,
  .popular-row--image-right {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .popular-content {
    padding: 46px 24px;
  }

  .popular-media {
    min-height: 360px;
  }

  .popular-row + .popular-row {
    margin-top: 56px;
  }
}

@media (max-width: 768px) {
  .popular-split {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  /* Dissolve popular-content so its children (header, grid) become
     direct grid items of the row — enables CSS grid-area reordering */
  .popular-content {
    display: contents;
  }

  /* Row 1: title → image → cards */
  .popular-row--image-left {
    display: grid;
    grid-template-areas:
      "header"
      "image"
      "cards";
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    min-height: auto;
    gap: 0;
  }

  .popular-header {
    grid-area: header;
    padding: 0 20px 20px;
  }

  .popular-row--image-left .popular-media {
    grid-area: image;
    min-height: 240px;
    max-height: 300px;
  }

  .popular-row--image-left .popular-grid {
    grid-area: cards;
  }

  /* Row 2: image → cards */
  .popular-row--image-right {
    display: grid;
    grid-template-areas:
      "image"
      "cards";
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: auto;
    gap: 0;
    margin-top: 0 !important;
  }

  .popular-row--image-right .popular-media {
    grid-area: image;
    min-height: 240px;
    max-height: 300px;
  }

  .popular-row--image-right .popular-grid {
    grid-area: cards;
  }

  /* 2 cards per row, smaller images */
  .popular-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 16px 20px;
  }

  .popular-split .catalog-card-media img {
    height: 170px;
  }

  .popular-row + .popular-row {
    margin-top: 24px;
  }
}

/* ================= TRUST (HOMEPAGE ENDING) ================= */

.trust {
  position: relative;
  background: #000;
  color: #fff;
  padding: 110px 0 110px;
  overflow: hidden;
}

/* subtle luxury texture + vignette */
.trust::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 60% at 50% 35%, rgba(201, 162, 77, 0.10), rgba(0,0,0,0) 55%),
    repeating-linear-gradient(135deg,
      rgba(255,255,255,0.035) 0px,
      rgba(255,255,255,0.035) 2px,
      rgba(0,0,0,0) 2px,
      rgba(0,0,0,0) 14px
    );
  opacity: 0.40;
  pointer-events: none;
}

/* a very soft moving “sheen” */
.trust::after {
  content: "";
  position: absolute;
  top: -30%;
  left: -60%;
  width: 55%;
  height: 160%;
  background: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(201,162,77,0.08) 50%, rgba(0,0,0,0) 100%);
  transform: rotate(14deg);
  animation: trustSheen 9s ease-in-out infinite;
  pointer-events: none;
  opacity: 0.40;
}

@keyframes trustSheen {
  0%   { transform: translateX(0) rotate(14deg); opacity: 0.20; }
  50%  { transform: translateX(220%) rotate(14deg); opacity: 0.45; }
  100% { transform: translateX(0) rotate(14deg); opacity: 0.20; }
}

.trust-inner {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 56px;
  text-align: center;
}

.trust-header {
  max-width: 980px;
  margin: 0 auto 46px;
}

.trust-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--nobilis-accent);
  margin-bottom: 16px;
}

.trust-title {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 32px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1.25;
}

.trust-subtitle {
  margin: 16px auto 0;
  max-width: 780px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 40px;
}

.trust-card {
  position: relative;
  text-align: left;
  padding: 22px 22px 20px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow:
    0 10px 28px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.04);
  transition: transform 280ms ease, border-color 280ms ease, background 280ms ease, box-shadow 280ms ease;
  backdrop-filter: blur(2px);

  /* reveal animation start state */
  opacity: 0;
  transform: translateY(14px);
}

.trust-card.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms ease;
}

/* gold edge on hover */
.trust-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 162, 77,0.38);
  background: rgba(255,255,255,0.05);
  box-shadow:
    0 14px 42px rgba(0,0,0,0.62),
    0 0 0 1px rgba(201,162,77,0.10) inset;
}

.trust-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.trust-card h3 {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  line-height: 1.2;
}

.trust-card p {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.60);
  line-height: 1.7;
}

/* SVG icon style */
.trust-icon {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(201,162,77,0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,162,77,0.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  flex: 0 0 auto;
}

.trust-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: rgba(201,162,77,0.92);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.95;
}

/* CTA center */
.trust-cta {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.trust-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 42px;
  background: #fff;
  color: #000 !important;

  text-decoration: none;
  border: none;

  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;

  transition: background 250ms ease, color 250ms ease, transform 250ms ease;
}

.trust-btn:hover {
  background: var(--nobilis-accent);
  color: #000 !important;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1100px) {
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .trust-inner {
    padding: 0 22px;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .trust-card {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .trust {
    padding: 72px 0;
  }

  .trust-inner {
    padding: 0 16px;
  }

  .trust-grid {
    gap: 14px;
  }

  .trust-card {
    padding: 18px 16px 16px;
  }

  .trust-btn {
    padding: 12px 32px;
  }
}

/* ================= FOOTER ================= */

.site-footer {
  background: #0a0a0a;
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 56px 32px;
}

.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .logo-letter {
  font-size: 36px;
  display: block;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.06em;
  max-width: 30ch;
  color: rgba(255, 255, 255, 0.5);
}

.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 18px;
}

.footer-col a {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  padding: 5px 0;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--nobilis-accent);
}

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-social-link:hover {
  color: var(--nobilis-accent);
  border-color: rgba(201, 162, 77, 0.4);
}

.footer-social-link svg {
  display: block;
}

.footer-bottom {
  max-width: 1440px;
  margin: 42px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.3);
}

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

@media (max-width: 640px) {
  .site-footer {
    padding: 48px 22px 24px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 36px 16px 20px;
  }
  .footer-inner {
    gap: 22px;
  }
}