/* =============================================
   SAPPHYREKRAFT — MASTER STYLESHEET
   File: style.css
   ============================================= */

/* ============================================
   1. CSS CUSTOM PROPERTIES
   ============================================ */
:root {
  /* Brand Colours */
  --navy: #0f1e3d;
  --navy-dark: #0d1535;
  --navy-deep: #09111f;
  --gold: #c9962a;
  --gold-light: #e8b84b;
  --cream: #f5efe0;
  --cream-dark: #ede4cc;
  --text: #2d2d2d;
  --text-muted: #666666;
  --white: #ffffff;
  --wa-green: #25d366;
  --wa-green-hover: #1db855;

  /* Elevation */
  --shadow-sm: 0 2px 10px rgba(28, 43, 94, 0.1);
  --shadow-md: 0 6px 24px rgba(28, 43, 94, 0.14);

  /* Typography */
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Source Sans 3", system-ui, Arial, sans-serif;

  /* Layout */
  --header-h: 120px;
  --max-w: 1200px;
  --radius: 4px;
  --transition: 0.28s ease;
}

/* ============================================
   2. RESET & BASE
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

/* ============================================
   3. TYPOGRAPHY SCALE
   ============================================ */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
}
h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}
h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
}
h4 {
  font-size: 1.05rem;
  font-weight: 600;
}

p {
  color: var(--text);
}
strong {
  font-weight: 600;
}

/* ============================================
   4. LAYOUT & CONTAINERS
   ============================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}
.section--cream {
  background-color: var(--cream);
}
.section--white {
  background-color: var(--white);
}
.section--navy {
  background-color: var(--navy);
}
.section--navy-deep {
  background-color: var(--navy-deep);
}

/* ============================================
   5. TYPOGRAPHY UTILITIES
   ============================================ */
.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.section__header {
  text-align: center;
  margin-bottom: 52px;
}

.section__header p {
  max-width: 600px;
  margin: 14px auto 0;
  color: var(--text-muted);
  font-size: 0.97rem;
}

.gold-divider {
  width: 52px;
  height: 3px;
  background-color: var(--gold);
  margin: 14px auto 0;
}

.gold-divider--left {
  margin-left: 0;
}

/* Colour overrides inside navy/cta blocks */
.section--navy h2,
.section--navy h3,
.section--navy h4,
.section--navy-deep h2,
.section--navy-deep h3,
.section--navy-deep h4 {
  color: var(--white);
}

.section--navy p,
.section--navy .section__header p,
.section--navy-deep p,
.section--navy-deep .section__header p {
  color: rgba(255, 255, 255, 0.78);
}

.section--navy .eyebrow,
.section--navy-deep .eyebrow {
  color: var(--gold-light);
}

.section--navy .gold-divider,
.section--navy-deep .gold-divider {
  background-color: var(--gold-light);
}

/* ============================================
   6. GRID HELPERS
   ============================================ */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ============================================
   7. BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 13px 30px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition:
    background-color var(--transition),
    color var(--transition),
    border-color var(--transition),
    transform 0.48s cubic-bezier(0.22, 1, 0.36, 1);
  text-align: center;
  cursor: pointer;
  white-space: nowrap;
  transform: scale(1);
}

.btn:hover {
  transform: scale(1.02);
}
.btn:active {
  transform: scale(0.98);
}

.btn--gold {
  background-color: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn--gold:hover {
  background-color: transparent;
  color: var(--gold);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--outline-white:hover {
  background: var(--white);
  color: var(--navy);
}

.btn--outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn--outline-gold:hover {
  background: var(--gold);
  color: var(--white);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--navy:hover {
  background: transparent;
  color: var(--navy);
}

.btn--outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

.btn--whatsapp {
  background-color: var(--wa-green);
  color: var(--white);
  border-color: var(--wa-green);
}
.btn--whatsapp:hover {
  background-color: var(--wa-green-hover);
  border-color: var(--wa-green-hover);
}

/* ============================================
   8. FIXED HEADER & NAV
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  z-index: 1000;
  transition: box-shadow var(--transition);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* Logo */
.nav__logo {
  display: flex;
}

.footer__logo-img {
  height: 120px;
  width: auto;
  display: block;
  margin-bottom: 6px;
  border-radius: 12px;
}

/* Nav links */
.nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__item {
  position: relative;
}

.nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 13px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.03em;
  border-bottom: 2px solid transparent;
  transition:
    color 0.48s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.48s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav__link:hover,
.nav__link.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* Dropdown arrow */


/* ============================================
   10. MOBILE HAMBURGER
   ============================================ */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--navy);
  border-radius: 2px;
  transition:
    transform var(--transition),
    opacity var(--transition);
}

.nav__toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav__toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   11. HERO ENTRANCE ANIMATION
   ============================================ */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   22. CONTACT COMPONENTS
   ============================================ */

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.contact-info__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info__label {
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  display: block;
  margin-bottom: 3px;
}

.contact-info__value {
  font-size: 0.92rem;
  color: var(--text);
}
.contact-info__value a {
  color: var(--navy);
  transition: color var(--transition);
}
.contact-info__value a:hover {
  color: var(--gold);
}

.wa-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  background-color: var(--wa-green);
  color: var(--white);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 28px;
  transition:
    background var(--transition),
    transform var(--transition);
}

.wa-contact-btn:hover {
  background-color: var(--wa-green-hover);
  transform: translateY(-2px);
}

.wa-contact-btn svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
}

/* ============================================
   23. ENQUIRY FORM
   ============================================ */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group textarea {
  height: 130px;
  resize: vertical;
}

.form-message {
  display: none;
  padding: 10px 14px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  margin-bottom: 4px;
}

.form-message.error {
  display: block;
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fca5a5;
}
.form-message.success {
  display: block;
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #86efac;
}

.form-submit-wrap {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ============================================
   26. WHATSAPP FLOAT BUTTON
   ============================================ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--wa-green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.38);
  z-index: 999;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 26px rgba(37, 211, 102, 0.5);
}

.wa-float svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

/* ============================================
   27. SCROLL REVEAL
   ============================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   34. GLOBAL LIGHT HEADER (all pages)
   ============================================ */
.site-header {
  background-color: var(--white);
  border-bottom: 1px solid var(--cream-dark);
}

.site-header.scrolled {
  background-color: var(--white);
  box-shadow: 0 2px 20px rgba(9, 17, 31, 0.1);
  border-bottom-color: rgba(201, 150, 42, 0.35);
}

