/*
  Solancia — Premium Apparel & Lifestyle
  Stylesheet: neutral, sophisticated palette; premium serif/sans typography; micro-interactions
*/
:root {
  --bg: #0e0e10;
  --bg-alt: #121216;
  --card: #15151a;
  --surface: #1b1b21;
  --text: #f2f2f3;
  --muted: #b9bac6;
  --primary: #e6c8a6; /* champagne gold */
  --primary-700: #c7a57c;
  --accent: #9fb9ff;
  --border: #2a2a33;
  --shadow: rgba(0,0,0,.3);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1200px, 92%); margin: 0 auto; }
.section { padding: clamp(60px, 10vw, 120px) 0; }
.section--alt { background: var(--bg-alt); }
.section__title { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 44px); margin: 0 0 16px; letter-spacing: .3px; }
.section__lead { color: var(--muted); margin: 0 0 28px; }
.center { text-align: center; }
.narrow { width: min(840px, 92%); margin: 0 auto; }
.muted { color: var(--muted); }

/* Navigation */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(14,14,16,.6); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.logo { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 22px; letter-spacing: .8px; }
.logo--footer { font-size: 20px; display: inline-block; margin-bottom: 10px; }
.nav__menu { display: flex; gap: 24px; }
.nav__menu a { color: var(--muted); font-weight: 500; font-size: 14px; padding: 8px 10px; border-radius: 8px; transition: color .2s ease, background .2s ease; }
.nav__menu a:hover { color: var(--text); background: rgba(255,255,255,.05); }
.nav__toggle { display: none; background: none; color: var(--text); font-size: 20px; border: none; }

/* Hero */
.hero { position: relative; height: 88vh; min-height: 560px; display: grid; place-items: center; overflow: hidden; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.35)); z-index: 1; }
.hero__slider, .hero__slide { position: absolute; inset: 0; }
.hero__slide { background-size: cover; background-position: center; filter: saturate(.95) contrast(1.05); }
.swiper-pagination-bullet { background: rgba(255,255,255,.6); }
.swiper-pagination-bullet-active { background: var(--primary); }
.hero__content { position: relative; z-index: 2; text-align: center; padding-top: 60px; }
.hero__title { font-family: 'Playfair Display', serif; font-size: clamp(34px, 6vw, 64px); line-height: 1.1; margin: 0 0 14px; }
.hero__subtitle { color: var(--muted); max-width: 760px; margin: 0 auto 22px; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; border: 1px solid var(--border); color: var(--text); padding: 12px 20px; border-radius: 999px; cursor: pointer; transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease; will-change: transform; }
.btn--primary { background: var(--primary); color: #1a1a1a; border-color: transparent; }
.btn--primary:hover { transform: translateY(-2px); background: var(--primary-700); }
.btn--light { background: rgba(255,255,255,.9); color: #111; border-color: transparent; }
.btn--light:hover { background: #fff; transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn--ghost:hover { background: rgba(255,255,255,.06); border-color: #3a3a44; }
.btn--lg { padding: 14px 26px; font-weight: 600; }

/* About */
.about__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.about__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 22px; }
.about__card { background: var(--card); border: 1px solid var(--border); padding: 18px; border-radius: 14px; box-shadow: 0 10px 24px var(--shadow); transition: transform .25s ease, box-shadow .25s ease; }
.about__card i { color: var(--primary); margin-bottom: 8px; }
.about__card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px var(--shadow); }
.about__media { height: 480px; border-radius: 18px; overflow: hidden; border: 1px solid var(--border); }
.about__media-inner { width: 100%; height: 100%; background-size: cover; background-position: center; transform: scale(1.08); }

/* Founders */
.section--alt .section__title { color: #fff; }
.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--5 { grid-template-columns: repeat(5, 1fr); }
.grid--6 { grid-template-columns: repeat(6, 1fr); }
.profile { background: var(--card); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; transition: transform .2s ease, box-shadow .2s ease; }
.profile:hover { transform: translateY(-4px); box-shadow: 0 14px 28px var(--shadow); }
.profile__photo { width: 120px; height: 120px; margin: 24px auto 12px; border-radius: 50%; background-size: cover; background-position: center; border: 2px solid var(--primary); transition: transform .3s ease; }
.profile:hover .profile__photo { transform: scale(1.04); }
.profile__name { text-align: center; margin: 6px 0 2px; font-weight: 600; }
.profile__title, .profile__bio { text-align: center; color: var(--muted); margin: 0 18px 18px; }

/* Directors */
.directors__grid { align-items: start; }
.director { background: var(--card); border: 1px solid var(--border); padding: 16px; border-radius: 14px; text-align: center; }
.avatar { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), #fff1d6); color: #1a1a1a; font-weight: 700; display: grid; place-items: center; margin: 0 auto 10px; }
.director__name { font-weight: 600; }

/* Categories */
.card { background: var(--card); border: 1px solid var(--border); border-radius: 18px; overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 12px 24px var(--shadow); }
.card__media { height: 220px; background-size: cover; background-position: center; transition: transform .4s ease; }
.card__body { padding: 18px; }
.card__title { font-family: 'Playfair Display', serif; margin: 0 0 8px; }
.cat-card:hover .card__media { transform: scale(1.06); }

/* Chips */
.chip-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.chip { padding: 10px 14px; background: var(--surface); border: 1px solid var(--border); border-radius: 999px; color: var(--text); font-weight: 500; }
.chip--box { border-radius: 12px; background: var(--card); }
.chips-grid { grid-template-columns: repeat(5, 1fr); gap: 12px; }

/* Boxes (What we sell & do, Our products) */
.box-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.box { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 18px; box-shadow: 0 10px 24px var(--shadow); transition: transform .2s ease, box-shadow .2s ease; }
.box:hover { transform: translateY(-4px); box-shadow: 0 16px 32px var(--shadow); }
.box i { color: var(--primary); font-size: 22px; margin-bottom: 8px; display: inline-block; }
.box__title { font-family: 'Playfair Display', serif; margin: 0 0 8px; }
.box__list { list-style: none; margin: 0; padding: 0; color: var(--muted); }
.box__list li { margin: 6px 0; }

/* Brand panels */
panels { display: grid; }
.panels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.panel { display: flex; gap: 12px; align-items: flex-start; background: var(--surface); border: 1px solid var(--border); padding: 16px; border-radius: 14px; }
.panel i { color: var(--primary); font-size: 20px; padding-top: 4px; }

/* Discover */
.discover { position: relative; overflow: hidden; }
.discover__bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.1); filter: saturate(.9) contrast(1.05); }
.discover__content { position: relative; z-index: 1; text-align: center; padding: 90px 0; }
.light { color: #f8f8f9; }

/* Store */
.store__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items: start; }
.store__info { background: var(--card); border: 1px solid var(--border); padding: 18px; border-radius: 14px; }
.list--icons { list-style: none; padding: 0; margin: 0; color: var(--muted); }
.list--icons li { margin: 8px 0; }
.list--icons i { color: var(--primary); margin-right: 8px; }

