* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: #000000;
  color: #fff;
  font-family:
    'Inter',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Promo Banner (inside product section) ── */
.promo-banner {
  margin: 40px 0 0;
}
.promo-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: linear-gradient(90deg, rgba(200,169,110,0.08) 0%, rgba(200,169,110,0.14) 50%, rgba(200,169,110,0.08) 100%);
  border: 1px solid rgba(200,169,110,0.28);
  border-radius: 40px;
  padding: 13px 28px;
  flex-wrap: wrap;
}
.promo-icon {
  color: #c8a96e;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
}
.promo-text {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 1.5px;
}
.promo-link {
  color: #c8a96e;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-decoration: none;
  border-bottom: 1px solid rgba(200,169,110,0.35);
  padding-bottom: 1px;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.promo-link:hover {
  color: #e0c48a;
  border-color: #e0c48a;
}

/* ── Navbar ── */
.navbar-wrapper {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  transition: all 0.3s ease;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}
.logo {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-decoration: none;
  color: #fff;
}
.logo span {
  font-size: 0.7rem;
  letter-spacing: 4px;
  color: rgba(200, 169, 110, 0.7);
  margin-left: 8px;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 1px;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: #c8a96e;
}
.nav-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-icons i {
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  font-size: 1.1rem;
  transition: color 0.2s;
}
.nav-icons i:hover {
  color: #c8a96e;
}
.nav-search {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.5);
  padding: 6px 14px 6px 32px;
  font-size: 0.75rem;
  letter-spacing: 1px;
  outline: none;
  position: relative;
  width: 160px;
  transition: border-color 0.2s, width 0.3s;
}
.nav-search:focus {
  border-color: rgba(200,169,110,0.5);
  color: rgba(255,255,255,0.8);
  width: 200px;
}
.nav-search-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-search-wrap i {
  position: absolute;
  left: 10px;
  font-size: 0.75rem;
  pointer-events: none;
}

/* ── Buttons ── */
.btn {
  padding: 10px 28px;
  border-radius: 0;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.22s;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
}
.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
}
.btn-outline:hover {
  border-color: #c8a96e;
  color: #c8a96e;
}
.btn-primary {
  background: #c8a96e;
  border: 1px solid #c8a96e;
  color: #000;
  font-weight: 500;
}
.btn-primary:hover {
  background: transparent;
  color: #c8a96e;
}
.btn-light {
  background: rgba(255, 255, 255, 0.95);
  border: none;
  color: #000;
}
.btn-light:hover {
  background: #c8a96e;
  color: #fff;
}