.nav__logo-img {
  height: 106px;
  width: auto;
  display: block;
  border-radius: 15px;
}

.nav__logo {
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.nav__item--cta {
  margin-left: 10px;
}

.nav__cta-btn {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  padding: 9px 18px !important;
  font-size: 0.82rem !important;
}

.nav__cta-btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ============================================
   42. HOME FOOTER
   ============================================ */
.home-footer {
  background: var(--navy-deep);
  padding: 48px 0 0;
}

.home-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
  align-items: start;
}

.home-footer__logo {
  display: block;
  margin-bottom: 16px;
  text-decoration: none;
}

.home-footer__logo-img {
  height: 170px;
  width: auto;
  display: block;
  border-radius: 10px;
}

.home-footer__col--brand .footer__logo-img {
  margin-bottom: 10px;
}

.home-footer__brand-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 2px;
}

.home-footer__brand-sub {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 14px;
}

.home-footer__brand-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.72;
  margin-bottom: 22px;
}

.home-footer__social {
  display: flex;
  gap: 10px;
}

.home-footer__social-link {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.62);
  transition:
    background var(--transition),
    color var(--transition);
}

.home-footer__social-link:hover {
  background: var(--gold);
  color: var(--navy-deep);
}

.home-footer__social-link svg {
  width: 15px;
  height: 15px;
}

.home-footer__col-title {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  padding-bottom: 0;
  border-bottom: none;
}

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

.home-footer__links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.58);
  transition:
    color var(--transition),
    padding-left var(--transition);
}

.home-footer__links a:hover {
  color: var(--gold-light);
  padding-left: 5px;
}

.home-footer__contact-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 14px;
}

.home-footer__contact-item:last-child {
  margin-bottom: 0;
}

.home-footer__contact-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  stroke: var(--gold);
  fill: none;
  margin-top: 4px;
}

.home-footer__contact-label {
  display: inline;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 2px;
}

.home-footer__contact-item a,
.home-footer__contact-item span:not(.home-footer__contact-label) {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.58);
  word-break: break-word;
}

.home-footer__contact-item a:hover {
  color: var(--gold-light);
}

.home-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-footer__copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ============================================
   44. NEW HERO — FULL-WIDTH BG IMAGE (v3)
   ============================================ */
.new-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--cream);
}

.new-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  z-index: 0;
}

.new-hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--cream) 30%,
    rgba(245, 239, 224, 0.84) 44%,
    rgba(245, 239, 224, 0.32) 60%,
    transparent 74%
  );
  z-index: 1;
}

.new-hero__content {
  position: relative;
  z-index: 2;
  max-width: 540px;
  padding: calc(var(--header-h) + 60px) 0 80px;
}

.new-hero__content > * {
  animation: heroFadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.new-hero__content > *:nth-child(1) {
  animation-delay: 0s;
}
.new-hero__content > *:nth-child(2) {
  animation-delay: 0.15s;
}
.new-hero__content > *:nth-child(3) {
  animation-delay: 0.28s;
}
.new-hero__content > *:nth-child(4) {
  animation-delay: 0.42s;
}

.new-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.2vw, 4rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 18px;
}

.new-hero__title-gold {
  display: block;
  color: var(--gold);
}

.new-hero__tagline {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.72;
  max-width: 420px;
  margin-bottom: 36px;
}

.new-hero__btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.new-hero__trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}

.new-hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.new-hero__trust-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.new-hero__trust-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.new-hero__trust-label {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.new-hero__trust-label-main {
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
}

.new-hero__trust-label-sub {
  font-size: 0.74rem;
  color: var(--text-muted);
  line-height: 1.25;
}

/* ============================================
   45. HP CATEGORY CARDS (Homepage v2)
   ============================================ */
.hp-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.hp-cat-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 6px;
  overflow: hidden;
  display: block;
  position: relative;
  cursor: pointer;
  transition:
    transform 0.54s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.54s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.28s ease;
}

.hp-cat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 150, 42, 0.42);
}

.hp-cat-card__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--white);
}

.hp-cat-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--white);
  display: block;
  transition: transform 0.68s cubic-bezier(0.22, 1, 0.36, 1);
}

.hp-cat-card:hover .hp-cat-card__img img {
  transform: scale(1.06);
}

.hp-cat-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(238, 215, 178, 0.92);
  padding: 8px 12px;
  text-align: center;
  z-index: 2;
}

.hp-cat-card__title {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0;
  line-height: 1.3;
  text-align: center;
}

.hp-cat-card__link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
  opacity: 0.75;
  transition:
    color 0.28s ease,
    opacity 0.28s ease;
}

.hp-cat-card:hover .hp-cat-card__link {
  color: var(--navy);
  opacity: 1;
}

.hp-cat-card__gallery-pill {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 9px 4px 7px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
  pointer-events: none;
  box-shadow: 0 2px 8px rgba(201, 150, 42, 0.38);
}

.hp-cat-card__gallery-pill svg {
  flex-shrink: 0;
}

/* ============================================
   45b. CAROUSEL — Gift Items card (crossfade)
   ============================================ */
.hp-cat-card__img--carousel {
  position: relative;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--white);
  display: block;
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.carousel-slide--active {
  opacity: 1;
}

/* Suppress zoom on hover for carousel images */
.hp-cat-card:hover .hp-cat-card__img--carousel .carousel-slide {
  transform: none;
}

.carousel-dots {
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 2;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition:
    background 0.28s ease,
    transform 0.28s ease;
}

.carousel-dot--active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ============================================
   46. CATEGORIES CTA BAND
   ============================================ */
.cat-cta-band {
  margin-top: 52px;
}

.cat-cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: var(--navy);
  border-radius: 16px;
  padding: 44px 52px;
}

.cat-cta-band__text h3 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 600;
  color: var(--cream);
  margin: 0 0 10px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.cat-cta-band__text p {
  font-size: 0.95rem;
  color: var(--cream);
  opacity: 0.65;
  margin: 0;
  line-height: 1.65;
  max-width: 500px;
}

.cat-cta-band__btn {
  flex-shrink: 0;
  display: inline-block;
  background: var(--white);
  color: var(--navy);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background var(--transition),
    transform var(--transition);
}

.cat-cta-band__btn:hover {
  background: var(--cream);
  transform: translateY(-1px);
}

