/* ============================================
   CLIQUE Cannabis — Global Styles
   Brand: Minimal · Modern · Clean
   No rounded corners. Generous whitespace.
   ============================================ */

/* --- Font Faces --- */
@font-face {
  font-family: 'Montecatini Pro';
  src: url('/fonts/MontecatiniPro-Normale.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Sweet Sans Pro';
  src: url('/fonts/SweetSansProLight.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Sweet Sans Pro';
  src: url('/fonts/SweetSansProMedium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Sweet Sans Pro';
  src: url('/fonts/SweetSansProBold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* --- Custom Properties --- */
:root {
  --clique-black: #161B1B;
  --clique-cream: #FAF8F3;
  --clique-green: #99D1B1;
  --clique-yellow: #FDF68C;
  --clique-pink: #EBAFA4;
  --clique-purple: #BDB4E3;
  --clique-blue: #B1C9D1;
  --clique-white: #FFFFFF;

  --font-display: 'Montecatini Pro', 'Georgia', serif;
  --font-body: 'Sweet Sans Pro', 'Helvetica Neue', Arial, sans-serif;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  color: var(--clique-black);
  background-color: var(--clique-cream);
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* --- Container --- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* --- Label (shared) --- */
.label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clique-green);
  margin-bottom: 16px;
}

/* --- Button --- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 36px;
  border: 1px solid var(--clique-black);
  color: var(--clique-black);
  background: transparent;
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
  cursor: pointer;
  text-align: center;
}

.btn:hover {
  background: var(--clique-black);
  color: var(--clique-cream);
}

.btn--filled {
  background: var(--clique-black);
  color: var(--clique-cream);
  border-color: var(--clique-black);
}

.btn--filled:hover {
  background: transparent;
  color: var(--clique-black);
}

.btn--light {
  border-color: var(--clique-cream);
  color: var(--clique-cream);
}

.btn--light:hover {
  background: var(--clique-cream);
  color: var(--clique-black);
}

/* --- Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 { transition-delay: 0.12s; }
.reveal--delay-2 { transition-delay: 0.24s; }
.reveal--delay-3 { transition-delay: 0.36s; }

/* ============================================
   AGE GATE
   ============================================ */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--clique-black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.age-gate--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.age-gate__content {
  text-align: center;
  color: var(--clique-cream);
  padding: 40px;
}

.age-gate__content img {
  width: 160px;
  margin: 0 auto 40px;
}

.age-gate__content h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: normal;
  margin-bottom: 8px;
}

.age-gate__content p {
  font-size: 14px;
  opacity: 0.5;
  margin-bottom: 36px;
}

.age-gate__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
  background: rgba(250, 248, 243, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: padding 0.4s ease, box-shadow 0.4s ease;
}

.nav--scrolled {
  padding: 16px 0;
  box-shadow: 0 1px 0 rgba(22, 27, 27, 0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo img {
  height: 26px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav__link {
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clique-black);
  transition: opacity 0.3s ease;
}

.nav__link:hover {
  opacity: 0.5;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav__btn {
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 28px;
  border: 1px solid var(--clique-black);
  transition: background 0.3s ease, color 0.3s ease;
}

.nav__btn:hover {
  background: var(--clique-black);
  color: var(--clique-cream);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--clique-black);
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: var(--clique-black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--clique-cream);
  transition: opacity 0.3s ease;
}

.mobile-menu a:hover {
  opacity: 0.6;
}

.mobile-menu__close {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 32px;
  color: var(--clique-cream);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img,
.hero__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(250, 248, 243, 0.55);
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--clique-black);
  max-width: 720px;
  padding: 120px 40px 80px;
}

.hero__label {
  color: var(--clique-black);
  opacity: 0.6;
  margin-bottom: 24px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 80px);
  font-weight: normal;
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero__subtitle {
  font-size: 17px;
  line-height: 1.7;
  opacity: 0.7;
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__actions .btn {
  border-color: var(--clique-black);
  color: var(--clique-black);
}

.hero__actions .btn:hover {
  background: var(--clique-black);
  color: var(--clique-cream);
}

.hero__actions .btn--filled {
  background: var(--clique-black);
  color: var(--clique-cream);
  border-color: var(--clique-black);
}

.hero__actions .btn--filled:hover {
  background: transparent;
  color: var(--clique-black);
}

/* ============================================
   PRODUCTS
   ============================================ */
.products {
  padding: 80px 0 60px;
}

.products__header {
  max-width: 560px;
  margin-bottom: 40px;
}

.products__header h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: normal;
  line-height: 1.1;
  margin-bottom: 20px;
}

.products__header > p:last-child {
  font-size: 16px;
  opacity: 0.65;
  line-height: 1.7;
}

/* Lineup Grid */
.lineup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

/* Lineup Showcase */
.lineup {
  text-align: center;
  padding: 20px 16px;
  border-right: 1px solid rgba(22, 27, 27, 0.06);
}

.lineup:last-child {
  border-right: none;
}

.lineup__image-wrap {
  display: block;
  position: relative;
  width: 100%;
  max-width: 220px;
  margin: 0 auto 16px;
  aspect-ratio: 1;
}

.lineup__image-wrap img,
.lineup__image-wrap .lineup__placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.lineup__image--active {
  opacity: 1 !important;
  pointer-events: auto !important;
}

.lineup__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(189, 180, 227, 0.12);
}

.lineup__placeholder span {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.4;
}

.lineup__flavor-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: normal;
  margin-bottom: 12px;
  min-height: 1.2em;
  transition: opacity 0.3s ease;
}

.lineup__flavor-name--fading {
  opacity: 0;
}

.lineup__dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 16px;
}

.lineup__dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.3s ease, transform 0.3s ease;
  padding: 0;
}

