/* ─── Hero Section - Premium Reference Match ─── */
.skya-hero {
  --hero-bg: #F8F5F0;
  --hero-ink: #26313e;
  --hero-muted: #626b74;
  --hero-gold: #c49a62;
  width: min(96%, 1680px);
  margin: 0 auto 48px;
  padding: 0;
}

/* Outer card */
.skya-hero__card {
  position: relative;
  background: var(--hero-bg);
  border: 1px solid rgba(38, 49, 62, .08);
  border-radius: 28px;
  box-shadow: 0 20px 55px rgba(22, 33, 48, .10);
  overflow: hidden;
}

/* ─── Main layout: text left, image right ─── */
.skya-hero__layout {
  display: grid;
  grid-template-columns: minmax(360px, 34%) minmax(0, 66%);
}

/* ─── Left content area ─── */
.skya-hero__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 32px 42px 56px;
  background: linear-gradient(90deg, #F8F5F0 0%, #F8F5F0 72%, rgba(248,245,240,.88) 86%, rgba(248,245,240,0) 100%);
}

/* Logo */
.skya-hero__logo {
  width: min(280px, 80%);
  height: auto;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 24px;
}

/* ─── Typography ─── */
.skya-hero__title {
  margin: 0;
  color: var(--hero-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 2.9vw, 60px);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.035em;
}

.skya-hero__title span,
.skya-hero__title strong {
  display: block;
}

.skya-hero__title strong {
  color: var(--hero-gold);
  font-weight: 500;
}

/* Gold accent divider */
.skya-hero__accent {
  display: block;
  width: 40px;
  height: 2px;
  margin: 20px 0 14px;
  background: var(--hero-gold);
  border-radius: 1px;
}

/* Description */
.skya-hero__desc {
  max-width: 420px;
  margin: 0;
  color: var(--hero-muted);
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.55;
}

/* ─── Feature highlights ─── */
.skya-hero__features {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 26px;
  flex-wrap: wrap;
}

.skya-hero__feature {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  padding: 0 16px;
  border-left: 1px solid rgba(38,49,62,.14);
  color: var(--hero-ink);
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
}

.skya-hero__feature:first-child {
  padding-left: 0;
  border-left: 0;
}

.skya-hero__feature-icon-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}

.skya-hero__feature-icon {
  display: grid;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--hero-gold);
  border: 1.5px solid currentColor;
  border-radius: 8px;
  font-size: 15px;
  flex-shrink: 0;
}

/* ─── Right media area ─── */
.skya-hero__media {
  position: relative;
  min-width: 0;
  background: #ddd6cc;
  overflow: hidden;
}

.skya-hero__media-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Soft white-to-transparent fade overlay (left edge) */
.skya-hero__media-fade {
  position: absolute;
  inset: 0 auto 0 0;
  width: 18%;
  background: linear-gradient(90deg, rgba(248,245,240,.92) 0%, rgba(248,245,240,.70) 35%, rgba(248,245,240,.25) 70%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}

/* ─── Category cards row ─── */
.skya-hero__cats {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 8px;
  padding: 14px 20px 18px;
  background: transparent;
}

.skya-hero__cat-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  text-decoration: none;
  color: var(--hero-ink);
  background: rgba(255,255,255,.94);
  border: 2px solid rgba(255,255,255,.88);
  border-radius: 14px;
  box-shadow: 0 7px 22px rgba(28,39,50,.08);
  transition: transform .22s ease, box-shadow .22s ease;
}

.skya-hero__cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(28,39,50,.14);
}

.skya-hero__cat-img-wrap {
  display: block;
  aspect-ratio: 1.55 / 1;
  overflow: hidden;
  background: #ede9e2;
}

.skya-hero__cat-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
}

.skya-hero__cat-card:hover .skya-hero__cat-img {
  transform: scale(1.035);
}

.skya-hero__cat-name {
  display: grid;
  min-height: 38px;
  padding: 6px 4px;
  place-items: center;
  text-align: center;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: clamp(10px, .72vw, 13px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--hero-ink);
}

/* Collections heading — visible only on mobile */
.skya-hero__collections-heading {
  display: none;
}

/* ───────────────────────────────────────────────
   RESPONSIVE
   ─────────────────────────────────────────────── */

/* ─── Tablet (≤1199px) ─── */
@media (max-width: 1199px) {
  .skya-hero__layout {
    grid-template-columns: 42% 58%;
  }

  .skya-hero__content {
    padding: 36px 24px 32px 40px;
  }

  .skya-hero__logo {
    width: min(220px, 76%);
    margin-bottom: 18px;
  }

  .skya-hero__title {
    font-size: clamp(30px, 3.4vw, 46px);
  }

  .skya-hero__desc {
    font-size: 14px;
    max-width: 360px;
  }

  .skya-hero__cats {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 6px;
    padding: 10px 14px 14px;
  }
}