/* Why */
.feature-grid .feature { background: var(--card); border: 1px solid var(--border); padding: 18px; border-radius: 16px; text-align: center; transition: transform .2s ease; }
.feature-grid .feature i { color: var(--primary); font-size: 24px; margin-bottom: 6px; }
.feature-grid .feature:hover { transform: translateY(-4px); }
.counters { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 26px; }
.counter { background: var(--surface); border: 1px solid var(--border); padding: 18px; border-radius: 14px; text-align: center; }
.counter__num { font-size: 34px; font-weight: 700; color: var(--primary); }
.counter__label { color: var(--muted); }

/* CTA */
.cta { position: relative; overflow: hidden; }
.cta__bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.12); filter: brightness(.6); }
.cta__content { position: relative; z-index: 1; text-align: center; padding: 100px 0; }
.cta__title { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 48px); margin: 0 0 10px; color: #fff; }
.cta__subtitle { color: #e9e9ee; margin-bottom: 18px; }
.form.newsletter { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; align-items: center; }
.form.newsletter input[type="email"] { padding: 12px 14px; border-radius: 999px; border: 1px solid var(--border); background: rgba(255,255,255,.92); min-width: 280px; }
.checkbox { display: flex; gap: 8px; align-items: center; color: #f5f5f7; }
.form__message { margin-top: 12px; color: #fff; }
.social { display: flex; gap: 16px; justify-content: center; margin-top: 16px; }
.social a { color: #fff; opacity: .85; transition: opacity .2s ease, transform .2s ease; }
.social a:hover { opacity: 1; transform: translateY(-2px); }

/* Footer */
.footer { background: #0c0c0f; border-top: 1px solid var(--border); padding-top: 40px; }
.footer__grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 24px; padding-bottom: 24px; }
.footer .list { list-style: none; padding: 0; margin: 0; }
.footer .list li { margin: 8px 0; }
.footer .list a { color: var(--muted); }
.footer .list a:hover { color: #fff; }
.footer__bottom { border-top: 1px solid var(--border); padding: 14px 0; color: var(--muted); text-align: center; }

/* Rich text */
.richtext p { margin: 0 0 14px; color: #e9e9ef; }

/* Parallax attribute */
.parallax [data-parallax], [data-parallax], .discover__bg, .cta__bg, .about__media-inner { will-change: transform; }

/* Responsive */
@media (max-width: 980px) {
  .about__grid, .store__grid { grid-template-columns: 1fr; }
  .grid--3 { grid-template-columns: 1fr 1fr; }
  .grid--4 { grid-template-columns: 1fr 1fr; }
  .grid--5 { grid-template-columns: 1fr 1fr 1fr; }
  .grid--6 { grid-template-columns: repeat(3, 1fr); }
  .box-grid { grid-template-columns: 1fr 1fr; }
  .panels { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav__menu { display: none; position: absolute; top: 56px; right: 4%; background: rgba(18,18,22,.95); border: 1px solid var(--border); border-radius: 12px; padding: 12px; flex-direction: column; width: 220px; }
  .nav__menu.show { display: flex; }
  .nav__toggle { display: inline-flex; }
  .hero { height: 78vh; }
  .about__cards { grid-template-columns: 1fr; }
  .grid--3, .grid--4, .grid--5, .grid--6 { grid-template-columns: 1fr; }
  .counters { grid-template-columns: repeat(2, 1fr); }
  .box-grid, .panels { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}

/* Accessibility helpers */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