.lineup__dot:hover {
  transform: scale(1.15);
}

.lineup__dot--active {
  border-color: var(--clique-black);
}

.lineup__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: normal;
  line-height: 1.1;
  margin-bottom: 8px;
}

.lineup__desc {
  font-size: 13px;
  line-height: 1.6;
  opacity: 0.6;
  max-width: 280px;
  margin: 0 auto 14px;
}

.lineup__image-wrap {
  cursor: pointer;
  transition: transform 0.35s ease;
}

.lineup__image-wrap:hover {
  transform: scale(1.04);
}

.lineup__btn {
  font-size: 11px;
  padding: 12px 32px;
  margin-top: 4px;
}

/* ============================================
   SHOWCASE (Dark Section)
   ============================================ */
.showcase {
  background: var(--clique-black);
  color: var(--clique-cream);
  padding: 120px 0;
}

.showcase__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.showcase__header h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: normal;
  line-height: 1.1;
  margin-bottom: 24px;
}

.showcase__header > p {
  font-size: 16px;
  line-height: 1.75;
  opacity: 0.7;
}

.showcase__pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 40px;
}

.showcase__pillar {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.showcase__pillar-img {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  overflow: hidden;
}

.showcase__pillar-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase__pillar-text h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: normal;
  line-height: 1.2;
  margin-bottom: 8px;
}

.showcase__pillar-text p {
  font-size: 14px;
  line-height: 1.65;
  opacity: 0.6;
  font-weight: 300;
}

.showcase__cta {
  text-align: center;
  margin-top: 56px;
}

/* ============================================
   STORY
   ============================================ */
.story {
  padding: 120px 0;
}