/* ── Hero Carousel ── */
.hero-carousel {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.carousel-slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.76, 0, 0.24, 1);
}
.slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.25) 0%,
    rgba(0,0,0,0.55) 60%,
    rgba(0,0,0,0.8) 100%
  );
}
.slide-content {
  position: relative;
  text-align: center;
  max-width: 780px;
  padding: 0 20px;
  z-index: 2;
  animation: slideUp 0.9s ease both;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.slide-eyebrow {
  color: rgba(200, 169, 110, 0.85);
  font-size: 0.65rem;
  letter-spacing: 5px;
  margin-bottom: 22px;
  text-transform: uppercase;
}
.slide-content h2 {
  font-size: 3.5rem;
  font-weight: 300;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 3px;
  margin-bottom: 18px;
  line-height: 1.2;
}
.slide-content p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  margin-bottom: 36px;
  letter-spacing: 1px;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  width: 52px;
  height: 52px;
  backdrop-filter: blur(12px);
  z-index: 10;
  transition: 0.25s;
}
.carousel-btn:hover {
  background: rgba(200, 169, 110, 0.3);
  border-color: rgba(200, 169, 110, 0.4);
  color: #c8a96e;
}
.carousel-btn.prev { left: 36px; }
.carousel-btn.next { right: 36px; }
.carousel-dots {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: 0.25s;
}
.dot.active {
  background: #c8a96e;
  width: 28px;
  border-radius: 3px;
}
/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 50px;
  right: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 10;
  color: rgba(255,255,255,0.35);
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.scroll-hint::after {
  content: '';
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(200,169,110,0.6), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ── Trust / Features Bar (Vahdam inspired) ── */
.trust-bar {
  background: #0a0a0a;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 36px;
  border-right: 1px solid rgba(255,255,255,0.05);
  transition: background 0.2s;
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: rgba(200,169,110,0.04); }
.trust-icon {
  width: 44px;
  height: 44px;
  background: rgba(200,169,110,0.08);
  border: 1px solid rgba(200,169,110,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon i {
  color: #c8a96e;
  font-size: 1.1rem;
}
.trust-text h5 {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 3px;
}
.trust-text p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.5px;
}

/* ── Shop by Occasion (Adagio/Vahdam) ── */
.occasion-section {
  padding: 90px 0 70px;
}
.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-eyebrow {
  font-size: 0.62rem;
  letter-spacing: 5px;
  color: rgba(200,169,110,0.7);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: 2px;
}
.section-header p {
  color: rgba(255,255,255,0.35);
  font-size: 0.82rem;
  margin-top: 10px;
  letter-spacing: 1px;
}
.occasion-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.occasion-card {
  position: relative;
  height: 340px;
  overflow: hidden;
  cursor: pointer;
  background: #141414;
}
.occasion-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1), filter 0.5s;
}
.occasion-card:hover img {
  transform: scale(1.07);
  filter: brightness(0.65);
}
.occasion-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 60%);
}
.occasion-tag {
  font-size: 0.6rem;
  letter-spacing: 3px;
  color: rgba(200,169,110,0.8);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.occasion-overlay h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.occasion-overlay p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
}
.occasion-arrow {
  margin-top: 14px;
  font-size: 0.7rem;
  color: rgba(200,169,110,0.7);
  letter-spacing: 2px;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.25s, transform 0.25s;
}
.occasion-card:hover .occasion-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ── Filter & Products ── */
.filter-section {
  margin: 60px 0 40px;
}
.filter-title {
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 32px;
}
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.filter-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filter-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 6px 18px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: 0.2s;
  letter-spacing: 0.5px;
}
.filter-btn:hover,
.filter-btn.active {
  border-color: #c8a96e;
  color: #c8a96e;
  background: rgba(200,169,110,0.07);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
}
.product-card {
  background: rgba(18, 18, 18, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  transition: all 0.35s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 169, 110, 0.25);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.product-img {
  position: relative;
  height: 280px;
  background-position: center;
  overflow: hidden;
}
.product-img-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.product-card:hover .product-img-bg {
  transform: scale(1.06);
}
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #c8a96e;
  color: #000;
  font-size: 0.62rem;
  padding: 4px 10px;
  letter-spacing: 1px;
  z-index: 2;
  font-weight: 500;
}
.wish-btn {
  position: absolute;
  right: 12px;
  top: 12px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255,255,255,0.1);
  width: 34px;
  height: 34px;
  border-radius: 0;
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.wish-btn:hover {
  background: rgba(200,169,110,0.15);
  border-color: rgba(200,169,110,0.4);
}
/* Quick View overlay */
.quick-view-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
  text-align: center;
  padding: 12px;
  font-size: 0.68rem;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 4;
}
.product-card:hover .quick-view-overlay {
  transform: translateY(0);
}
.product-info {
  padding: 20px;
}
.product-cat {
  font-size: 0.68rem;
  color: #c8a96e;
  letter-spacing: 2px;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.product-name {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 6px;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 1px;
  font-size: 1.15rem;
}
.product-desc {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 12px;
  line-height: 1.6;
}
/* Star rating */
.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}
.product-rating .stars {
  color: #c8a96e;
  font-size: 0.7rem;
  letter-spacing: 1px;
}
.product-rating .review-count {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.3);
}
.product-price {
  font-size: 1.05rem;
  color: #c8a96e;
  margin-bottom: 16px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.product-price .original {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.75rem;
  text-decoration: line-through;
}
.product-price .sold-count {
  color: rgba(200,169,110,0.55);
  font-size: 0.68rem;
}
.product-actions {
  display: flex;
  gap: 10px;
}
.product-actions .btn {
  flex: 1;
  font-size: 0.68rem;
  padding: 9px 10px;
  letter-spacing: 1.5px;
}

/* ── Knowledge Section ── */
.section-title-block {
  text-align: center;
  margin-bottom: 48px;
}
.section-title-block h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 2px;
}
.section-title-block p {
  color: rgba(255, 255, 255, 0.35);
  margin-top: 10px;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
}
.knowledge-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 80px;
}
.knowledge-card {
  background: #0e0e0e;
  cursor: pointer;
  overflow: hidden;
  transition: background 0.3s;
  border-radius: 12px;
}
.knowledge-card:hover { background: #141414; }
.knowledge-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.knowledge-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
  transition: transform 0.6s, filter 0.5s;
}
.knowledge-card:hover .knowledge-img img {
  transform: scale(1.05);
  filter: brightness(0.9);
}
.knowledge-content { padding: 28px 26px; }
.knowledge-tag {
  background: transparent;
  border: 1px solid rgba(200, 169, 110, 0.25);
  color: rgba(200, 169, 110, 0.7);
  display: inline-block;
  font-size: 0.6rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
  padding: 4px 12px;
  text-transform: uppercase;
}
.knowledge-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 12px;
  line-height: 1.5;
}
.knowledge-desc {
  color: rgba(255, 255, 255, 0.32);
  font-size: 0.78rem;
  line-height: 1.8;
  margin-bottom: 18px;
}
.knowledge-time {
  color: rgba(200, 169, 110, 0.5);
  font-size: 0.7rem;
  letter-spacing: 1px;
}

