/* ═══════════════════════════════════════════════════════
   DESIGN DEALER — Premium Designer Objects
   Stylesheet v1.0
   ═══════════════════════════════════════════════════════ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Outfit:wght@200;300;400;500;600;700&display=swap');

/* ── CSS Variables ── */
:root {
  --clr-bg:        #0e0c0b;
  --clr-bg-warm:   #141110;
  --clr-bg-card:   #1a1614;
  --clr-bg-accent: #211c18;
  --clr-surface:   #2a2320;
  --clr-border:    #3a312b;
  --clr-border-lt: #4a3f38;

  --clr-text:      #f2ece6;
  --clr-text-dim:  #a89b8f;
  --clr-text-mute: #6b5f54;

  --clr-accent:    #c8956c;
  --clr-accent-lt: #dbb08a;
  --clr-accent-dk: #a07450;

  --clr-cream:     #f5efe8;
  --clr-warm-wht:  #e8ddd1;

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'Outfit', system-ui, sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--clr-surface) var(--clr-bg);
}

body {
  font-family: var(--ff-body);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

/* ── Utility ── */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* ── Grain Overlay ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* ══════════════════════════════════
   NAVIGATION
   ══════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.5s var(--ease-out-expo);
}

.nav.scrolled {
  background: rgba(14, 12, 11, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 0;
  border-bottom: 1px solid var(--clr-border);
}

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

.nav__logo {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-cream);
}

.nav__logo span {
  color: var(--clr-accent);
  font-weight: 600;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav__links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-text-dim);
  transition: color 0.3s ease;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--clr-accent);
  transition: width 0.4s var(--ease-out-expo);
}

.nav__links a:hover {
  color: var(--clr-cream);
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__cta {
  font-size: 0.75rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.15em !important;
  padding: 0.7rem 1.8rem;
  border: 1px solid var(--clr-accent);
  color: var(--clr-accent) !important;
  transition: all 0.4s var(--ease-out-expo) !important;
}

.nav__cta:hover {
  background: var(--clr-accent);
  color: var(--clr-bg) !important;
}

.nav__cta::after {
  display: none !important;
}

/* Mobile Menu Toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 4px;
  z-index: 1001;
}

.nav__toggle span {
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--clr-cream);
  transition: all 0.4s var(--ease-out-expo);
  transform-origin: center;
}

.nav__toggle.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ══════════════════════════════════
   HERO
   ══════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 0 4rem;
}

.hero__bg-glow {
  position: absolute;
  width: 60vw;
  height: 60vw;
  max-width: 800px;
  max-height: 800px;
  border-radius: 50%;
  top: 50%;
  right: -5%;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(200, 149, 108, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out-expo) 0.3s forwards;
}

.hero__tag::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--clr-accent);
}

.hero__title {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--clr-cream);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s var(--ease-out-expo) 0.5s forwards;
}

.hero__title em {
  font-style: italic;
  color: var(--clr-accent);
  font-weight: 400;
}

.hero__desc {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--clr-text-dim);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out-expo) 0.7s forwards;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out-expo) 0.9s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: var(--clr-accent);
  color: var(--clr-bg);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.4s var(--ease-out-expo);
}

.btn-primary:hover {
  background: var(--clr-accent-lt);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(200, 149, 108, 0.2);
}

.btn-primary svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-ghost {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-text-dim);
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-ghost:hover {
  color: var(--clr-accent);
}

/* Hero Visual */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: fadeIn 1.2s var(--ease-out-expo) 0.6s forwards;
}

.hero__image-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 3/4;
  background: var(--clr-bg-warm);
  overflow: hidden;
}

.hero__image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--clr-border);
  z-index: 2;
  pointer-events: none;
}

.hero__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--clr-bg-card) 0%, var(--clr-bg-accent) 100%);
  position: relative;
  overflow: hidden;
}

.hero__image-placeholder .vase-svg {
  width: 55%;
  opacity: 0.7;
}

.hero__float-badge {
  position: absolute;
  bottom: 2rem;
  left: -2rem;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  padding: 1.2rem 1.8rem;
  backdrop-filter: blur(10px);
  z-index: 3;
}

.hero__float-badge p:first-child {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--clr-accent);
  line-height: 1;
}

.hero__float-badge p:last-child {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-text-mute);
  margin-top: 0.3rem;
}

.hero__corner-tag {
  position: absolute;
  top: -1rem;
  right: -1rem;
  background: var(--clr-accent);
  color: var(--clr-bg);
  padding: 0.8rem 1.2rem;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 3;
}

/* Scroll Indicator */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
}

.hero__scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--clr-text-mute);
  writing-mode: vertical-rl;
}

.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: var(--clr-border);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--clr-accent);
  animation: scrollLine 2s ease infinite;
}

/* ══════════════════════════════════
   MARQUEE TICKER
   ══════════════════════════════════ */
.marquee {
  padding: 2rem 0;
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  overflow: hidden;
  background: var(--clr-bg-warm);
}

