/* RESET SIMPLE */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Helvetica Neue", Arial, sans-serif;
  background: #000;
  color: #fff;
}

/* LAYOUT */
.page {
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* BACKGROUND SLIDER */
.hero-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  transition: opacity 0.8s ease, background-image 0.8s ease;
}

.hero-bg-gradient {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.1), transparent),
    linear-gradient(to bottom, #000000, rgba(0, 0, 0, 0.75), #000000);
}

/* HEADER */
.site-header {
  position: relative;
  z-index: 5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.9rem 1.5rem;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-circle {
  height: 32px;
  width: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.logo-text {
  line-height: 1.2;
}

.logo-name {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.logo-tag {
  font-size: 10px;
  color: #a3a3a3;
}

/* NAV */
.main-nav {
  display: none;
  gap: 1.5rem;
  font-size: 13px;
  opacity: 0.9;
}

.main-nav a {
  text-decoration: none;
  color: #e5e5e5;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.main-nav a:hover {
  opacity: 1;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* CHIPS / BUTTONS */
.chip {
  font-size: 10px;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: transparent;
  color: #f5f5f5;
  cursor: pointer;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.chip-outline {
  font-size: 10px;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: transparent;
  color: #f5f5f5;
  cursor: pointer;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.chip-amber {
  border-color: rgba(251, 191, 36, 0.6);
  color: #fcd34d;
}

.btn {
  font-size: 11px;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: #fff;
  cursor: pointer;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.btn-primary {
  background: #ffffff;
  color: #000;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn.full {
  width: 100%;
}

/* SECTIONS */
.section {
  position: relative;
  z-index: 1;
  padding: 4rem 0;
}

.section-bordered {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.75);
}

.section-dark {
  background: rgba(0, 0, 0, 0.85);
}

.section-glow-left {
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.14), transparent 60%),
    rgba(0, 0, 0, 0.85);
}

.section-glow-right {
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.14), transparent 60%),
    rgba(0, 0, 0, 0.85);
}

.section-title {
  font-size: 22px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-text {
  font-size: 14px;
  color: #d4d4d4;
  line-height: 1.6;
}

.section-text--wide {
  max-width: 48rem;
}

.section-note {
  font-size: 12px;
  color: #9ca3af;
}

/* HERO */
.hero {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: 3.5rem 1.5rem 3.5rem;
}

.hero-left {
  max-width: 520px;
}

.eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: #e5e5e5;
  margin: 0 0 0.75rem;
}

.hero-title {
  font-size: 32px;
  line-height: 1.1;
  margin: 0;
}

.hero-title span {
  display: block;
  font-weight: 600;
}

.hero-subtag {
  font-size: 13px;
  color: #d4d4d4;
  margin-top: 0.5rem;
}

.hero-text {
  margin-top: 1rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.hero-slider-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.hero-arrow {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  height: 26px;
  width: 26px;
  font-size: 14px;
  color: #e5e5e5;
  cursor: pointer;
}

.hero-dots {
  display: flex;
  gap: 0.3rem;
}

.dot {
  height: 6px;
  width: 6px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
}

.dot--active {
  background: #ffffff;
}

/* MATERIALS */
.hero-right {
  max-width: 500px;
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.4rem;
}

.material-item {
  aspect-ratio: 1 / 1;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
}

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

.materials-text {
  margin-top: 0.9rem;
  font-size: 11px;
  color: #a3a3a3;
  max-width: 320px;
}

/* GRID LAYOUTS */
.section-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.manifesto-body {
  font-size: 14px;
  color: #e5e5e5;
  line-height: 1.7;
}

.manifesto-paragraph + .manifesto-paragraph {
  margin-top: 1rem;
}

/* ABOUT CARD */
.section-visual {
  max-width: 420px;
  margin: 0 auto;
}

.about-card {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  background: #020202;
}

.about-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 0%, rgba(255, 255, 255, 0.16), transparent);
}

.about-inner {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.5rem;
  text-align: center;
}

.mini-label {
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #d4d4d4;
}

.about-title {
  font-size: 14px;
  color: #e5e5e5;
}

.about-meta {
  margin-top: 1.5rem;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #737373;
}

/* COLLECTION VISUAL */
.visual-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  background: #020202;
}

.visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.visual-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #000000, rgba(0, 0, 0, 0.05), transparent);
}

.visual-caption {
  position: absolute;
  left: 1.2rem;
  bottom: 1rem;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #e5e5e5;
}

.chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.chip-outline {
  font-size: 10px;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

/* SPEC LIST */
.spec-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  font-size: 13px;
  color: #d4d4d4;
}

.spec-list li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.spec-list li::before {
  content: "";
  margin-top: 0.45rem;
  display: inline-block;
  height: 3px;
  width: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
}

/* EDITABLE UI */
.edit-btn {
  font-size: 11px;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.86);
  color: #f5f5f5;
  cursor: pointer;
}

.edit-list-btn {
  margin-top: 0.75rem;
}

/* RITUELS */
.rituals-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.ritual-card {
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.85);
  padding: 1.75rem 1.5rem;
}

.strikethrough {
  text-decoration: line-through;
  opacity: 0.7;
}

.link-inline {
  border: none;
  background: none;
  color: #e5e5e5;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}

.history-card {
  margin-top: 2rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #020202;
  padding: 1.75rem 1.5rem;
}

.history-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

/* GALLERY */
.gallery-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.tabs {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.5rem;
}

.tab {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: #e5e5e5;
  font-size: 13px;
  cursor: pointer;
}

.tab--active {
  background: #ffffff;
  color: #000000;
}

.gallery-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-item {
  aspect-ratio: 4 / 5;
  border-radius: 1.3rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

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

/* YOU / COMMUNITY */
.gallery-you {
  margin-top: 1.5rem;
}

.dropzone {
  border-radius: 1.5rem;
  border: 1px dashed rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.9);
  padding: 1.75rem 1.5rem;
  text-align: center;
}

.dropzone-label {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.dropzone-note {
  font-size: 13px;
  color: #a3a3a3;
  margin: 0.9rem 0 1rem;
}

.you-grid {
  margin-top: 1.5rem;
}

.you-card {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 1.3rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

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

.you-status {
  position: absolute;
  left: 0.9rem;
  bottom: 0.7rem;
  font-size: 11px;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.you-dot {
  height: 6px;
  width: 6px;
  border-radius: 999px;
}

.you-dot--selected {
  background: #34d399;
}

.you-dot--pending {
  background: #fbbf24;
}

.you-status-btn {
  position: absolute;
  right: 0.8rem;
  top: 0.7rem;
  font-size: 11px;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.86);
  color: #f5f5f5;
  cursor: pointer;
}

/* PRESSE */
.press-card {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #020202;
  overflow: hidden;
}

.press-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.2), transparent);
}

.press-inner {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
}

/* CONTACT & NEWSLETTER */
.contact-form {
  margin-top: 1.5rem;
  max-width: 22rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 12px;
  margin-bottom: 0.75rem;
}

.form-field label {
  color: #e5e5e5;
}

.form-field input,
.form-field textarea {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: #000000;
  color: #f5f5f5;
  padding: 0.5rem 0.8rem;
  font-size: 12px;
  outline: none;
}

.form-field textarea {
  border-radius: 1rem;
  min-height: 120px;
  resize: vertical;
}

.form-note {
  font-size: 11px;
  color: #9ca3af;
}

.newsletter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.newsletter-row input {
  min-width: 220px;
}

/* FOOTER */
.site-footer {
  position: relative;
  z-index: 5;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.9);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: #9ca3af;
  padding: 0.9rem 1.5rem;
}

/* MODAL */
.hidden {
  display: none !important;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 20;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(12px);
}

.modal-content {
  position: relative;
  max-width: 480px;
  margin: 4rem auto;
  padding: 1.8rem 1.5rem 1.7rem;
  border-radius: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.95);
}

.modal-close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: transparent;
  color: #f5f5f5;
  font-size: 13px;
  padding: 2px 7px;
  cursor: pointer;
}

.modal-modes {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.modal-tab {
  font-size: 11px;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  color: #d4d4d4;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  cursor: pointer;
}

.modal-tab--active {
  border-color: #ffffff;
  color: #ffffff;
}

.modal-title {
  margin: 0 0 0.75rem;
  font-size: 14px;
}

.modal-form {
  font-size: 12px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

/* WELCOME OVERLAY */
.welcome-overlay {
  position: fixed;
  inset: 0;
  z-index: 30;
}

.welcome-overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
}

.welcome-overlay-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.welcome-overlay-content p {
  max-width: 560px;
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.9);
  padding: 0.8rem 1.5rem;
}

/* RESPONSIVE */
@media (min-width: 768px) {
  .main-nav {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: flex-end;
  }

  .section-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  }

  .section-grid:nth-child(even) {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  }

  .manifesto-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  }

  .footer-inner {
    flex-direction: row;
  }

  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rituals-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