/* ============================================
   47. WHY SAPPHYREKRAFT
   ============================================ */
.why-sk-section {
  position: relative;
  overflow: hidden;
  background: url("../images/whysaf.webp") center / cover no-repeat;
  padding: 44px 0 22px;
}

.why-sk-section::before,
.why-sk-section::after {
  display: none;
}

.why-sk-section .container {
  position: relative;
  z-index: 1;
}

.why-sk-header {
  text-align: center;
  margin-bottom: 24px;
}

.why-sk-header__eyebrow {
  display: block;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.55rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}

.why-sk-header h2 {
  color: var(--navy);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  line-height: 1;
  letter-spacing: 0.07em;
  margin: 0;
}

.why-sk-header__ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 20px auto 16px;
  color: var(--gold);
}

.why-sk-header__ornament::before,
.why-sk-header__ornament::after {
  content: "";
  width: 90px;
  height: 2px;
  background: var(--gold);
}

.why-sk-header__ornament span {
  width: 12px;
  height: 12px;
  background: var(--gold);
  transform: rotate(45deg);
}

.why-sk-header p {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  line-height: 1.3;
  margin: 0;
}

.why-sk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.why-sk-item {
  position: relative;
  min-height: 168px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  align-content: start;
  gap: 10px 14px;
  padding: 24px 130px 20px 22px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(15, 30, 61, 0.08);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(15, 30, 61, 0.14);
  transition:
    transform 0.54s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.54s cubic-bezier(0.22, 1, 0.36, 1);
}

.why-sk-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(15, 30, 61, 0.18);
}

.why-sk-item::before {
  content: "";
  position: absolute;
  right: 72px;
  top: 0;
  bottom: 0;
  width: 56px;
  border-left: 3px solid var(--gold);
  border-radius: 50% 0 0 50%;
  pointer-events: none;
  z-index: 1;
}

.why-sk-item__art {
  position: absolute;
  right: 0;
  top: 0;
  width: 118px;
  height: 100%;
  overflow: hidden;
  border-radius: 64% 0 8px 64%;
}

.why-sk-item__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-sk-item__art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.12), transparent 42%);
}

.why-sk-item__icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  grid-row: span 2;
  transition:
    background 0.54s ease,
    transform 0.54s cubic-bezier(0.22, 1, 0.36, 1);
}

.why-sk-item:hover .why-sk-item__icon {
  background: var(--navy-dark);
  transform: scale(1.04);
}

.why-sk-item__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-sk-item__title {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  font-weight: 600;
  color: var(--navy);
  margin: 2px 0 0;
  line-height: 1.2;
}

.why-sk-item__title::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gold);
  margin-top: 8px;
}

.why-sk-item p {
  position: relative;
  z-index: 2;
  grid-column: 1 / 3;
  font-size: 0.88rem;
  color: var(--navy);
  line-height: 1.6;
  margin: 0;
}

.why-sk-pill {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  max-width: 960px;
  margin: 22px auto 0;
  padding: 12px 28px;
  background: var(--navy);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(15, 30, 61, 0.22);
}

.why-sk-pill__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--white);
  font-size: 0.88rem;
  line-height: 1.2;
  padding: 0 18px;
  border-right: 1px solid rgba(201, 150, 42, 0.62);
}

.why-sk-pill__item:last-child {
  border-right: none;
}

.why-sk-pill__item span {
  color: var(--gold);
  font-size: 1.35rem;
  line-height: 1;
}

.why-sk-pill__item svg {
  stroke: var(--gold);
  flex-shrink: 0;
}

.why-sk-pill__item strong {
  font-weight: 600;
}

/* ============================================
   43. ABOUT PAGE
   ============================================ */

/* ─── Hero ─── */
.about-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--cream);
}

.about-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  z-index: 0;
}

.about-hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--cream) 30%,
    rgba(245, 239, 224, 0.84) 44%,
    rgba(245, 239, 224, 0.32) 60%,
    transparent 74%
  );
  z-index: 1;
}

.about-hero__content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  padding: calc(var(--header-h) + 60px) 0 80px;
}

.about-hero__content > * {
  animation: heroFadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.about-hero__content > *:nth-child(1) { animation-delay: 0s; }
.about-hero__content > *:nth-child(2) { animation-delay: 0.14s; }
.about-hero__content > *:nth-child(3) { animation-delay: 0.28s; }
.about-hero__content > *:nth-child(4) { animation-delay: 0.42s; }
.about-hero__content > *:nth-child(5) { animation-delay: 0.56s; }

.about-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.about-hero__title-gold {
  display: block;
  color: var(--gold);
}

.about-hero__divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 4px 0 24px;
}

.about-hero__divider::before,
.about-hero__divider::after {
  content: '';
  height: 1.5px;
  width: 32px;
  background: var(--gold);
  display: block;
  flex-shrink: 0;
}

.about-hero__divider span {
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
  display: block;
  flex-shrink: 0;
}

.about-hero__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.84;
  max-width: 520px;
  margin-bottom: 14px;
}

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

.about-hero__trust {
  display: flex;
  align-items: flex-start;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--cream-dark);
}

.about-hero__trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  padding: 0 16px;
  border-right: 1px solid var(--cream-dark);
}

.about-hero__trust-item:first-child {
  padding-left: 0;
}

.about-hero__trust-item:last-child {
  border-right: none;
}

.about-hero__trust-item svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-hero__trust-item span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
  line-height: 1.35;
}

/* ─── Who We Are ─── */
.about-who__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}

.about-who__image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(9, 17, 31, 0.14);
  background: var(--cream-dark);
  min-height: 420px;
}

.about-who__image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.68s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-who__image:hover img {
  transform: scale(1.03);
}

.about-who__content .gold-divider {
  margin: 16px 0 32px;
}

.about-who__lead {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.68;
  margin-bottom: 16px;
}

.about-who__body {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.82;
  margin-bottom: 22px;
}

.about-who__tagline {
  font-family: var(--font-display);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--gold);
  font-style: italic;
  line-height: 1.5;
  margin: 0;
}

.about-who__audience {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 14px;
  margin-bottom: 0;
}

/* ─── Mission & Vision ─── */
.about-mv__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}