.marquee__track {
  display: flex;
  gap: 3rem;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee__item {
  display: flex;
  align-items: center;
  gap: 3rem;
  white-space: nowrap;
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--clr-text-mute);
  text-transform: uppercase;
}

.marquee__item::after {
  content: '◆';
  font-size: 0.5rem;
  color: var(--clr-accent);
}

/* ══════════════════════════════════
   ABOUT / PHILOSOPHY
   ══════════════════════════════════ */
.about {
  padding: clamp(5rem, 10vw, 10rem) 0;
  position: relative;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about__label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.about__label::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--clr-accent);
}

.about__title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--clr-cream);
  margin-bottom: 2rem;
}

.about__title em {
  font-style: italic;
  color: var(--clr-accent);
}

.about__text {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--clr-text-dim);
  margin-bottom: 1.5rem;
}

.about__stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--clr-border);
}

.about__stat h3 {
  font-family: var(--ff-display);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--clr-accent);
  line-height: 1;
}

.about__stat p {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-text-mute);
  margin-top: 0.5rem;
}

/* About Visual */
.about__visual {
  position: relative;
}

.about__img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.about__img-item {
  aspect-ratio: 1;
  background: linear-gradient(145deg, var(--clr-bg-card) 0%, var(--clr-bg-accent) 100%);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s ease;
}

.about__img-item:hover {
  border-color: var(--clr-accent);
}

.about__img-item:nth-child(2) {
  transform: translateY(2rem);
}

.about__img-item:nth-child(3) {
  transform: translateY(-2rem);
}

.about__img-item svg {
  width: 50%;
  opacity: 0.5;
  transition: opacity 0.4s ease;
}

.about__img-item:hover svg {
  opacity: 0.8;
}

/* ══════════════════════════════════
   FEATURED COLLECTIONS
   ══════════════════════════════════ */
.collections {
  padding: clamp(5rem, 10vw, 10rem) 0;
  background: var(--clr-bg-warm);
  position: relative;
}

.collections::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-border), transparent);
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-header__label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 1.5rem;
}

.section-header__title {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 300;
  color: var(--clr-cream);
  line-height: 1.1;
}

.section-header__title em {
  font-style: italic;
  color: var(--clr-accent);
}

.section-header__line {
  width: 60px;
  height: 1px;
  background: var(--clr-accent);
  margin: 2rem auto 0;
}

/* Product Cards */
.collections__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.product-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  overflow: hidden;
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
  group: card;
}

.product-card:hover {
  border-color: var(--clr-accent);
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.product-card__image {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
  background: linear-gradient(145deg, var(--clr-bg-accent) 0%, #1e1916 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card__image svg {
  width: 45%;
  opacity: 0.5;
  transition: all 0.5s var(--ease-out-expo);
}

.product-card:hover .product-card__image svg {
  opacity: 0.8;
  transform: scale(1.05);
}

.product-card__tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--clr-accent);
  color: var(--clr-bg);
  padding: 0.4rem 0.8rem;
}

.product-card__body {
  padding: 1.8rem;
}

.product-card__category {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 0.7rem;
}

.product-card__name {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--clr-cream);
  margin-bottom: 0.5rem;
}

.product-card__desc {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--clr-text-mute);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.2rem;
  border-top: 1px solid var(--clr-border);
}

.product-card__price {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--clr-cream);
}

.product-card__price span {
  font-size: 0.85rem;
  color: var(--clr-text-mute);
  font-family: var(--ff-body);
  font-weight: 300;
}

.product-card__link {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-accent);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.product-card:hover .product-card__link {
  gap: 0.8rem;
}

/* ══════════════════════════════════
   PROCESS / HOW WE WORK
   ══════════════════════════════════ */
.process {
  padding: clamp(5rem, 10vw, 10rem) 0;
  position: relative;
}

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

.process__step {
  padding: 3rem;
  border: 1px solid var(--clr-border);
  border-right: none;
  position: relative;
  transition: all 0.4s ease;
}

.process__step:last-child {
  border-right: 1px solid var(--clr-border);
}

.process__step:hover {
  background: var(--clr-bg-card);
}

.process__step-num {
  font-family: var(--ff-display);
  font-size: 4rem;
  font-weight: 300;
  color: var(--clr-border);
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: color 0.4s ease;
}

.process__step:hover .process__step-num {
  color: var(--clr-accent);
}

.process__step-title {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--clr-cream);
  margin-bottom: 1rem;
}

.process__step-desc {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--clr-text-mute);
  line-height: 1.7;
}

.process__step-icon {
  position: absolute;
  top: 3rem;
  right: 3rem;
  width: 32px;
  height: 32px;
  color: var(--clr-border-lt);
  transition: color 0.4s ease;
}

.process__step:hover .process__step-icon {
  color: var(--clr-accent);
}

/* ══════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════ */
.testimonials {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--clr-bg-warm);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.testimonial-card {
  padding: 3rem;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  position: relative;
  transition: border-color 0.4s ease;
}

.testimonial-card:hover {
  border-color: var(--clr-accent);
}

