/*
Theme Name: Oricraft
Theme URI: https://www.oricraft.in
Author: Oricraft
Author URI: https://www.oricraft.in
Description: Oricraft WordPress Theme
Version: 1.0
Text Domain: oricraft
*/

:root {
  --cream: #F5F0E8;
  --cream-dark: #EDE7D9;
  --charcoal: #1A1917;
  --charcoal-mid: #2E2C28;
  --warm-gray: #8A8680;
  --terracotta: #B85C38;
  --gold: #A8862C;
  --gold-light: #C9A84C;
  --border: rgba(26, 25, 23, 0.12);
  --border-strong: rgba(26, 25, 23, 0.22);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--sans);
  font-weight: 300;
  overflow-x: hidden;
}

/* Grain texture 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.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.6;
}

/* ── ANNOUNCEMENT BAR ── */
.announcement {
  background: var(--charcoal);
  color: var(--cream);
  text-align: center;
  padding: 10px 20px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--sans);
  font-weight: 400;
}

/* ── HEADER ── */
header {
  background: var(--cream);
  border-bottom: 0.5px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
}

.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 72px;
}

.header-nav {
  display: flex;
  gap: 36px;
  align-items: center;
}

.header-nav a {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  position: relative;
  transition: color 0.2s;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 0.5px;
  background: var(--charcoal);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.header-nav a:hover::after {
  transform: scaleX(1);
}

.logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-img {
  height: 72px;
  width: auto;
}

.header-actions {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: flex-end;
}

.header-actions a {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  font-weight: 400;
}

.cart-btn {
  background: var(--charcoal);
  color: var(--cream) !important;
  padding: 9px 20px;
  font-size: 10px !important;
  letter-spacing: 0.15em !important;
}

/* ── HERO ── */
.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  background: var(--charcoal-mid);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-left-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 70%, rgba(168, 134, 44, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(184, 92, 56, 0.1) 0%, transparent 50%),
    var(--charcoal-mid);
}

.hero-image-placeholder {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 92vh;
}

/* Decorative craft motif for hero */
.hero-motif {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.hero-label {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 2;
  color: rgba(245, 240, 232, 0.6);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: var(--sans);
}

.hero-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 80px 80px 72px;
  position: relative;
}

.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 24px;
  font-weight: 400;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(52px, 5.5vw, 80px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--charcoal);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.hero-title em {
  font-style: italic;
  color: var(--warm-gray);
}

.hero-body {
  font-size: 14px;
  line-height: 1.8;
  color: var(--warm-gray);
  max-width: 380px;
  margin-bottom: 48px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.btn-primary {
  background: var(--charcoal);
  color: var(--cream);
  padding: 14px 36px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--charcoal);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s;
}

.btn-primary:hover {
  background: transparent;
  color: var(--charcoal);
}

.btn-secondary {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 0.5px solid var(--border-strong);
  padding-bottom: 2px;
  transition: gap 0.25s;
}

.btn-secondary:hover {
  gap: 16px;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll span {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-gray);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 0.5px;
  height: 48px;
  background: var(--border-strong);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--charcoal);
  animation: scrollAnim 2s ease-in-out infinite;
}

@keyframes scrollAnim {
  0% {
    top: -100%;
  }

  100% {
    top: 100%;
  }
}

/* ── MARQUEE ── */
.marquee-wrap {
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  background: var(--cream-dark);
  padding: 14px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 28s linear infinite;
  width: max-content;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 32px;
  white-space: nowrap;
}

.marquee-text {
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
  color: var(--warm-gray);
  letter-spacing: 0.02em;
}

.marquee-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ── SECTION COMMON ── */
section {
  padding: 100px 48px;
  max-width: 1440px;
  margin: 0 auto;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
}

.section-eyebrow {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
  font-weight: 400;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(34px, 3.5vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.section-title em {
  font-style: italic;
  color: var(--warm-gray);
}

.view-all {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  border-bottom: 0.5px solid var(--border-strong);
  padding-bottom: 2px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.25s;
  flex-shrink: 0;
  margin-bottom: 8px;
}

.view-all:hover {
  gap: 14px;
}

/* ── CATEGORIES GRID ── */
.categories-full {
  padding: 0;
  max-width: 100%;
  background: var(--cream);
}

.categories-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 100px 48px;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}

.category-card {
  background: var(--cream);
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: all 0.4s ease;
}

.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 25, 23, 0.65) 0%, rgba(26, 25, 23, 0.1) 50%, transparent 100%);
  z-index: 1;
  transition: opacity 0.4s;
}