/* ─── Desktop (≥1024px) — compact banner height ─── */
@media (min-width: 1024px) {
  .skya-hero__layout {
    height: 470px !important;
    min-height: 0 !important;
    max-height: 540px !important;
    overflow: hidden;
  }

  .skya-hero__content {
    height: 100% !important;
    min-height: 0 !important;
    padding: 28px 28px 28px 44px;
    justify-content: center;
  }

  .skya-hero__media {
    height: 100% !important;
    min-height: 0 !important;
    overflow: hidden;
  }

  .skya-hero__media-img {
    display: block;
    width: 100%;
    height: 100% !important;
    max-height: 100% !important;
    object-fit: cover;
    object-position: center;
  }

  .skya-hero__logo {
    display: none;
  }

  .skya-hero__title {
    font-size: clamp(36px, 3.2vw, 52px);
  }

  .skya-hero__accent {
    width: 32px;
    height: 1.5px;
    margin: 12px 0 8px;
  }

  .skya-hero__desc {
    font-size: 13px;
    max-width: 340px;
  }

  .skya-hero__features {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-top: 16px;
  }

  .skya-hero__feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    border: none;
    border-radius: 0;
    background: none;
    font-size: 12px;
    font-weight: 600;
    color: var(--hero-ink);
  }

  .skya-hero__feature:first-child {
    padding-left: 0;
    border-left: none;
  }

  .skya-hero__feature-icon {
    width: 24px;
    height: 24px;
    font-size: 13px;
    border-radius: 7px;
    flex: 0 0 24px;
    border-color: var(--hero-gold);
    color: var(--hero-gold);
    background: rgba(196, 154, 98, .1);
  }

  .skya-hero__feature-icon-img {
    width: 24px;
    height: 24px;
  }

  .skya-hero__collections-heading {
    display: block;
    text-align: center;
    padding: 14px 0 10px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 600;
    color: var(--hero-ink);
  }

  .skya-hero__collections-heading::after {
    content: '';
    display: block;
    width: 45px;
    height: 2px;
    margin: 7px auto 0;
    background: var(--hero-gold);
    border-radius: 1px;
  }

  .skya-hero__cats {
    padding: 10px 16px 16px;
    gap: 8px;
  }

  .skya-hero__cat-card {
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.9);
    box-shadow: 0 4px 14px rgba(28,39,50,.06);
    transition: transform .25s ease, box-shadow .25s ease;
  }

  .skya-hero__cat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(40,30,20,.12);
  }
}

/* ─── Desktop 1024px–1365px ─── */
@media (min-width: 1024px) and (max-width: 1365px) {
  .skya-hero__layout {
    height: 450px !important;
    max-height: 450px !important;
  }
}

/* ─── Desktop 1366px–1599px ─── */
@media (min-width: 1366px) and (max-width: 1599px) {
  .skya-hero__layout {
    height: 490px !important;
    max-height: 490px !important;
  }
}

/* ─── Desktop ≥1600px ─── */
@media (min-width: 1600px) {
  .skya-hero__layout {
    height: 520px !important;
    max-height: 520px !important;
  }
}

/* ─── Mobile (≤767px) ─── */
@media (max-width: 767px) {
  .skya-hero {
    width: calc(100% - 16px);
    margin-bottom: 28px;
  }

  .skya-hero__card {
    border-radius: 20px;
  }

  /* Side-by-side: 40% text, 60% image */
  .skya-hero__layout {
    display: grid;
    grid-template-columns: 40% 60%;
    min-height: 240px;
  }

  .skya-hero__content {
    padding: 16px 6px 14px 14px;
    justify-content: center;
    background: #F8F5F0;
  }

  .skya-hero__logo {
    display: none !important;
  }

  .skya-hero__content {
    padding-top: 18px;
  }

  .skya-hero__title {
    font-size: clamp(18px, 5vw, 28px);
    line-height: .98;
  }

  .skya-hero__accent {
    width: 28px;
    height: 1.5px;
    margin: 10px 0 8px;
  }

  .skya-hero__desc {
    font-size: 10px;
    line-height: 1.4;
    max-width: none;
  }

  .skya-hero__features {
    margin-top: 10px;
    flex-direction: column;
    gap: 6px;
  }

  .skya-hero__feature {
    padding: 0;
    border: 0;
    gap: 6px;
    font-size: 10px;
  }

  .skya-hero__feature-icon {
    width: 20px;
    height: 20px;
    font-size: 11px;
    border-radius: 6px;
    flex: 0 0 20px;
  }

  .skya-hero__feature-icon-img {
    width: 20px;
    height: 20px;
  }

  /* Media area */
  .skya-hero__media-img {
    min-height: 240px;
    height: 100%;
  }

  .skya-hero__media-fade {
    display: none;
  }

  /* ─── Collections heading ─── */
  .skya-hero__collections-heading {
    display: block;
    margin: 18px 0 12px;
    padding: 0 10px;
    text-align: center;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 600;
    color: var(--hero-ink);
  }

  /* ─── Category grid: 8-column, center last row if ≤2 cards ─── */
  .skya-hero__cats {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 5px;
    padding: 0 8px 10px;
  }

  .skya-hero__cat-card {
    grid-column: span 2;
    border-radius: 10px;
    border-width: 1px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(28,39,50,.06);
  }

  /* Center final row when 1 or 2 cards remain */
  .skya-hero__cat-card:last-child:nth-child(4n + 1) {
    grid-column: 4 / span 2;
  }

  .skya-hero__cat-card:nth-last-child(2):nth-child(4n + 1) {
    grid-column: 3 / span 2;
  }

  .skya-hero__cat-card:last-child:nth-child(4n + 2) {
    grid-column: 5 / span 2;
  }

  .skya-hero__cat-img-wrap {
    aspect-ratio: 1 / 0.82;
  }

  .skya-hero__cat-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .skya-hero__cat-name {
    display: grid;
    min-height: 28px;
    padding: 7px 2px;
    place-items: center;
    text-align: center;
    font-size: clamp(8px, 2.2vw, 11px);
    line-height: 1.15;
    font-weight: 700;
    color: var(--hero-ink);
  }
}