/* ── Culture / Brand Story ── */
.culture-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 80px 0;
  min-height: 520px;
}
.culture-text {
  padding: 70px 64px;
  background: linear-gradient(135deg, #0d0d0d 0%, #060606 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.culture-text .section-eyebrow {
  text-align: left;
  margin-bottom: 18px;
}
.culture-text h3 {
  font-size: 2.2rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  letter-spacing: 3px;
  margin-bottom: 28px;
  line-height: 1.3;
}
.culture-text p {
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.9;
  margin-bottom: 18px;
  font-size: 0.85rem;
}
.culture-blockquote {
  border-left: 2px solid rgba(200,169,110,0.4);
  padding: 12px 20px;
  margin: 24px 0;
  color: rgba(255,255,255,0.55);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  letter-spacing: 0.5px;
  line-height: 1.7;
}
.culture-img {
  background-image: url('https://static.step1.dev/siax77/assets/7b0ded506d9a.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 400px;
}
.culture-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(6,6,6,0.3) 0%, transparent 50%);
}

/* ── Craft Section ── */
.craft-section {
  text-align: center;
  padding: 80px 0 60px;
}
.craft-section h3 {
  font-size: 2rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.craft-section > p {
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 52px;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
}
.craft-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.craft-card {
  background: rgba(16, 16, 16, 0.7);
  padding: 44px 32px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  transition: 0.35s;
}
.craft-card:hover {
  border-color: rgba(200, 169, 110, 0.25);
  transform: translateY(-6px);
  background: rgba(20, 20, 20, 0.95);
}
.craft-card i {
  font-size: 2.2rem;
  color: #c8a96e;
  margin-bottom: 22px;
}
.craft-card h4 {
  margin-bottom: 12px;
  letter-spacing: 1px;
  font-size: 0.95rem;
}
.craft-card p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 20px;
  line-height: 1.7;
}
.craft-card a {
  color: #c8a96e;
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 1px;
  transition: letter-spacing 0.2s;
}
.craft-card a:hover { letter-spacing: 2px; }
.honor-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 44px;
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.honor-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.38);
  letter-spacing: 0.5px;
}
.honor-item i { color: #c8a96e; }

/* ── Newsletter (Harney/Vahdam inspired) ── */
.newsletter-section {
  background: linear-gradient(135deg, #0e0b07 0%, #080808 100%);
  border-top: 1px solid rgba(200,169,110,0.12);
  border-bottom: 1px solid rgba(200,169,110,0.12);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 0;
}
.newsletter-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(200,169,110,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.newsletter-section .section-eyebrow { margin-bottom: 14px; }
.newsletter-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.newsletter-section p {
  color: rgba(255,255,255,0.35);
  font-size: 0.82rem;
  letter-spacing: 1px;
  margin-bottom: 36px;
}
.newsletter-form {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
  border-radius: 40px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}
.newsletter-input {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: none;
  border-right: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  padding: 14px 20px;
  font-size: 0.78rem;
  letter-spacing: 1px;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-form:focus-within {
  border-color: rgba(200,169,110,0.45);
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.2); }
.newsletter-btn {
  background: #c8a96e;
  border: none;
  color: #000;
  padding: 14px 28px;
  font-size: 0.72rem;
  letter-spacing: 2px;
  cursor: pointer;
  transition: 0.2s;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
}
.newsletter-btn:hover {
  background: #e0c48a;
}
.newsletter-privacy {
  margin-top: 14px;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.5px;
}

/* ── Footer ── */
.footer {
  background: #050505;
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  gap: 56px;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.footer h4, .footer h5 {
  margin-bottom: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  font-size: 0.88rem;
}
.footer p {
  color: rgba(255, 255, 255, 0.28);
  font-size: 0.8rem;
  line-height: 2;
}
.footer a {
  color: rgba(255, 255, 255, 0.32);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.2s;
}
.footer a:hover { color: #c8a96e; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.15);
  font-size: 0.7rem;
  padding-top: 24px;
  gap: 12px;
}
.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  z-index: 400;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.back-to-top:hover {
  background: #c8a96e;
  color: #000;
  border-color: #c8a96e;
}
.fade-in-section {
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-search { display: none; }
  .trust-grid,
  .occasion-grid,
  .craft-grid { grid-template-columns: 1fr 1fr; }
  .product-grid,
  .knowledge-grid { grid-template-columns: 1fr; }
  .culture-block { grid-template-columns: 1fr; }
  .culture-img { min-height: 280px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .slide-content h2 { font-size: 2.2rem; }
  .newsletter-form { flex-direction: column; }
  .newsletter-input { border-right: 1px solid rgba(255,255,255,0.1); }
  .scroll-hint { display: none; }
}
@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
  .occasion-grid { grid-template-columns: 1fr 1fr; }
  .occasion-card { height: 220px; }
}