.category-card:hover::before {
  background: linear-gradient(to top, rgba(26, 25, 23, 0.8) 0%, rgba(26, 25, 23, 0.3) 60%, rgba(26, 25, 23, 0.05) 100%);
}

.category-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.category-card:hover .category-bg {
  transform: scale(1.04);
}

/* Category background patterns (placeholder artisanal patterns) */
.cat-1 .category-bg {
  background-color: #2E2820;
  background-image: radial-gradient(circle at 30% 60%, rgba(168, 134, 44, 0.3) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(184, 92, 56, 0.2) 0%, transparent 40%);
}

.cat-2 .category-bg {
  background-color: #1E2A2E;
  background-image: radial-gradient(circle at 60% 40%, rgba(94, 140, 120, 0.35) 0%, transparent 50%), radial-gradient(circle at 20% 80%, rgba(168, 134, 44, 0.2) 0%, transparent 40%);
}

.cat-3 .category-bg {
  background-color: #2A1E2A;
  background-image: radial-gradient(circle at 40% 30%, rgba(140, 94, 140, 0.3) 0%, transparent 50%), radial-gradient(circle at 70% 70%, rgba(184, 92, 56, 0.2) 0%, transparent 40%);
}

.cat-4 .category-bg {
  background-color: #2A2620;
  background-image: radial-gradient(circle at 50% 50%, rgba(168, 134, 44, 0.25) 0%, transparent 55%), radial-gradient(circle at 10% 90%, rgba(94, 120, 140, 0.2) 0%, transparent 40%);
}

.category-content {
  position: relative;
  z-index: 2;
}

.category-tag {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.6);
  border: 0.5px solid rgba(245, 240, 232, 0.3);
  padding: 4px 10px;
  margin-bottom: 12px;
  font-weight: 400;
}

