/* IrisNoir — noir & gold brand kit */
:root {
  --noir: #0a0a0c;
  --noir-2: #121216;
  --noir-3: #1a1a20;
  --cream: #ecdcc3;
  --gold: #c9a86a;
  --gold-bright: #e0c48f;
  --iris: #4b2a6b;
  --text: #d8d4cc;
  --text-dim: #8f8b84;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--noir);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* Nav */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 6vw;
  background: rgba(10,10,12,0.85);
  backdrop-filter: blur(12px);
  z-index: 100;
  border-bottom: 1px solid rgba(201,168,106,0.12);
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.3rem;
  letter-spacing: 0.25em;
  color: var(--cream);
  text-decoration: none;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--gold-bright); }
.nav-cta {
  border: 1px solid var(--gold);
  padding: 0.5rem 1.1rem;
  color: var(--gold) !important;
}
.nav-cta:hover { background: var(--gold); color: var(--noir) !important; }

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse 60% 45% at 72% 40%, rgba(75,42,107,0.35), transparent 70%),
    radial-gradient(ellipse 90% 60% at 50% 110%, rgba(201,168,106,0.08), transparent 60%),
    var(--noir);
}
.hero-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 7rem 6vw 4rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 3rem;
}
.hero-img {
  position: relative;
  justify-self: end;
  width: min(420px, 38vw);
}
.hero-img img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid rgba(201,168,106,0.25);
}
.hero-img::after {
  content: "";
  position: absolute;
  inset: 14px -14px -14px 14px;
  border: 1px solid rgba(201,168,106,0.25);
  z-index: -1;
}
.hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  letter-spacing: 0.18em;
  color: var(--cream);
  line-height: 1;
}
.hero h1 .gold { color: var(--gold); }
.hero-tag {
  margin-top: 1.6rem;
  font-size: 1.05rem;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}
.hero-actions {
  margin-top: 2.6rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.85rem 2.1rem;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-gold {
  background: var(--gold);
  color: var(--noir);
  border: 1px solid var(--gold);
}
.btn-gold:hover { background: var(--gold-bright); border-color: var(--gold-bright); }
.btn-ghost {
  border: 1px solid rgba(236,220,195,0.3);
  color: var(--cream);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-bright); }

/* Sections */
.section { padding: 7rem 6vw; }
.section-dark { background: var(--noir-2); }
.container { max-width: 1080px; margin: 0 auto; }
.split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 1.2rem;
}
.about-copy p { margin-bottom: 1.2rem; }
.section-note { color: var(--text-dim); font-size: 0.9rem; margin-top: 2rem; }

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.card {
  background: var(--noir-3);
  border: 1px solid rgba(201,168,106,0.12);
  padding: 2.2rem 1.9rem;
  transition: border-color 0.3s, transform 0.3s;
}
.card:hover { border-color: rgba(201,168,106,0.45); transform: translateY(-4px); }
.card-featured { border-color: var(--gold); }
.card h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 0.7rem;
}
.card p { font-size: 0.92rem; color: var(--text-dim); }
.price {
  font-family: var(--serif);
  font-size: 1.6rem !important;
  color: var(--gold-bright) !important;
  margin-bottom: 0.6rem;
}

/* Products (store) */
.products-grid { align-items: stretch; }
.product-card { display: flex; flex-direction: column; }
.product-thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(201,168,106,0.2);
}
.product-card .btn { margin-top: auto; align-self: flex-start; padding-top: 0.85rem; }
.product-card-soon {
  opacity: 0.55;
  border-style: dashed;
}
.product-card-soon:hover { transform: none; border-color: rgba(201,168,106,0.12); }

/* Portfolio */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.tile {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--noir-3);
  border: 1px solid rgba(201,168,106,0.12);
}
.tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.tile:hover img { transform: scale(1.04); }
.tile figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem 1.2rem;
  background: linear-gradient(transparent, rgba(10,10,12,0.92));
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
}
.tile-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  border-style: dashed;
}
.tile-placeholder figcaption {
  position: static;
  background: none;
  color: var(--text-dim);
  text-align: center;
}

/* Contact */
.contact { text-align: center; }
.contact-email { margin-top: 1.5rem; }

/* Footer */
.footer {
  padding: 3.5rem 6vw 2.5rem;
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  border-top: 1px solid rgba(201,168,106,0.1);
  background: radial-gradient(ellipse 50% 80% at 50% 100%, rgba(75,42,107,0.18), transparent 70%);
}
.footer-logo {
  width: min(180px, 40vw);
  height: auto;
  display: block;
  margin: 0 auto 1.2rem;
  opacity: 0.9;
}

/* Mobile */
@media (max-width: 760px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-img { display: none; }
  .split { grid-template-columns: 1fr; gap: 1.5rem; }
  .section { padding: 4.5rem 7vw; }
}
