/* ===== ADINKRA HOUSE — Brand Stylesheet ===== */
/* Palette: Adinkra Black #1A1510, Osei Gold #C9943C, Kente Cream #F5EDD8,
   Kumasi Red #8B2E2E, Forest Elder #2D4A3E */

:root {
  --black: #1A1510;
  --gold: #C9943C;
  --cream: #F5EDD8;
  --red: #8B2E2E;
  --green: #2D4A3E;
  --brass: #B8872A;
  --silver: #9EA5AD;
  --text-primary: #F5EDD8;
  --text-secondary: rgba(245, 237, 216, 0.65);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', Arial, sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
}
a { color: var(--gold); text-decoration: none; transition: opacity 0.2s; }
a:hover { opacity: 0.8; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== SECTION LABELS ===== */
.section__label {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.2;
  color: var(--cream);
  margin-bottom: 16px;
}
.section__intro {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 48px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 14px 32px;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn--primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn--primary:hover {
  background: transparent;
  color: var(--gold);
  opacity: 1;
}
.btn--outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245, 237, 216, 0.3);
}
.btn--outline:hover {
  border-color: var(--cream);
  opacity: 1;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  background: rgba(26, 21, 16, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 148, 60, 0.1);
}
.nav__brand {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav__links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--cream); opacity: 1; }
.nav__cta {
  color: var(--gold) !important;
  border: 1px solid rgba(201, 148, 60, 0.4);
  padding: 8px 20px;
  border-radius: 2px;
}
.nav__cta:hover { border-color: var(--gold) !important; }

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}
.hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    radial-gradient(circle at 20% 30%, var(--gold) 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, var(--gold) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, var(--gold) 0.5px, transparent 0.5px);
  background-size: 80px 80px, 80px 80px, 40px 40px;
}
.hero__content {
  position: relative;
  max-width: 700px;
}
.hero__pre {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 24px;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 24px;
}
.hero__sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 40px;
}
.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero__values {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: rgba(201, 148, 60, 0.6);
  letter-spacing: 0.02em;
}

/* ===== COLLECTIONS ===== */
.collections {
  padding: 100px 0;
  border-top: 1px solid rgba(201, 148, 60, 0.08);
}
.collections__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.collection-card {
  background: rgba(245, 237, 216, 0.03);
  border: 1px solid rgba(201, 148, 60, 0.1);
  border-radius: 4px;
  padding: 36px 28px;
  transition: border-color 0.3s, background 0.3s;
}
.collection-card:hover {
  border-color: rgba(201, 148, 60, 0.3);
  background: rgba(245, 237, 216, 0.05);
}
.collection-card__icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 20px;
}
.collection-card__icon svg { width: 100%; height: 100%; }
.collection-card__name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  color: var(--cream);
  margin-bottom: 4px;
}
.collection-card__tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--gold);
  margin-bottom: 16px;
}
.collection-card__desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 20px;
}
.collection-card__products {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(201, 148, 60, 0.5);
  text-transform: uppercase;
}

/* Collab card variant */
.collection-card--collab {
  background: rgba(139, 46, 46, 0.08);
  border-color: rgba(139, 46, 46, 0.25);
  position: relative;
}
.collection-card--collab:hover {
  border-color: rgba(139, 46, 46, 0.5);
  background: rgba(139, 46, 46, 0.12);
}
.collection-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--red);
  background: rgba(139, 46, 46, 0.15);
  padding: 4px 10px;
  border-radius: 2px;
}
.collection-card--collab .collection-card__icon { color: var(--red); }
.collection-card--collab .collection-card__tagline { color: var(--red); }
.collection-card__cta {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.collection-card__cta:hover { color: var(--cream); opacity: 1; }

/* ===== ARTIST COLLABORATION ===== */
.artist {
  padding: 100px 0;
  border-top: 1px solid rgba(139, 46, 46, 0.15);
}
.artist__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.artist__desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 32px;
}
.artist__terms {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.artist__term {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.artist__term-icon {
  color: var(--red);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}
.artist__term strong {
  display: block;
  font-size: 14px;
  color: var(--cream);
  margin-bottom: 4px;
}
.artist__term p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.artist__form-wrap {
  background: rgba(245, 237, 216, 0.03);
  border: 1px solid rgba(139, 46, 46, 0.2);
  border-radius: 4px;
  padding: 36px;
}
.artist__form-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 20px;
  color: var(--cream);
  margin-bottom: 28px;
}
.artist__field {
  margin-bottom: 20px;
}
.artist__field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 6px;
}
.artist__field input,
.artist__field select,
.artist__field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 14px;
  padding: 12px 14px;
  background: rgba(245, 237, 216, 0.06);
  border: 1px solid rgba(201, 148, 60, 0.15);
  border-radius: 2px;
  color: var(--cream);
  outline: none;
  transition: border-color 0.2s;
}
.artist__field input:focus,
.artist__field select:focus,
.artist__field textarea:focus {
  border-color: var(--red);
}
.artist__field input::placeholder,
.artist__field textarea::placeholder {
  color: rgba(245, 237, 216, 0.3);
}
.artist__field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M3 5l3 3 3-3' stroke='%23C9943C' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.artist__field select option {
  background: var(--black);
  color: var(--cream);
}
.artist__field textarea { resize: vertical; min-height: 80px; }
.artist__checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-secondary);
}
.artist__checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--red);
}
.artist__form-note {
  font-size: 13px;
  color: var(--red);
  margin-top: 12px;
  min-height: 20px;
}