.about-mv__card {
  border-radius: 18px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition:
    transform 0.54s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.54s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-mv__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.about-mv__card--navy {
  background: var(--navy);
}

.about-mv__card--cream {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
}

.about-mv__icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(201, 150, 42, 0.14);
  border: 1.5px solid rgba(201, 150, 42, 0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  flex-shrink: 0;
}

.about-mv__icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-mv__label {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0;
  line-height: 1.2;
}

.about-mv__card--navy .about-mv__label {
  color: var(--white);
}

.about-mv__card--cream .about-mv__label {
  color: var(--navy);
}

.about-mv__divider {
  width: 36px;
  height: 2px;
  background: var(--gold);
  margin: 16px auto 20px;
  border-radius: 2px;
}

.about-mv__card p {
  font-size: 0.9rem;
  line-height: 1.78;
  max-width: 340px;
  margin: 0 auto;
}

.about-mv__card--navy p {
  color: rgba(255, 255, 255, 0.72);
}

.about-mv__card--cream p {
  color: var(--text-muted);
}

/* ─── Our Values ─── */
.about-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
}

.about-value {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 0 8px;
}

.about-value__icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(201, 150, 42, 0.1);
  border: 1.5px solid rgba(201, 150, 42, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background 0.54s ease,
    border-color 0.54s ease,
    transform 0.54s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-value:hover .about-value__icon {
  background: rgba(201, 150, 42, 0.2);
  border-color: var(--gold);
  transform: translateY(-4px);
}

.about-value__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-value__title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
  line-height: 1.3;
}

.about-value__desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ============================================
   43b. ABOUT CTA BANNER
   ============================================ */

.about-page-cta {
  background: var(--navy-deep);
  padding: 56px 0;
  display: block;
  width: 100%;
  margin-bottom: 48px;
}

.about-page-cta__inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

.about-page-cta__text {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.45;
  letter-spacing: -0.01em;
  flex: 1;
}

.about-page-cta__icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  opacity: 0.85;
}

.about-page-cta__icon svg {
  width: 100%;
  height: 100%;
}

.about-page-cta__btn {
  flex-shrink: 0;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .about-page-cta__inner {
    flex-direction: column;
    text-align: center;
    gap: 28px;
  }
  .about-page-cta__text {
    font-size: clamp(1rem, 4vw, 1.25rem);
  }
}

/* ============================================
   43c. ABOUT CREDENTIALS SECTION
   ============================================ */

.about-credentials__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 8px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.about-credentials__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--cream);
  border-radius: 12px;
  border: 1px solid var(--cream-dark);
  transition: box-shadow 0.54s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-credentials__item:hover {
  box-shadow: 0 6px 24px rgba(15, 30, 61, 0.08);
}

.about-credentials__icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-credentials__icon svg {
  width: 22px;
  height: 22px;
}

.about-credentials__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.about-credentials__content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.about-credentials__name {
  font-family: var(--font-display);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
  line-height: 1.3;
}