.story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.story__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.story__images img:first-child {
  grid-column: 1 / -1;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.story__images img:nth-child(2),
.story__images img:nth-child(3) {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.story__content h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: normal;
  line-height: 1.1;
  margin-bottom: 28px;
}

.story__content p {
  font-size: 16px;
  line-height: 1.75;
  opacity: 0.7;
  margin-bottom: 20px;
}

.story__content .btn {
  margin-top: 20px;
}

/* ============================================
   LOCATIONS
   ============================================ */
.locations {
  background: var(--clique-cream);
  border-top: 1px solid rgba(22, 27, 27, 0.06);
}

.locations__header {
  text-align: center;
  max-width: 540px;
  margin: 0 auto;
  padding: 80px 40px 48px;
}

.locations__header h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: normal;
  line-height: 1.1;
  margin-bottom: 16px;
}

.locations__header > p:last-child {
  font-size: 16px;
  opacity: 0.6;
}

.locations__header strong {
  font-weight: 500;
  color: var(--clique-green);
}

/* Map layout */
.locations__map-wrap {
  display: grid;
  grid-template-columns: 360px 1fr;
  height: 70vh;
  min-height: 520px;
}

.locations__sidebar {
  background: var(--clique-black);
  color: var(--clique-cream);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.locations__search {
  padding: 20px;
  border-bottom: 1px solid rgba(250, 248, 243, 0.08);
}

.locations__search-input {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 13px;
  background: rgba(250, 248, 243, 0.06);
  border: 1px solid rgba(250, 248, 243, 0.1);
  color: var(--clique-cream);
  outline: none;
  transition: border-color 0.3s ease;
}

.locations__search-input::placeholder {
  color: rgba(250, 248, 243, 0.3);
}

.locations__search-input:focus {
  border-color: var(--clique-green);
}

.locations__list {
  flex: 1;
  overflow-y: auto;
  list-style: none;
}

.locations__list::-webkit-scrollbar {
  width: 4px;
}

.locations__list::-webkit-scrollbar-track {
  background: transparent;
}

.locations__list::-webkit-scrollbar-thumb {
  background: rgba(250, 248, 243, 0.15);
}

.locations__item {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(250, 248, 243, 0.05);
  cursor: pointer;
  transition: background 0.2s ease;
}

.locations__item:hover,
.locations__item.active {
  background: rgba(250, 248, 243, 0.06);
}

.locations__item-name {
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 4px;
}

.locations__item-address {
  font-size: 12px;
  opacity: 0.45;
  line-height: 1.5;
}

.locations__item-link {
  display: inline-block;
  margin-top: 6px;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clique-green);
  transition: opacity 0.2s ease;
}

.locations__item-link:hover {
  opacity: 0.7;
}

.locations__map {
  width: 100%;
  height: 100%;
}

/* Leaflet popup override */
.leaflet-popup-content-wrapper {
  border-radius: 0 !important;
  box-shadow: 0 4px 20px rgba(22, 27, 27, 0.15) !important;
  padding: 0 !important;
}

.leaflet-popup-content {
  margin: 0 !important;
  font-family: var(--font-body) !important;
}

.leaflet-popup-tip {
  box-shadow: none !important;
}

.map-popup {
  padding: 16px 20px;
  min-width: 200px;
}

.map-popup__name {
  font-weight: 500;
  font-size: 14px;
  color: var(--clique-black);
  margin-bottom: 4px;
}

.map-popup__address {
  font-size: 12px;
  color: rgba(22, 27, 27, 0.55);
  line-height: 1.5;
  margin-bottom: 8px;
}

.map-popup__link {
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clique-green);
}

.map-popup__link:hover {
  opacity: 0.7;
}

/* ============================================
   INSTAGRAM FEED
   ============================================ */
.instagram {
  padding: 120px 0;
  background: var(--clique-cream);
}

.instagram__header {
  text-align: center;
  margin-bottom: 56px;
}

.instagram__header h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: normal;
  line-height: 1.1;
  margin-bottom: 16px;
}

.instagram__header > p {
  font-size: 16px;
  opacity: 0.55;
}

.instagram__feed {
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 48px;
}

.instagram__feed iframe {
  width: 100% !important;
  border: none;
}