.category-name {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.category-count {
  font-size: 11px;
  color: rgba(245, 240, 232, 0.5);
  letter-spacing: 0.08em;
}

.category-arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 0.5px solid rgba(245, 240, 232, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-size: 14px;
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: all 0.3s ease;
}

.category-card:hover .category-arrow {
  opacity: 1;
  transform: translate(0, 0);
}

/* ── FEATURED PRODUCTS ── */
.products-section {
  background: var(--cream);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}

.product-card {
  background: var(--cream);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.product-image {
  aspect-ratio: 1;
  background: var(--cream-dark);
  overflow: hidden;
  position: relative;
}

.product-img-bg {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card:hover .product-img-bg {
  transform: scale(1.04);
}

/* Product placeholder visuals */
.prod-1 .product-img-bg {
  background: linear-gradient(135deg, #E8DFD0 0%, #D4C5A9 100%);
}

.prod-2 .product-img-bg {
  background: linear-gradient(135deg, #D0D8D4 0%, #B8C4BE 100%);
}

.prod-3 .product-img-bg {
  background: linear-gradient(135deg, #DFD0C8 0%, #C9B4A8 100%);
}

.prod-4 .product-img-bg {
  background: linear-gradient(135deg, #D8D0E0 0%, #C0B4CC 100%);
}

.prod-5 .product-img-bg {
  background: linear-gradient(135deg, #E0D8CC 0%, #CCC0A8 100%);
}

.prod-6 .product-img-bg {
  background: linear-gradient(135deg, #D0DCD8 0%, #B4CCCC 100%);
}

/* SVG product illustrations */
.prod-visual {
  opacity: 0.5;
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 10px;
  font-weight: 400;
  z-index: 2;
}

.badge-new {
  background: var(--charcoal);
  color: var(--cream);
}

.badge-limited {
  background: var(--terracotta);
  color: var(--cream);
}

.badge-artisan {
  background: transparent;
  border: 0.5px solid var(--border-strong);
  color: var(--charcoal);
}

.product-wishlist {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: var(--cream);
  border: 0.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(-4px);
  transition: all 0.25s;
  z-index: 2;
}

.product-card:hover .product-wishlist {
  opacity: 1;
  transform: translateY(0);
}

.product-info {
  padding: 20px 24px 24px;
  border-top: 0.5px solid var(--border);
}

.product-category {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 6px;
}

.product-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 4px;
  line-height: 1.2;
}

.product-material {
  font-size: 11px;
  color: var(--warm-gray);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--charcoal);
}

.product-cta {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  border-bottom: 0.5px solid var(--border-strong);
  padding-bottom: 1px;
  text-decoration: none;
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.25s;
}

.product-card:hover .product-cta {
  opacity: 1;
  transform: translateX(0);
}

/* ── EDITORIAL STRIP ── */
.editorial {
  padding: 0;
  max-width: 100%;
}

.editorial-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  background: var(--charcoal-mid);
}

.editorial-image {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 40% 60%, rgba(168, 134, 44, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(184, 92, 56, 0.15) 0%, transparent 50%),
    #262420;
  display: flex;
  align-items: center;
  justify-content: center;
}

.editorial-pattern {
  opacity: 0.15;
}

.editorial-content {
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.editorial-eyebrow {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  font-weight: 400;
}

.editorial-title {
  font-family: var(--serif);
  font-size: clamp(36px, 3.5vw, 54px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 24px;
}

.editorial-title em {
  font-style: italic;
  color: rgba(201, 168, 76, 0.8);
}

.editorial-body {
  font-size: 13px;
  line-height: 1.9;
  color: rgba(245, 240, 232, 0.55);
  max-width: 400px;
  margin-bottom: 40px;
}

.editorial-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 48px;
  padding-top: 32px;
  border-top: 0.5px solid rgba(245, 240, 232, 0.12);
}

.stat-num {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.4);
}

.btn-light {
  background: transparent;
  color: var(--cream);
  padding: 13px 32px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 0.5px solid rgba(245, 240, 232, 0.35);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s;
  align-self: flex-start;
}

.btn-light:hover {
  background: var(--cream);
  color: var(--charcoal);
}

/* ── NEW ARRIVALS — HORIZONTAL SCROLL ── */
.arrivals-full {
  max-width: 100%;
  padding: 100px 0;
}

.arrivals-header {
  padding: 0 48px;
  margin-bottom: 40px;
}

.arrivals-scroll-wrap {
  overflow-x: auto;
  padding: 0 48px 24px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.arrivals-scroll-wrap::-webkit-scrollbar {
  display: none;
}

.arrivals-track {
  display: flex;
  gap: 2px;
  width: max-content;
}

.arrival-card {
  width: 320px;
  flex-shrink: 0;
  cursor: pointer;
}

.arrival-image {
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}

.arrival-img-bg {
  width: 100%;
  height: 100%;
  transition: transform 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrival-card:hover .arrival-img-bg {
  transform: scale(1.04);
}

.arr-1 .arrival-img-bg {
  background: linear-gradient(160deg, #DDD5C8 0%, #C4B89A 100%);
}

.arr-2 .arrival-img-bg {
  background: linear-gradient(160deg, #C8D5D0 0%, #9AB8B0 100%);
}

.arr-3 .arrival-img-bg {
  background: linear-gradient(160deg, #D5C8D0 0%, #B89AA8 100%);
}

.arr-4 .arrival-img-bg {
  background: linear-gradient(160deg, #D5D0C8 0%, #B8B09A 100%);
}

.arr-5 .arrival-img-bg {
  background: linear-gradient(160deg, #C8C8D5 0%, #9A9AB8 100%);
}

.arrival-info {
  padding: 16px 2px;
  border-top: 0.5px solid var(--border);
}

.arrival-name {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 4px;
}

.arrival-sub {
  font-size: 11px;
  color: var(--warm-gray);
  margin-bottom: 10px;
}

.arrival-price {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--charcoal);
}

/* ── CRAFT STORY ── */
.craft-story {
  background: var(--cream-dark);
  max-width: 100%;
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  padding: 0;
}

.craft-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 100px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.craft-label-vertical {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--warm-gray);
  display: flex;
  align-items: center;
  gap: 16px;
}

.craft-label-vertical::before {
  content: '';
  width: 0.5px;
  height: 48px;
  background: var(--border-strong);
}

.craft-left {
  display: flex;
  gap: 24px;
}

.craft-image-main {
  flex: 1;
  aspect-ratio: 3/4;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(168, 134, 44, 0.2) 0%, transparent 60%),
    #2A2420;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.craft-image-small {
  width: 140px;
  align-self: flex-end;
  margin-bottom: 40px;
}

.craft-img-sm {
  aspect-ratio: 1;
  background:
    radial-gradient(ellipse at 60% 40%, rgba(184, 92, 56, 0.25) 0%, transparent 60%),
    #2A2220;
  margin-bottom: 8px;
}

.craft-right {}

.craft-eyebrow {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
  font-weight: 400;
}

.craft-title {
  font-family: var(--serif);
  font-size: clamp(34px, 3vw, 48px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.craft-title em {
  font-style: italic;
  color: var(--warm-gray);
}

.craft-body {
  font-size: 13px;
  line-height: 1.9;
  color: var(--warm-gray);
  margin-bottom: 16px;
}

.craft-divider {
  width: 40px;
  height: 0.5px;
  background: var(--gold);
  margin: 32px 0;
}

.craft-feature {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.craft-feature-icon {
  width: 36px;
  height: 36px;
  border: 0.5px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.craft-feature-title {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 4px;
}

.craft-feature-sub {
  font-size: 12px;
  color: var(--warm-gray);
  line-height: 1.6;
}

/* ── GIFTING / B2B ── */
.gifting-section {
  background: var(--charcoal);
  max-width: 100%;
  padding: 80px 48px;
  text-align: center;
}

.gifting-inner {
  max-width: 700px;
  margin: 0 auto;
}

.gifting-eyebrow {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  font-weight: 400;
}

.gifting-title {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 20px;
}

.gifting-title em {
  font-style: italic;
  color: rgba(201, 168, 76, 0.7);
}

.gifting-body {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.5);
  margin-bottom: 40px;
}

.gifting-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

/* ── TESTIMONIALS ── */
.testimonials-section {
  max-width: 1440px;
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.testimonial-card {
  background: var(--cream);
  padding: 40px 36px;
}

.testimonial-quote {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 28px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 24px;
  border-top: 0.5px solid var(--border);
}

.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cream-dark);
  border: 0.5px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 13px;
  color: var(--warm-gray);
}

.testimonial-name {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.testimonial-role {
  font-size: 10px;
  color: var(--warm-gray);
  letter-spacing: 0.05em;
}

.testimonial-stars {
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 2px;
}

/* ── NEWSLETTER ── */
.newsletter-section {
  background: var(--cream-dark);
  max-width: 100%;
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  padding: 80px 48px;
  text-align: center;
}

.newsletter-inner {
  max-width: 520px;
  margin: 0 auto;
}

.newsletter-eyebrow {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
}

.newsletter-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 12px;
}

.newsletter-sub {
  font-size: 13px;
  color: var(--warm-gray);
  margin-bottom: 36px;
  line-height: 1.7;
}

.newsletter-form {
  display: flex;
  border: 0.5px solid var(--border-strong);
  background: var(--cream);
}

.newsletter-input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  background: transparent;
  font-family: var(--sans);
  font-size: 12px;
  color: var(--charcoal);
  outline: none;
  letter-spacing: 0.04em;
}

.newsletter-input::placeholder {
  color: var(--warm-gray);
}

.newsletter-btn {
  background: var(--charcoal);
  color: var(--cream);
  border: none;
  padding: 14px 28px;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  font-weight: 400;
}

.newsletter-btn:hover {
  background: var(--charcoal-mid);
}

/* ── FOOTER ── */
footer {
  background: var(--charcoal);
  color: var(--cream);
  padding: 72px 48px 40px;
}

.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 0.5px solid rgba(245, 240, 232, 0.1);
  margin-bottom: 40px;
}

.footer-brand {}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 20px;
  filter: invert(1) brightness(0.85);
}

.footer-tagline {
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  color: rgba(245, 240, 232, 0.5);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 240px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 32px;
  height: 32px;
  border: 0.5px solid rgba(245, 240, 232, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 240, 232, 0.5);
  text-decoration: none;
  font-size: 11px;
  transition: all 0.2s;
}

.social-link:hover {
  border-color: rgba(245, 240, 232, 0.5);
  color: var(--cream);
}

.footer-col-title {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.4);
  margin-bottom: 20px;
  font-weight: 400;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(245, 240, 232, 0.55);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 300;
}

.footer-links a:hover {
  color: var(--cream);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 11px;
  color: rgba(245, 240, 232, 0.3);
  letter-spacing: 0.04em;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 11px;
  color: rgba(245, 240, 232, 0.3);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: rgba(245, 240, 232, 0.7);
}

/* ── SCROLL REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.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;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* Page load animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-right>* {
  animation: fadeIn 0.8s ease both;
}

.hero-right>*:nth-child(1) {
  animation-delay: 0.1s;
}

.hero-right>*:nth-child(2) {
  animation-delay: 0.2s;
}

.hero-right>*:nth-child(3) {
  animation-delay: 0.35s;
}

.hero-right>*:nth-child(4) {
  animation-delay: 0.5s;
}

/* ── SVG ILLUSTRATIONS ── */
.hero-svg-motif {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}