.about-credentials__desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 768px) {
  .about-credentials__list {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* ============================================
   49. TRUST STRIP
   ============================================ */
.trust-strip {
  background: var(--navy-deep);
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-strip__item:last-child {
  border-right: none;
}

.trust-strip__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-strip__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-strip__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trust-strip__text-main {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
}

.trust-strip__text-sub {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.3;
}

/* ============================================
   50. STORY FEATURE - Homepage story section
   ============================================ */
.story-band {
  padding: 0;
  overflow: hidden;
}

.story-band .container {
  max-width: none;
  padding: 0;
}

.story-feature {
  display: grid;
  grid-template-columns: minmax(0, 40%) minmax(0, 60%);
  align-items: stretch;
  min-height: 190px;
  background: var(--cream);
}

.story-feature__media {
  position: relative;
  overflow: hidden;
  background: var(--cream-dark);
}

.story-feature__media::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 32%;
  background: linear-gradient(to right, rgba(245, 239, 224, 0), var(--cream));
  pointer-events: none;
}

.story-feature__media img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.68s cubic-bezier(0.22, 1, 0.36, 1);
}

.story-feature__media:hover img {
  transform: scale(1.03);
}

.story-feature__content {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(230px, 0.86fr);
  align-items: center;
  gap: 44px;
  padding: 26px clamp(28px, 5.4vw, 72px) 22px 22px;
}

.story-feature__copy {
  max-width: 330px;
}

.story-feature__copy .eyebrow {
  margin-bottom: 6px;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
}

.story-feature__copy h2 {
  max-width: 315px;
  font-size: clamp(1.55rem, 2.15vw, 2.05rem);
  line-height: 1.05;
}

.story-feature__copy .gold-divider {
  width: 58px;
  height: 3px;
  margin-top: 12px;
}

.story-feature__body {
  max-width: 330px;
  margin: 14px 0 18px;
  color: var(--text);
  font-size: 0.82rem;
  line-height: 1.68;
}

.story-feature__copy .btn {
  background: var(--navy);
  border-color: var(--navy);
  padding: 9px 22px;
  font-size: 0.72rem;
  letter-spacing: 0;
}

.story-feature__copy .btn:hover {
  background: transparent;
  color: var(--navy);
}

.story-feature__cards {
  display: flex;
  flex-direction: column;
  gap: 17px;
  padding-left: 40px;
  border-left: 1px solid rgba(15, 30, 61, 0.12);
}

.story-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.story-feature-card__icon {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-feature-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.story-feature-card strong {
  display: block;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2px;
}

.story-feature-card span {
  display: block;
  color: var(--text);
  font-size: 0.7rem;
  line-height: 1.35;
}

/* Tablet */
/* ============================================
   30. RESPONSIVE BREAKPOINTS
   ============================================ */

@media (max-width: 960px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Homepage: footer */
  .home-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .home-footer__col--brand {
    grid-column: 1 / -1;
  }

  /* Homepage hero — tablet */
  .new-hero {
    min-height: 100vh;
  }
  .new-hero__gradient {
    background: linear-gradient(
      to right,
      var(--cream) 45%,
      rgba(245, 239, 224, 0.7) 62%,
      transparent 85%
    );
  }
  .new-hero__content {
    max-width: 420px;
    padding: calc(var(--header-h) + 48px) 0 72px;
  }

  /* Homepage v2: categories */
  .hp-cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cat-cta-band__inner {
    padding: 36px 36px;
    gap: 28px;
  }

  /* Homepage v2: why */
  .why-sk-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-sk-item {
    padding-right: 150px;
  }
  .why-sk-item__art {
    width: 132px;
  }
  .why-sk-pill {
    grid-template-columns: repeat(2, 1fr);
    border-radius: 24px;
    gap: 12px 0;
  }
  .why-sk-pill__item:nth-child(2) {
    border-right: none;
  }

  /* About page */
  .about-hero__content {
    max-width: 100%;
    padding: 48px 0 56px;
  }
  .about-who__grid {
    gap: 44px;
  }
  .about-mv__card {
    padding: 40px 32px;
  }
  .about-values__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --header-h: 96px;
  }

  .nav__logo-img {
    height: 80px;
  }

  .section {
    padding: 52px 0;
  }

  .section__header {
    margin-bottom: 36px;
  }

  /* Nav toggle visible */
  .nav__toggle {
    display: flex;
  }

  /* Nav list becomes full-screen drawer */
  .nav__list {
    position: fixed;
    top: var(--header-h);
    left: 0;
    width: 100%;
    flex-direction: column;
    background: var(--navy);
    border-top: 2px solid var(--gold);
    padding: 8px 0 24px;
    gap: 0;
    align-items: stretch;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition:
      max-height 0.68s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.51s ease;
  }

  .nav__list.open {
    max-height: calc(100vh - var(--header-h));
    opacity: 1;
    overflow-y: auto;
  }

  .nav__link {
    padding: 13px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    border-left: none;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
  }

  .nav__link:hover,
  .nav__link.active {
    color: var(--gold);
    border-bottom-color: rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.04);
  }

  .nav__item--cta {
    margin-left: 0;
  }

  /* Grids */
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group--full {
    grid-column: auto;
  }

  /* Homepage: footer */
  .home-footer {
    padding-top: 52px;
  }
  .home-footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .home-footer__logo-img {
    height: 100px;
  }
  .home-footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Homepage hero — mobile */
  .new-hero {
    min-height: 100svh;
    align-items: flex-start;
  }
  .new-hero__bg {
    object-position: 70% center;
  }
  .new-hero__gradient {
    background: linear-gradient(
      to bottom,
      rgba(245, 239, 224, 0.96) 55%,
      rgba(245, 239, 224, 0.7) 72%,
      transparent 90%
    );
  }
  .new-hero__content {
    max-width: 100%;
    padding: calc(var(--header-h) + 36px) 0 56px;
  }
  .new-hero__trust {
    gap: 16px;
    background: rgba(245, 239, 224, 0.92);
    border-radius: 10px;
    padding: 12px 16px;
  }

  /* Homepage v2: categories */
  .hp-cat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .cat-cta-band {
    margin-top: 36px;
  }

  .cat-cta-band__inner {
    flex-direction: column;
    text-align: center;
    padding: 36px 28px;
    gap: 22px;
  }

  .cat-cta-band__text p {
    max-width: 100%;
  }

  /* Homepage v2: why */
  .why-sk-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .why-sk-section {
    padding: 48px 0 28px;
  }
  .why-sk-section::before,
  .why-sk-section::after {
    width: 180px;
    height: 130px;
    opacity: 0.42;
  }
  .why-sk-header {
    margin-bottom: 28px;
  }
  .why-sk-header h2 {
    letter-spacing: 0.04em;
  }
  .why-sk-item {
    min-height: auto;
    padding: 22px;
    grid-template-columns: 60px minmax(0, 1fr);
  }
  .why-sk-item::before,
  .why-sk-item__art {
    display: none;
  }
  .why-sk-item p {
    max-width: 100%;
  }

  /* Trust strip — 2×2 on mobile, uniform dividers via grid gap */
  .trust-strip__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.1);
    align-items: stretch;
  }
  .trust-strip__item {
    padding: 12px 16px;
    border-right: none;
    border-bottom: none;
    background: var(--navy-deep);
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  /* Homepage v2: categories */
  .hp-cat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .why-sk-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .why-sk-header h2 {
    font-size: clamp(1.4rem, 8vw, 2.2rem);
  }
  .why-sk-header__ornament::before,
  .why-sk-header__ornament::after {
    width: 58px;
  }
  .why-sk-item {
    min-height: auto;
    padding: 22px;
  }
  .why-sk-item::before,
  .why-sk-item__art {
    display: none;
  }
  .why-sk-item__icon {
    width: 52px;
    height: 52px;
  }
  .why-sk-item__title {
    font-size: 1.18rem;
  }
  .why-sk-pill {
    grid-template-columns: 1fr;
    align-items: stretch;
    border-radius: 18px;
    padding: 18px 22px;
  }
  .why-sk-pill__item {
    justify-content: flex-start;
    border-right: none;
    border-bottom: 1px solid rgba(201, 150, 42, 0.38);
    padding: 10px 0;
  }
  .why-sk-pill__item:last-child {
    border-bottom: none;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 768px) {
  .about-hero {
    align-items: flex-start;
  }
  .about-hero__bg {
    object-position: 70% center;
  }
  .about-hero__gradient {
    background: linear-gradient(
      to bottom,
      rgba(245, 239, 224, 0.96) 55%,
      rgba(245, 239, 224, 0.7) 72%,
      transparent 90%
    );
  }
  .about-hero__content {
    padding: calc(var(--header-h) + 36px) 0 56px;
  }
  /* Trust row — wrap to 2×2 on mobile, cream panel over bg image */
  .about-hero__trust {
    flex-wrap: wrap;
    background: rgba(245, 239, 224, 0.92);
    border-radius: 10px;
    border-top: none;
    margin-top: 20px;
    padding: 8px 0 4px;
  }
  .about-hero__trust-item {
    flex: 1 1 calc(50% - 1px);
    padding: 10px 12px;
    border-right: none;
  }
  .about-hero__trust-item:nth-child(odd) {
    border-right: 1px solid var(--cream-dark);
  }
  .about-hero__trust-item:nth-child(1),
  .about-hero__trust-item:nth-child(2) {
    border-bottom: 1px solid var(--cream-dark);
    padding-bottom: 14px;
  }
  .about-hero__trust-item:nth-child(3),
  .about-hero__trust-item:nth-child(4) {
    padding-top: 10px;
  }
  .about-who__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-who__image img {
    height: 280px;
  }
  .about-mv__grid {
    grid-template-columns: 1fr;
  }
  .about-mv__card {
    padding: 36px 28px;
  }
  .about-values__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

@media (max-width: 480px) {
  .about-hero__content {
    padding: calc(var(--header-h) + 24px) 0 40px;
  }
  .about-values__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

/* ============================================
   51. WHY SHOP WITH US — Icon strip
       & Category grid CTA
   ============================================ */

/* "View All Categories" button wrapper */
.cat-grid__cta {
  text-align: center;
  margin-top: 40px;
}

/* Why shop section */
.why-shop-grid {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.why-shop-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
  max-width: 140px;
}

.why-shop-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 1.5px solid var(--cream-dark);
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color 0.28s ease,
    transform 0.54s cubic-bezier(0.22, 1, 0.36, 1);
}

.why-shop-item:hover .why-shop-icon {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.why-shop-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-shop-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  text-align: center;
}

@media (max-width: 768px) {
  .why-shop-grid {
    gap: 32px;
  }
  .why-shop-item {
    max-width: 96px;
  }
  .why-shop-icon {
    width: 66px;
    height: 66px;
  }
  .why-shop-icon svg {
    width: 24px;
    height: 24px;
  }
  .why-shop-label {
    font-size: 0.78rem;
  }
  /* Story feature - stack to column on tablet */
  .story-feature {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .story-feature__media,
  .story-feature__media img {
    min-height: 260px;
  }
  .story-feature__media::after {
    width: 100%;
    height: 36%;
    inset: auto 0 0;
    background: linear-gradient(
      to bottom,
      rgba(245, 239, 224, 0),
      var(--cream)
    );
  }
  .story-feature__content {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 28px 24px 34px;
  }
  .story-feature__copy {
    max-width: 560px;
  }
  .story-feature__body {
    max-width: 560px;
  }
  .story-feature__cards {
    max-width: 520px;
    border-left: none;
    padding-left: 0;
    padding-top: 0;
  }
}

@media (max-width: 480px) {
  .why-shop-grid {
    gap: 20px;
  }
  .why-shop-item {
    max-width: 80px;
  }
}

/* Story feature — tighter breakpoint for small phones */
@media (max-width: 560px) {
  .story-feature {
    min-height: auto;
  }
  .story-feature__media,
  .story-feature__media img {
    min-height: 240px;
  }
  .story-feature__content {
    padding: 24px 20px 30px;
  }
  .story-feature__copy h2 {
    font-size: 1.55rem;
  }
  .story-feature__body {
    margin: 18px 0 24px;
  }
  .story-feature__cards {
    gap: 18px;
  }
}

/* ============================================
   52. CONTACT PAGE
   ============================================ */

/* ─── Main 2-col ─── */
.contact-main {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 64px;
  align-items: flex-start;
}

.contact-main__form-wrap h2,
.contact-panel h2 {
  margin-top: 6px;
  margin-bottom: 4px;
}

.contact-main__privacy {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 14px;
}

.contact-main__privacy svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ─── Right Panel ─── */
.contact-panel {
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

.contact-panel__items {
  margin: 24px 0 4px;
}

.contact-panel .contact-info__item {
  margin-bottom: 18px;
}

.contact-panel__note {
  background: var(--cream-dark);
  border-left: 3px solid var(--gold);
  padding: 14px 18px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 24px;
  line-height: 1.68;
}

/* ─── CTA Banner ─── */
.contact-cta-banner {
  background: var(--navy-deep);
  padding: 52px 0;
  border-top: 1px solid rgba(201, 150, 42, 0.15);
}

.contact-cta-banner__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.contact-cta-banner__text {
  flex: 1;
  min-width: 260px;
}

.contact-cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.85rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.contact-cta-banner__sub {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.58);
  margin: 0;
}

.contact-cta-banner__icon {
  opacity: 0.72;
  flex-shrink: 0;
}

.contact-cta-banner__icon svg {
  width: 72px;
  height: 72px;
  display: block;
}

.contact-cta-banner__btn {
  flex-shrink: 0;
}

/* ─── Responsive ─── */
@media (max-width: 960px) {
  .contact-main {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact-panel {
    position: static;
  }
  .contact-cta-banner__inner {
    flex-direction: column;
    text-align: center;
  }
  .contact-cta-banner__text {
    min-width: unset;
  }
}

@media (max-width: 768px) {
  .contact-cta-banner__icon {
    display: none;
  }
  .section--page-top {
    padding-top: calc(var(--header-h) + 40px);
  }
}

/* ============================================
   53. CONTACT PAGE — HEADER OFFSET + CERTIFICATIONS
   ============================================ */
@media (min-width: 769px) {
  .section--page-top {
    padding-top: calc(var(--header-h) + 80px);
  }
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.cert-grid .cert-card {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--cream-dark);
  border-top: 1px solid var(--cream-dark);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 18px 18px;
  gap: 14px;
  box-shadow: none;
  transition: box-shadow 0.54s cubic-bezier(0.22, 1, 0.36, 1);
}

.cert-grid .cert-card:hover {
  transform: none;
  box-shadow: 0 6px 28px rgba(15, 30, 61, 0.09);
}

.cert-grid .cert-card__img-wrap {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--cream-dark);
}

.cert-grid .cert-card__img {
  width: 100%;
  height: auto;
  display: block;
}

.cert-grid .cert-card__label {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
  letter-spacing: -0.01em;
}

.cert-grid .cert-card__sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: -8px;
}

@media (max-width: 768px) {
  .cert-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ============================================
   54. LIGHTBOX GALLERY
   ============================================ */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(9, 17, 31, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.34s ease, visibility 0.34s ease;
}

.lightbox-overlay.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 80px 100px 60px;
}

.lightbox-img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: calc(100vh - 160px);
  object-fit: contain;
  border-radius: 4px;
  display: block;
  transition: opacity 0.18s ease;
  pointer-events: none;
}

.lightbox-img.transitioning {
  opacity: 0;
}

.lightbox-title {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background 0.22s ease;
  z-index: 2;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.22);
}