/* ===== STORY ===== */
.story {
  padding: 100px 0;
  border-top: 1px solid rgba(201, 148, 60, 0.08);
}
.story__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.story__text p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.75;
}
.story__highlight {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px !important;
  color: var(--gold) !important;
  border-left: 2px solid var(--gold);
  padding-left: 20px;
  margin-top: 24px !important;
}
.story__commitments {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 48px;
}
.commitment {
  padding-left: 24px;
  border-left: 1px solid rgba(201, 148, 60, 0.15);
}
.commitment__number {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 42px;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.commitment__icon {
  color: var(--gold);
  font-size: 18px;
  display: block;
  margin-bottom: 4px;
}
.commitment__label {
  font-weight: 700;
  font-size: 14px;
  color: var(--cream);
  margin-bottom: 6px;
}
.commitment__text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ===== PRODUCTS ===== */
.products {
  padding: 100px 0;
  border-top: 1px solid rgba(201, 148, 60, 0.08);
}
.products__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.product-card {
  background: rgba(245, 237, 216, 0.02);
  border: 1px solid rgba(201, 148, 60, 0.08);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.product-card:hover {
  border-color: rgba(201, 148, 60, 0.25);
}
.product-card__image {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 21, 16, 0.6);
  border-bottom: 1px solid rgba(201, 148, 60, 0.06);
}
.product-card__placeholder {
  width: 64px;
  height: 64px;
  color: rgba(201, 148, 60, 0.25);
}
.product-card__placeholder svg { width: 100%; height: 100%; }
.product-card__info {
  padding: 20px;
}
.product-card__name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 17px;
  color: var(--cream);
  margin-bottom: 4px;
}
.product-card__meaning {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 12px;
}
.product-card__material {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.product-card__price {
  font-weight: 700;
  font-size: 15px;
  color: var(--cream);
  margin-bottom: 8px;
}
.product-card__collections {
  font-size: 11px;
  color: rgba(201, 148, 60, 0.4);
  letter-spacing: 0.04em;
}

/* ===== NOTIFY ===== */
.notify {
  padding: 100px 0;
  border-top: 1px solid rgba(201, 148, 60, 0.08);
}
.notify__box {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}
.notify__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(26px, 3.5vw, 34px);
  color: var(--cream);
  margin-bottom: 12px;
}
.notify__desc {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}
.notify__form {
  display: flex;
  gap: 12px;
}
.notify__input {
  flex: 1;
  font-family: var(--sans);
  font-size: 14px;
  padding: 14px 18px;
  background: rgba(245, 237, 216, 0.06);
  border: 1px solid rgba(201, 148, 60, 0.2);
  border-radius: 2px;
  color: var(--cream);
  outline: none;
  transition: border-color 0.2s;
}
.notify__input::placeholder { color: rgba(245, 237, 216, 0.35); }
.notify__input:focus { border-color: var(--gold); }
.notify__note {
  font-size: 13px;
  color: var(--gold);
  margin-top: 12px;
  min-height: 20px;
}

/* ===== FOOTER ===== */
.footer {
  padding: 48px 0 32px;
  border-top: 1px solid rgba(201, 148, 60, 0.08);
}
.footer__layout {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
}
.footer__name {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 4px;
}
.footer__tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--text-secondary);
}
.footer__contact a {
  font-size: 13px;
  color: var(--text-secondary);
}
.footer__copy {
  font-size: 12px;
  color: rgba(245, 237, 216, 0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--black);
    border-left: 1px solid rgba(201, 148, 60, 0.1);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 24px;
    transition: right 0.3s ease;
  }
  .nav__links.open { right: 0; }
  .nav__cta { width: fit-content; }

  .hero { padding: 100px 24px 60px; min-height: 90vh; }
  .hero__sub { font-size: 15px; }

  .collections { padding: 64px 0; }
  .collections__grid { grid-template-columns: 1fr; }

  .story { padding: 64px 0; }
  .story__layout { grid-template-columns: 1fr; gap: 40px; }
  .artist { padding: 64px 0; }
  .artist__layout { grid-template-columns: 1fr; gap: 40px; }
  .artist__form-wrap { padding: 24px; }
  .story__commitments { padding-top: 0; }

  .products { padding: 64px 0; }
  .products__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .products__grid .product-card:last-child { grid-column: 1 / -1; max-width: 50%; margin: 0 auto; }

  .notify { padding: 64px 0; }
  .notify__form { flex-direction: column; }

  .footer__layout { flex-direction: column; gap: 16px; }
}

@media (max-width: 480px) {
  .products__grid { grid-template-columns: 1fr; }
}