.instagram__cta {
  text-align: center;
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter {
  padding: 120px 0;
  background: var(--clique-black);
  color: var(--clique-cream);
}

.newsletter__content {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}

.newsletter__content h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: normal;
  line-height: 1.1;
  margin-bottom: 16px;
}

.newsletter__content > p {
  font-size: 16px;
  opacity: 0.55;
  margin-bottom: 40px;
}

.newsletter__form {
  max-width: 480px;
  margin: 0 auto;
}

.newsletter__success {
  display: none;
  font-size: 16px;
  color: var(--clique-green);
  margin-top: 24px;
}

.newsletter__success.visible {
  display: block;
}

/* --- Shared Form Styles --- */
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.form__input {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  border: 1px solid rgba(250, 248, 243, 0.2);
  background: transparent;
  color: var(--clique-cream);
  outline: none;
  transition: border-color 0.3s ease;
}

.form__input::placeholder {
  color: rgba(250, 248, 243, 0.3);
}

.form__input:focus {
  border-color: var(--clique-green);
}

/* Style the date input to match placeholders */
.form__input[type="date"] {
  color: rgba(250, 248, 243, 0.3);
}

.form__input[type="date"].has-value {
  color: var(--clique-cream);
}

/* Webkit date picker styling */
.form__input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.7);
  cursor: pointer;
}

.form__submit {
  width: 100%;
  margin-top: 4px;
  padding: 16px;
}

/* ============================================
   JOIN POPUP
   ============================================ */
.popup {
  position: fixed;
  inset: 0;
  z-index: 9997;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.popup.open {
  opacity: 1;
  visibility: visible;
}

.popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(22, 27, 27, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.popup__card {
  position: relative;
  background: var(--clique-black);
  color: var(--clique-cream);
  padding: 56px 48px;
  max-width: 520px;
  width: 90%;
  text-align: center;
  transform: translateY(24px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.popup.open .popup__card {
  transform: translateY(0);
}

.popup__close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 28px;
  color: var(--clique-cream);
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.4;
  transition: opacity 0.3s ease;
  line-height: 1;
}

.popup__close:hover {
  opacity: 1;
}

.popup__card .label {
  margin-bottom: 12px;
}

.popup__card h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: normal;
  line-height: 1.1;
  margin-bottom: 12px;
}

.popup__card > p {
  font-size: 15px;
  opacity: 0.55;
  margin-bottom: 32px;
}

.popup__form {
  max-width: 100%;
}

.popup__success {
  display: none;
  font-size: 16px;
  color: var(--clique-green);
  margin-top: 24px;
}

.popup__success.visible {
  display: block;
}

/* --- Password Modal --- */
.form__input--full {
  width: 100%;
  margin-bottom: 8px;
}

.password-error {
  display: none;
  font-size: 13px;
  color: var(--clique-pink);
  margin-bottom: 12px;
}

.password-error.visible {
  display: block;
}

/* --- Dispensary Assets Browser --- */
.assets {
  padding: 0 0 80px;
}

.assets__breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 32px;
  font-size: 13px;
}

.assets__breadcrumb a {
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clique-green);
  transition: opacity 0.3s ease;
}

.assets__breadcrumb a:hover {
  opacity: 0.6;
}

.assets__breadcrumb a.active {
  color: var(--clique-black);
  opacity: 0.5;
  cursor: default;
}

.assets__breadcrumb-sep {
  margin: 0 8px;
  opacity: 0.3;
  font-size: 12px;
}

.assets__loading {
  text-align: center;
  padding: 80px 0;
  font-size: 14px;
  opacity: 0.5;
}

.assets__error,
.assets__empty {
  text-align: center;
  padding: 60px 0;
  font-size: 14px;
  opacity: 0.5;
}

.assets__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
}

.assets__card {
  text-align: center;
}