.lightbox-close svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background 0.22s ease;
  z-index: 2;
}

.lightbox-arrow:hover {
  background: rgba(201, 150, 42, 0.55);
}

.lightbox-arrow svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lightbox-arrow--prev {
  left: 22px;
}

.lightbox-arrow--next {
  right: 22px;
}

.lightbox-arrow[hidden] {
  display: none;
}

.lightbox-product-name {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.02em;
  text-align: center;
  max-width: 70%;
  line-height: 1.35;
}

.lightbox-product-name:empty {
  display: none;
}

.lightbox-counter {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.06em;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .lightbox-inner {
    padding: 70px 56px 52px;
  }

  .lightbox-arrow {
    width: 38px;
    height: 38px;
  }

  .lightbox-arrow--prev { left: 8px; }
  .lightbox-arrow--next { right: 8px; }

  .lightbox-title {
    font-size: 0.88rem;
    white-space: normal;
    max-width: calc(100% - 80px);
    text-align: center;
  }

  .lightbox-product-name {
    font-size: 0.78rem;
    max-width: 82%;
    bottom: 46px;
  }
}

/* ─── Lightbox sidebar (multi-product switcher) ─── */
.lightbox-sidebar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 192px;
  background: rgba(255, 255, 255, 0.035);
  border-right: 1px solid rgba(255, 255, 255, 0.09);
  display: flex;
  flex-direction: column;
  padding-top: 70px;
  z-index: 3;
  overflow-y: auto;
}