.testimonial-card__quote {
  font-family: var(--ff-display);
  font-size: 5rem;
  font-weight: 300;
  color: var(--clr-accent);
  line-height: 1;
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  opacity: 0.3;
}

.testimonial-card__text {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--clr-text-dim);
  font-style: italic;
  margin-bottom: 2rem;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--clr-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 1rem;
  color: var(--clr-accent);
}

.testimonial-card__name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--clr-cream);
}

.testimonial-card__title {
  font-size: 0.72rem;
  color: var(--clr-text-mute);
  letter-spacing: 0.05em;
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-top: 0.3rem;
}

.testimonial-card__stars svg {
  width: 12px;
  height: 12px;
  fill: var(--clr-accent);
}

/* ══════════════════════════════════
   INSTAGRAM / GALLERY STRIP
   ══════════════════════════════════ */
.gallery {
  padding: clamp(5rem, 10vw, 8rem) 0;
}

.gallery__strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
  margin-top: 4rem;
}

.gallery__item {
  aspect-ratio: 1;
  background: linear-gradient(145deg, var(--clr-bg-card) 0%, var(--clr-bg-accent) 100%);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(200, 149, 108, 0);
  transition: background 0.4s ease;
}

.gallery__item:hover::after {
  background: rgba(200, 149, 108, 0.08);
}

.gallery__item svg {
  width: 40%;
  opacity: 0.35;
  transition: all 0.5s var(--ease-out-expo);
}

.gallery__item:hover svg {
  opacity: 0.7;
  transform: scale(1.08);
}

/* ══════════════════════════════════
   NEWSLETTER / CTA
   ══════════════════════════════════ */
.newsletter {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--clr-bg-warm);
  border-top: 1px solid var(--clr-border);
}

.newsletter__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.newsletter__title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--clr-cream);
  margin-bottom: 1rem;
}

.newsletter__title em {
  font-style: italic;
  color: var(--clr-accent);
}

.newsletter__desc {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--clr-text-dim);
  margin-bottom: 2.5rem;
}

.newsletter__form {
  display: flex;
  gap: 0;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter__input {
  flex: 1;
  padding: 1rem 1.5rem;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-right: none;
  color: var(--clr-text);
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s ease;
}

.newsletter__input::placeholder {
  color: var(--clr-text-mute);
}

.newsletter__input:focus {
  border-color: var(--clr-accent);
}

.newsletter__btn {
  padding: 1rem 2rem;
  background: var(--clr-accent);
  color: var(--clr-bg);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.3s ease;
  white-space: nowrap;
}

.newsletter__btn:hover {
  background: var(--clr-accent-lt);
}

/* Marketplace Links */
.marketplaces {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 3rem;
}

.marketplace-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-text-mute);
  transition: color 0.3s ease;
}

.marketplace-link:hover {
  color: var(--clr-accent);
}

.marketplace-link svg {
  width: 18px;
  height: 18px;
}

/* ══════════════════════════════════
   FOOTER
   ══════════════════════════════════ */
.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--clr-border);
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer__brand p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--clr-text-mute);
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 300px;
}

.footer__col h4 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-cream);
  margin-bottom: 1.5rem;
}

.footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer__col a {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--clr-text-mute);
  transition: color 0.3s ease;
}

.footer__col a:hover {
  color: var(--clr-accent);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--clr-border);
}

.footer__copy {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--clr-text-mute);
}

.footer__socials {
  display: flex;
  gap: 1.5rem;
}

.footer__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--clr-border);
  color: var(--clr-text-mute);
  transition: all 0.3s ease;
}

.footer__socials a:hover {
  border-color: var(--clr-accent);
  color: var(--clr-accent);
}

.footer__socials svg {
  width: 16px;
  height: 16px;
}

/* ══════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════ */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes scrollLine {
  0% { top: -100%; }
  50% { top: 100%; }
  100% { top: 100%; }
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--ease-out-expo);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ══════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════ */
@media (max-width: 1024px) {
  .hero__content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero__desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__visual {
    order: -1;
  }

  .hero__image-wrap {
    max-width: 350px;
    margin: 0 auto;
  }

  .hero__float-badge {
    left: auto;
    right: -1rem;
    bottom: 1rem;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

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

  .process__step {
    border-right: 1px solid var(--clr-border);
    border-bottom: none;
  }

  .process__step:last-child {
    border-bottom: 1px solid var(--clr-border);
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(14, 12, 11, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
  }

  .nav__links.open {
    display: flex;
  }

  .nav__links a {
    font-size: 1.2rem;
  }

  .nav__toggle {
    display: flex;
  }

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

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

  .gallery__strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .about__stats {
    gap: 2rem;
  }

  .newsletter__form {
    flex-direction: column;
  }

  .newsletter__input {
    border-right: 1px solid var(--clr-border);
    border-bottom: none;
  }

  .marketplaces {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

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

  .footer__bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 6rem 0 3rem;
  }

  .hero__float-badge {
    display: none;
  }

  .hero__corner-tag {
    display: none;
  }

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

  .about__stats {
    flex-direction: column;
    gap: 1.5rem;
  }
}