.assets__thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1;
  background: rgba(22, 27, 27, 0.03);
  border: 1px solid rgba(22, 27, 27, 0.06);
  overflow: hidden;
  margin-bottom: 12px;
  transition: border-color 0.3s ease;
}

.assets__thumb:hover {
  border-color: var(--clique-green);
}

.assets__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.assets__thumb--folder {
  background: rgba(153, 209, 177, 0.08);
  cursor: pointer;
}

.assets__thumb--folder:hover {
  background: rgba(153, 209, 177, 0.15);
}

.assets__thumb--folder svg {
  width: 48px;
  height: 48px;
  color: var(--clique-green);
  opacity: 0.6;
}

.assets__ext {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  opacity: 0.25;
}

.assets__name {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 4px;
  word-break: break-word;
}

.assets__download {
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clique-green);
  transition: opacity 0.3s ease;
}

.assets__download:hover {
  opacity: 0.6;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 64px 0 40px;
  background: var(--clique-black);
  color: var(--clique-cream);
  border-top: 1px solid rgba(250, 248, 243, 0.06);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(250, 248, 243, 0.06);
}

.footer__brand img {
  height: 22px;
  width: auto;
  margin-bottom: 16px;
  opacity: 0.6;
}

.footer__brand p {
  font-size: 13px;
  line-height: 1.65;
  opacity: 0.4;
  max-width: 280px;
}

.footer__col-title {
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.35;
  margin-bottom: 20px;
}

.footer__links li {
  margin-bottom: 12px;
}

.footer__links a {
  font-size: 14px;
  opacity: 0.55;
  transition: opacity 0.3s ease;
}

.footer__links a:hover {
  opacity: 1;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
}

.footer__copyright {
  font-size: 12px;
  opacity: 0.25;
}

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

.footer__legal a {
  font-size: 12px;
  opacity: 0.25;
  transition: opacity 0.3s ease;
}

.footer__legal a:hover {
  opacity: 0.6;
}

/* ============================================
   LEGAL PAGES (Privacy Policy, Terms)
   ============================================ */
.legal {
  padding: 160px 0 80px;
  background: var(--clique-cream);
  min-height: 100vh;
}

.legal__content {
  max-width: 720px;
}

.legal__content h1 {
  font-family: 'Montecatini Pro', serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: normal;
  line-height: 1.15;
  margin-bottom: 8px;
}

.legal__updated {
  font-size: 13px;
  opacity: 0.4;
  margin-bottom: 48px;
}

.legal__content h2 {
  font-family: 'Sweet Sans Pro', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-top: 40px;
  margin-bottom: 12px;
}

.legal__content p {
  font-size: 15px;
  line-height: 1.75;
  opacity: 0.7;
  margin-bottom: 12px;
}

.legal__content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 12px;
}

.legal__content ul li {
  font-size: 15px;
  line-height: 1.75;
  opacity: 0.7;
  margin-bottom: 6px;
}

.legal__content a {
  color: var(--clique-black);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.3s ease;
}