.lightbox-sidebar[hidden] {
  display: none;
}

.lightbox-sidebar__label {
  padding: 0 0 8px 20px;
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.28);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lightbox-sidebar__item {
  padding: 13px 20px;
  border: none;
  border-left: 3px solid transparent;
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: background 0.22s ease, border-color 0.22s ease;
  width: 100%;
}

.lightbox-sidebar__item:hover {
  background: rgba(255, 255, 255, 0.04);
}

.lightbox-sidebar__item.active {
  border-left-color: var(--gold);
  background: rgba(201, 150, 42, 0.08);
}

.lightbox-sidebar__item-name {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.4;
  display: block;
}

.lightbox-sidebar__item.active .lightbox-sidebar__item-name {
  color: var(--gold-light);
}

.lightbox-sidebar__item-sub {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.42);
  display: block;
  margin-top: 2px;
}

.lightbox-sidebar__item.active .lightbox-sidebar__item-sub {
  color: rgba(232, 184, 75, 0.68);
}

.lightbox-sidebar__item-count {
  font-family: var(--font-body);
  font-size: 0.625rem;
  color: rgba(255, 255, 255, 0.28);
  display: block;
  margin-top: 4px;
  letter-spacing: 0.04em;
}

.lightbox-inner--has-sidebar .lightbox-arrow--prev {
  left: 212px;
}

@media (max-width: 768px) {
  .lightbox-sidebar {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: auto;
    width: 100%;
    height: 48px;
    flex-direction: row;
    align-items: stretch;
    padding-top: 0;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    overflow-x: auto;
    overflow-y: hidden;
  }

  .lightbox-sidebar__label {
    display: none;
  }

  .lightbox-sidebar__item {
    border-left: none;
    border-bottom: 3px solid transparent;
    padding: 0 18px;
    display: flex;
    align-items: center;
    white-space: nowrap;
    flex-shrink: 0;
    width: auto;
  }

  .lightbox-sidebar__item.active {
    border-bottom-color: var(--gold);
    border-left: none;
    background: rgba(201, 150, 42, 0.08);
  }

  .lightbox-sidebar__item-sub,
  .lightbox-sidebar__item-count {
    display: none;
  }

  .lightbox-sidebar__item-name {
    font-size: 0.75rem;
  }

  .lightbox-inner--has-sidebar {
    padding-top: 110px;
  }

  .lightbox-inner--has-sidebar .lightbox-title {
    display: none;
  }

  .lightbox-inner--has-sidebar .lightbox-arrow--prev {
    left: 8px;
  }
}

/* ============================================
   55. NAV FLYOUT IMAGE PANEL
   ============================================ */
.nav-flyout {
  position: fixed;
  z-index: 8000;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(9, 17, 31, 0.16), 0 2px 8px rgba(9, 17, 31, 0.08);
  padding: 14px;
  max-height: 72vh;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.16s ease, visibility 0.16s ease;
  pointer-events: none;
}

.nav-flyout.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-flyout__title {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--cream-dark);
}

.nav-flyout__grid {
  display: grid;
  grid-template-columns: repeat(4, 68px);
  gap: 5px;
}

.nav-flyout__thumb {
  width: 68px;
  height: 68px;
  object-fit: cover;
  border-radius: 5px;
  cursor: pointer;
  display: block;
  transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.22s ease;
}

.nav-flyout__thumb:hover {
  transform: scale(1.07);
  box-shadow: 0 4px 14px rgba(9, 17, 31, 0.22);
  z-index: 1;
  position: relative;
}

/* Groups layout (Handcrafted Bags: two columns) */
.nav-flyout--groups {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.nav-flyout__group {
  flex: 1;
  min-width: 0;
}

.nav-flyout__group-label {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.nav-flyout__group-sub {
  font-family: var(--font-body);
  font-size: 0.625rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--cream-dark);
}

.nav-flyout__group .nav-flyout__grid {
  grid-template-columns: repeat(3, 68px);
}

/* Divider between groups */
.nav-flyout--groups .nav-flyout__group + .nav-flyout__group {
  padding-left: 18px;
  border-left: 1px solid var(--cream-dark);
}

@media (hover: none) {
  .nav-flyout { display: none !important; }
}

/* ============================================
   SECTION 56 — PRODUCTS PAGE
   ============================================ */

/* ─── Homepage Products CTA Band ─── */
.products-cta-band {
  padding: 64px 0;
}

.products-cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 16px;
  padding: 48px 52px;
  box-shadow: 0 2px 16px rgba(15, 30, 61, 0.06);
}

.products-cta-band__text h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.25;
}

.products-cta-band__text p {
  color: var(--text);
  max-width: 560px;
  margin: 0;
  line-height: 1.65;
}

.products-cta-band .btn {
  flex-shrink: 0;
  white-space: nowrap;
}

/* ─── Page Hero ─── */
.products-hero {
  position: relative;
  padding: calc(var(--header-h) + 36px) 0 40px;
  border-bottom: 1px solid var(--cream-dark);
  background-image: url('../images/productshero.webp');
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
}

.products-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(245, 239, 224, 0.55);
  pointer-events: none;
}

.products-hero .container {
  position: relative;
  z-index: 1;
}

.products-hero .section__header {
  margin-bottom: 0;
}

.products-hero__sub {
  color: var(--text);
  opacity: 0.75;
  margin-top: 10px;
  font-size: 1.05rem;
  max-width: 560px;
}