.legal__content a:hover {
  opacity: 0.5;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }

  .products,
  .showcase,
  .story,
  .locations,
  .instagram,
  .newsletter {
    padding: 80px 0;
  }

  .showcase__pillars {
    gap: 40px 32px;
  }

  .showcase__pillar-img {
    width: 100px;
    height: 100px;
  }

  .story__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .locations__map-wrap {
    grid-template-columns: 300px 1fr;
    height: 60vh;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }

  .products,
  .showcase,
  .story,
  .locations,
  .instagram,
  .newsletter {
    padding: 64px 0;
  }

  .nav__links,
  .nav__actions {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .hero__content {
    padding: 120px 24px 60px;
  }

  .hero__title {
    font-size: clamp(36px, 10vw, 56px);
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .hero__actions .btn {
    width: 100%;
    max-width: 280px;
  }

  .locations__map-wrap {
    grid-template-columns: 1fr;
    height: auto;
  }

  .locations__sidebar {
    max-height: 240px;
    order: 1;
  }

  .locations__map {
    height: 50vh;
    min-height: 320px;
  }

  .showcase__pillars {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .showcase__pillar-img {
    width: 96px;
    height: 96px;
  }

  .showcase__pillar-text h3 {
    font-size: 18px;
  }

  .showcase__header {
    margin-bottom: 48px;
  }

  .story__images {
    gap: 4px;
  }

  .form__row {
    grid-template-columns: 1fr;
  }

  .popup__card {
    padding: 40px 28px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ============================================
   DETAIL PAGES (originals, mindsets, mighties)
   ============================================ */

/* Detail Hero */
.detail-hero {
  padding: 160px 0 80px;
  text-align: center;
}

.detail-hero__back {
  display: inline-block;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clique-green);
  margin-bottom: 32px;
  transition: opacity 0.3s ease;
}

.detail-hero__back:hover {
  opacity: 0.6;
}

.detail-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: normal;
  line-height: 1.05;
  margin-bottom: 16px;
}

.detail-hero p {
  font-size: 17px;
  line-height: 1.7;
  opacity: 0.6;
  max-width: 540px;
  margin: 0 auto;
}

/* Flavor Card */
.flavor-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid rgba(22, 27, 27, 0.06);
}

.flavor-card:last-child {
  border-bottom: none;
}

.flavor-card--reverse {
  direction: rtl;
}

.flavor-card--reverse > * {
  direction: ltr;
}

.flavor-card__image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.flavor-card__image-wrap img {
  max-width: 100%;
  max-height: 400px;
  object-fit: contain;
}

.flavor-card__ratio {
  margin-top: 12px;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-align: center;
  opacity: 0.55;
}

.flavor-card__swatch {
  width: 32px;
  height: 4px;
  margin-bottom: 20px;
}

.flavor-card__name {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: normal;
  line-height: 1.1;
  margin-bottom: 12px;
}

.flavor-card__tagline {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.6;
  margin-bottom: 28px;
}

.flavor-card__specs {
  list-style: none;
  margin-bottom: 24px;
}

.flavor-card__specs li {
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(22, 27, 27, 0.06);
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.flavor-card__specs li:first-child {
  border-top: 1px solid rgba(22, 27, 27, 0.06);
}

.flavor-card__specs-label {
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.4;
  flex-shrink: 0;
}

.flavor-card__specs-value {
  text-align: right;
  opacity: 0.7;
}

.flavor-card__ingredients {
  font-size: 12px;
  line-height: 1.7;
  opacity: 0.4;
}

/* Coming Soon badge */
.flavor-card--coming-soon {
  opacity: 0.55;
}

.flavor-card__badge {
  display: inline-block;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 16px;
  border: 1px solid rgba(22, 27, 27, 0.15);
  margin-bottom: 20px;
}

.flavor-card__placeholder {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(189, 180, 227, 0.1);
}

.flavor-card__placeholder span {
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.35;
}

/* Detail Page Responsive */
@media (max-width: 1024px) {
  .flavor-card {
    gap: 48px;
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .detail-hero {
    padding: 120px 0 48px;
  }

  .flavor-card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 0;
  }

  .flavor-card--reverse {
    direction: ltr;
  }

  .flavor-card__image-wrap {
    padding: 16px;
  }

  .flavor-card__image-wrap img {
    max-height: 300px;
  }
}

@media (max-width: 600px) {
  .lineup-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .lineup {
    padding: 32px 0;
    border-right: none;
    border-bottom: 1px solid rgba(22, 27, 27, 0.06);
  }

  .lineup:last-child {
    border-bottom: none;
  }

  .lineup__image-wrap {
    max-width: 240px;
  }

  .lineup__title {
    font-size: 26px;
  }

  .lineup__desc {
    font-size: 15px;
    max-width: 400px;
  }
}