/* ─── Products Layout ─── */
.products-section {
  padding: 52px 0 88px;
}

.products-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 52px;
  align-items: start;
}

/* Grid items default to min-width:auto, which lets their content force the
   track wider than the container. Pinning both to 0 keeps tracks inside
   the container on every viewport. */
.products-sidebar,
.products-grid-wrap {
  min-width: 0;
}

/* ─── Sidebar ─── */
.products-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 20px);
}

.products-sidebar__title {
  font-size: 0.7rem;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
}

.products-filter-list {
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: 0;
  max-width: 100%;
}

.products-filter-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.93rem;
  color: var(--text);
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease;
  line-height: 1.35;
  margin-bottom: 3px;
  user-select: none;
}

.products-filter-item:hover {
  background: var(--cream-dark);
  color: var(--navy);
}

.products-filter-item--active {
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
}

.products-filter-item--active:hover {
  background: var(--navy-dark);
  color: var(--white);
}

.products-filter-count {
  font-size: 0.75rem;
  background: rgba(0, 0, 0, 0.09);
  color: inherit;
  border-radius: 20px;
  padding: 1px 7px;
  flex-shrink: 0;
  font-weight: 600;
  font-family: 'Source Sans 3', sans-serif;
}

.products-filter-item--active .products-filter-count {
  background: rgba(255, 255, 255, 0.18);
}

/* ─── Product Grid ─── */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  min-width: 0;
}

/* ─── Product Card ─── */
.prod-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: box-shadow 0.36s ease, transform 0.36s ease;
}

.prod-card:hover {
  box-shadow: 0 8px 32px rgba(15, 30, 61, 0.11);
  transform: translateY(-3px);
}

.prod-card__img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--cream);
  cursor: zoom-in;
  /* As a column flex item, min-height defaults to auto — the image's
     intrinsic height then wins over aspect-ratio and the wrap renders far
     taller than square. flex:none + min-height:0 hold the 1:1 box. */
  flex: 0 0 auto;
  min-width: 0;
  min-height: 0;
}

.prod-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.68s cubic-bezier(0.22, 1, 0.36, 1);
  display: block;
}

.prod-card:hover .prod-card__img-wrap img {
  transform: scale(1.06);
}

.prod-card__click-label {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  background: rgba(15, 30, 61, 0.65);
  color: var(--white);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 3px 9px;
  border-radius: 20px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.32s ease;
}

.prod-card:hover .prod-card__click-label {
  opacity: 1;
}

/* ─── Product Card — variant arrows & counter ─── */
.prod-card__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 50%;
  background: rgba(15, 30, 61, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  opacity: 0;
  appearance: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  transition: opacity 0.32s ease, background 0.28s ease;
}

.prod-card__img-wrap:hover .prod-card__arrow {
  opacity: 1;
}

.prod-card__arrow:hover {
  background: var(--gold);
}

.prod-card__arrow--prev {
  left: 10px;
}

.prod-card__arrow--next {
  right: 10px;
}

.prod-card__arrow svg {
  width: 16px;
  height: 16px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.prod-card__counter {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 3;
  background: rgba(15, 30, 61, 0.65);
  color: var(--white);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 3px 9px;
  border-radius: 20px;
  pointer-events: none;
}

@media (max-width: 768px) {
  .prod-card__arrow {
    opacity: 1;
  }

  .prod-card__click-label {
    opacity: 1;
  }
}

@media (max-width: 480px) {
  .prod-card__arrow {
    width: 28px;
    height: 28px;
  }

  .prod-card__arrow--prev {
    left: 6px;
  }

  .prod-card__arrow--next {
    right: 6px;
  }

  .prod-card__arrow svg {
    width: 13px;
    height: 13px;
  }

  .prod-card__counter {
    bottom: 6px;
    right: 6px;
    font-size: 0.62rem;
    padding: 2px 7px;
  }

  .prod-card__click-label {
    top: 6px;
    left: 6px;
    font-size: 0.62rem;
    padding: 2px 7px;
  }
}

.prod-card__body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 4px;
  min-width: 0;
}

.prod-card__name {
  font-size: 0.88rem;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  margin: 0;
}

.prod-card__cat {
  font-size: 0.73rem;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-family: 'Source Sans 3', sans-serif;
}

.prod-card__btn {
  margin-top: auto;
  padding-top: 10px;
  font-size: 0.82rem;
  padding: 8px 14px;
  text-align: center;
  display: block;
  border-radius: 8px;
}

.products-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 64px 0;
  color: var(--text);
  opacity: 0.55;
  font-size: 1.05rem;
}

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

@media (max-width: 960px) {
  .products-layout {
    grid-template-columns: 190px 1fr;
    gap: 32px;
  }

  .products-cta-band__inner {
    flex-direction: column;
    text-align: center;
    padding: 40px 32px;
    gap: 28px;
  }

  .products-cta-band__text p {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  /* SAFETY NET — not the fix. Stops any single overflowing element from
     making the whole document pan sideways on mobile. Scoped to <=768px
     because both sticky elements on the site (.contact-panel,
     .products-sidebar) are already set to position:static below 960px. */
  html,
  body {
    overflow-x: hidden;
  }

  .products-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .products-sidebar {
    position: static;
  }

  .products-sidebar__title {
    display: none;
  }

  .products-filter-list {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 6px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
  }

  .products-filter-list::-webkit-scrollbar {
    display: none;
  }

  .products-filter-item {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 7px 14px;
    border-radius: 20px;
    border: 1.5px solid var(--cream-dark);
    background: var(--white);
    font-size: 0.84rem;
    margin-bottom: 0;
    justify-content: center;
  }

  .products-filter-item:hover {
    background: var(--cream-dark);
  }

  .products-filter-item--active {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
  }

  .products-filter-count {
    display: none;
  }

  .prod-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .products-hero {
    padding: calc(var(--header-h) + 24px) 0 28px;
  }

  .products-section {
    padding: 36px 0 64px;
  }

  .products-cta-band {
    padding: 44px 0;
  }

  .products-cta-band__inner {
    padding: 32px 24px;
    border-radius: 12px;
  }
}

@media (max-width: 480px) {
  .prod-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .prod-card__body {
    padding: 10px 12px 12px;
  }

  .prod-card__name {
    font-size: 0.8rem;
  }

  .prod-card__btn {
    font-size: 0.78rem;
    padding: 7px 10px;
  }
}
