/* ─────────────────────────────────────────
   Maison Varnika — Shared Stylesheet
   ───────────────────────────────────────── */

/* Google Fonts loaded in each HTML <head> */

:root {
  --ivory:      #f5efe4;
  --ivory-soft: #ebe3d3;
  --cream:      #faf6ee;
  --ink:        #1f1713;
  --ink-soft:   #3a2c25;
  --wine:       #7a1f38;
  --wine-deep:  #5c1529;
  --gold:       #b08a3e;
  --border:     #d9cdb8;
  --muted:      #8a7a6a;
}

/* ── Reset & base ── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
ul { list-style: none; }

/* ── Utilities ── */
.serif    { font-family: 'Fraunces', serif; font-variation-settings: "opsz" 144; }
.eyebrow  {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 16px;
}

/* ─────────────────────────────────────────
   ANNOUNCE BAR
   ───────────────────────────────────────── */
.announce {
  background: var(--ink);
  color: var(--ivory);
  text-align: center;
  padding: 10px 16px;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.announce span { opacity: 0.55; margin: 0 10px; }

/* ─────────────────────────────────────────
   NAVIGATION
   ───────────────────────────────────────── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 48px;
  background: rgba(250, 246, 238, 0.95);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
}

.logo {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 2px;
  color: var(--ink);
  text-transform: uppercase;
  text-decoration: none;
  flex-shrink: 0;
  line-height: 1;
}
.logo-dot { color: var(--wine); }

.nav-links {
  display: flex;
  gap: 26px;
  align-items: center;
}
.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 400;
  letter-spacing: 0.4px;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--wine); }

.nav-cta {
  background: var(--wine);
  color: var(--ivory) !important;
  padding: 10px 20px;
  border-radius: 2px;
  font-size: 12px;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.2s;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--wine-deep) !important; color: var(--ivory) !important; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 201;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: all 0.3s;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─────────────────────────────────────────
   HOME HERO
   ───────────────────────────────────────── */
.hero {
  padding: 80px 48px 100px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.1s forwards;
}
.hero-tag::before { content: ''; width: 40px; height: 1px; background: var(--wine); }

.hero-text h1 {
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 144;
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.25s forwards;
}
.hero-text h1 em { font-style: italic; font-weight: 300; color: var(--wine); }

.hero-text > p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.4s forwards;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.55s forwards;
}

/* Hero visual */
.hero-visual {
  position: relative;
  height: 620px;
  opacity: 0;
  animation: fadeIn 1.2s ease 0.3s forwards;
}

.hero-img-1, .hero-img-2 {
  position: absolute;
  border-radius: 3px;
  box-shadow: 0 30px 60px rgba(31, 23, 19, 0.18);
  overflow: hidden;
}
.hero-img-1 {
  width: 70%; height: 78%;
  top: 0; right: 0;
  background: linear-gradient(135deg, #f0d8c8 0%, #e8c4b4 50%, #d4a890 100%);
}
.hero-img-2 {
  width: 55%; height: 48%;
  bottom: 0; left: 0;
  background: linear-gradient(135deg, #e8d8e4 0%, #d4b8d0 50%, #b894b0 100%);
  border: 8px solid var(--cream);
}
.hero-img-1 img, .hero-img-2 img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
}
.hero-img-1::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 25% 30%, rgba(122,31,56,.35) 0%, transparent 18%),
    radial-gradient(circle at 70% 60%, rgba(176,138,62,.3) 0%, transparent 15%),
    radial-gradient(circle at 45% 80%, rgba(92,21,41,.25) 0%, transparent 20%);
  z-index: 1; pointer-events: none;
}
.hero-img-2::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 30% 40%, rgba(122,31,56,.35) 0%, transparent 20%),
    radial-gradient(circle at 70% 70%, rgba(100,120,60,.3) 0%, transparent 18%);
  z-index: 1; pointer-events: none;
}
.img-label {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.6);
  font-family: 'Fraunces', serif; font-style: italic;
  pointer-events: none; z-index: 2;
}
.hero-caption {
  position: absolute;
  bottom: -36px; right: 0;
  font-size: 12px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--muted);
}
.hero-caption::before { content: '— '; }

/* ─────────────────────────────────────────
   TRUST STRIP
   ───────────────────────────────────────── */
.trust {
  background: var(--ivory);
  padding: 36px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-inner {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 40px; text-align: center;
}
.trust-item .num {
  font-family: 'Fraunces', serif;
  font-size: 36px; font-weight: 400;
  color: var(--wine); display: block; margin-bottom: 4px;
}
.trust-item .label {
  font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--muted);
}

/* ─────────────────────────────────────────
   SECTION BASE
   ───────────────────────────────────────── */
.page-section {
  padding: 100px 48px;
  max-width: 1400px;
  margin: 0 auto;
}

.section-head { text-align: center; margin-bottom: 64px; }
.section-head h2 {
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 144;
  font-weight: 400;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1; letter-spacing: -.01em;
  max-width: 700px; margin: 0 auto;
}
.section-head h2 em { font-style: italic; color: var(--wine); font-weight: 300; }
.section-head p {
  max-width: 560px; margin: 20px auto 0;
  color: var(--ink-soft); font-size: 16px;
}

/* ─────────────────────────────────────────
   BUTTONS
   ───────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ink); color: var(--cream);
  padding: 16px 30px; border-radius: 2px;
  font-family: 'Jost', sans-serif;
  font-size: 13px; letter-spacing: 1.5px;
  text-decoration: none; text-transform: uppercase; font-weight: 500;
  transition: transform .2s, background .2s;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--wine); transform: translateY(-2px); }
.btn-primary svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--ink);
  padding: 16px 30px;
  border: 1px solid var(--ink); border-radius: 2px;
  font-family: 'Jost', sans-serif;
  font-size: 13px; letter-spacing: 1.5px;
  text-decoration: none; text-transform: uppercase; font-weight: 500;
  transition: all .2s; cursor: pointer;
}
.btn-secondary:hover { background: var(--ink); color: var(--cream); }

.btn-wine {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--wine); color: var(--ivory);
  padding: 16px 30px; border-radius: 2px;
  font-size: 13px; letter-spacing: 1.5px;
  text-decoration: none; text-transform: uppercase; font-weight: 500;
  transition: transform .2s, background .2s;
}
.btn-wine:hover { background: var(--wine-deep); transform: translateY(-2px); }

.wa-big {
  display: inline-flex; align-items: center; gap: 12px;
  background: #25D366; color: white;
  padding: 16px 30px; border-radius: 2px;
  font-size: 13px; letter-spacing: 1.5px;
  text-decoration: none; text-transform: uppercase; font-weight: 500;
  transition: transform .2s;
}
.wa-big:hover { transform: translateY(-2px); }
.wa-big svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ─────────────────────────────────────────
   VALUE PROPS
   ───────────────────────────────────────── */
.values {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 48px;
}
.value {
  padding: 32px 0;
  border-top: 1px solid var(--border);
}
.value .icon { width: 44px; height: 44px; margin-bottom: 24px; color: var(--wine); }
.value h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500; font-size: 24px; margin-bottom: 12px;
}
.value p { color: var(--ink-soft); font-size: 15px; line-height: 1.65; }

/* ─────────────────────────────────────────
   GALLERY BENTO
   ───────────────────────────────────────── */
.gallery-wrap { background: var(--ivory); padding: 100px 0; }

.gallery {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  grid-auto-rows: 220px;
  gap: 16px;
  max-width: 1400px; margin: 0 auto;
  padding: 0 48px;
}

.g-item {
  border-radius: 3px; overflow: hidden;
  position: relative; cursor: pointer;
  transition: transform .4s;
}
.g-item:hover { transform: translateY(-4px); }
.g-item img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s;
}
.g-item:hover img { transform: scale(1.04); }
.g-item::after {
  content: attr(data-label);
  position: absolute; bottom: 16px; left: 20px;
  color: white;
  font-family: 'Fraunces', serif; font-style: italic; font-size: 17px;
  text-shadow: 0 2px 8px rgba(0,0,0,.5);
  z-index: 2;
}
.g-item::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(31,23,19,.5) 0%, transparent 50%);
  z-index: 1;
}

.g-1  { grid-column: span 2; grid-row: span 2; background: linear-gradient(135deg,#d4a890,#c08470); }
.g-2  { background: linear-gradient(135deg,#e8d8e4,#b894b0); }
.g-3  { background: linear-gradient(135deg,#f0e0d0,#d0b098); }
.g-4  { grid-row: span 2; background: linear-gradient(160deg,#b8a898,#8a7868); }
.g-5  { background: linear-gradient(135deg,#e8c4a8,#c09474); }
.g-6  { grid-column: span 2; background: linear-gradient(135deg,#d8b098,#a87858); }
.g-7  { background: linear-gradient(135deg,#c8d8c0,#88a878); }
.g-8  { background: linear-gradient(135deg,#f0d0d8,#c89098); }
.g-9  { grid-column: span 2; background: linear-gradient(135deg,#e0d4c0,#b8a880); }
.g-10 { background: linear-gradient(135deg,#d0c8e8,#9090c0); }
.g-11 { background: linear-gradient(135deg,#e8e0c8,#c0b080); }
.g-12 { background: linear-gradient(135deg,#d8e8d0,#90b880); }

.g-item .floral {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    radial-gradient(circle at 30% 40%, rgba(122,31,56,.3) 0%, transparent 18%),
    radial-gradient(circle at 70% 60%, rgba(176,138,62,.25) 0%, transparent 15%),
    radial-gradient(circle at 50% 80%, rgba(92,21,41,.3) 0%, transparent 20%);
}

/* ─────────────────────────────────────────
   CUSTOM DESIGN SPLIT
   ───────────────────────────────────────── */
.custom-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.custom-visual {
  height: 560px; border-radius: 3px;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--ivory) 0%, var(--ivory-soft) 100%);
}
.custom-visual::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(122,31,56,.2) 0%, transparent 25%),
    radial-gradient(circle at 75% 70%, rgba(176,138,62,.18) 0%, transparent 22%),
    radial-gradient(circle at 60% 20%, rgba(100,120,60,.15) 0%, transparent 20%);
}
.custom-visual img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
}
.custom-visual-label {
  position: absolute; bottom: 24px; left: 24px;
  font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--muted);
  z-index: 2;
}
.custom-content .eyebrow { text-align: left; }
.custom-content h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400; font-size: clamp(30px,3.5vw,44px);
  line-height: 1.1; margin-bottom: 20px;
}
.custom-content h2 em { font-style: italic; color: var(--wine); font-weight: 300; }
.custom-content > p { color: var(--ink-soft); margin-bottom: 36px; font-size: 16px; }

/* ─────────────────────────────────────────
   STEPS LIST
   ───────────────────────────────────────── */
.steps { list-style: none; }
.step {
  display: flex; gap: 24px;
  padding: 22px 0; border-top: 1px solid var(--border);
}
.step:last-child { border-bottom: 1px solid var(--border); }
.step-num {
  font-family: 'Fraunces', serif;
  font-style: italic; font-size: 28px;
  color: var(--wine); min-width: 44px; line-height: 1.2;
}
.step h4 { font-family: 'Fraunces', serif; font-weight: 500; font-size: 18px; margin-bottom: 4px; }
.step p { color: var(--ink-soft); font-size: 14px; line-height: 1.6; }

/* ─────────────────────────────────────────
   CRAFT DARK SECTION
   ───────────────────────────────────────── */
.craft-dark {
  background: var(--ink); color: var(--cream);
  padding: 120px 48px; text-align: center;
}
.craft-dark-inner { max-width: 840px; margin: 0 auto; }
.craft-dark .eyebrow { color: var(--gold); }
.craft-dark h2 {
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 144;
  font-weight: 300; font-size: clamp(32px,4.5vw,56px);
  line-height: 1.15; margin-bottom: 32px;
}
.craft-dark h2 em { font-style: italic; color: var(--gold); }
.craft-dark p {
  font-size: 18px; line-height: 1.7; opacity: .85;
  max-width: 640px; margin: 0 auto 48px;
}
.craft-sig { font-family: 'Fraunces', serif; font-style: italic; font-size: 18px; color: var(--gold); margin-bottom: 8px; }
.craft-sig-sub { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; opacity: .6; }

/* ─────────────────────────────────────────
   WHOLESALE GRID
   ───────────────────────────────────────── */
.wholesale-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 2px; background: var(--border);
  border: 1px solid var(--border);
}
.wh-item { background: var(--cream); padding: 48px 40px; }
.wh-item .num {
  font-family: 'Fraunces', serif;
  font-style: italic; font-size: 14px;
  color: var(--wine); letter-spacing: 1px;
}
.wh-item h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500; font-size: 28px;
  margin: 8px 0 12px; line-height: 1.15;
}
.wh-item p { color: var(--ink-soft); font-size: 15px; line-height: 1.6; }

/* ─────────────────────────────────────────
   COUNTRIES STRIP
   ───────────────────────────────────────── */
.countries-strip {
  background: var(--ivory);
  padding: 80px 48px; text-align: center;
}
.countries-inner { max-width: 1000px; margin: 0 auto; }
.countries-inner h3 {
  font-family: 'Fraunces', serif;
  font-weight: 400; font-size: 32px; margin-bottom: 32px;
}
.countries-inner h3 em { font-style: italic; color: var(--wine); }
.country-list {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 8px 0;
  font-family: 'Fraunces', serif; font-size: 20px; color: var(--ink-soft);
}
.country-list span { padding: 0 20px; border-right: 1px solid var(--border); }
.country-list span:last-child { border-right: none; }

/* ─────────────────────────────────────────
   TESTIMONIAL / QUOTE
   ───────────────────────────────────────── */
.quote-section { padding: 100px 48px; }
.quote-inner { max-width: 920px; margin: 0 auto; text-align: center; }
.quote-mark {
  font-family: 'Fraunces', serif;
  font-size: 110px; line-height: 0.5;
  color: var(--wine); margin-bottom: 20px;
}
.quote-inner blockquote {
  font-family: 'Fraunces', serif;
  font-weight: 300; font-style: italic;
  font-size: clamp(22px,2.4vw,30px);
  line-height: 1.4; color: var(--ink); margin-bottom: 32px;
}
.quote-attr { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }

/* ─────────────────────────────────────────
   FINAL CTA
   ───────────────────────────────────────── */
.final-cta { background: var(--ivory-soft); padding: 100px 48px; }
.final-inner {
  max-width: 960px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.final-inner .lead h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400; font-size: clamp(30px,3.5vw,44px);
  line-height: 1.1; margin-bottom: 20px;
}
.final-inner .lead h2 em { font-style: italic; color: var(--wine); }
.final-inner .lead p { color: var(--ink-soft); margin-bottom: 32px; font-size: 16px; }

/* ─────────────────────────────────────────
   FORMS
   ───────────────────────────────────────── */
.form-card { background: var(--cream); padding: 40px; border-radius: 3px; }
.form-card h3 { font-family: 'Fraunces', serif; font-weight: 500; font-size: 22px; margin-bottom: 24px; }
.field { margin-bottom: 18px; }
.field label {
  display: block; font-size: 11px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--muted); margin-bottom: 6px;
}
.field input, .field textarea, .field select {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--border);
  background: var(--ivory);
  font-family: 'Jost', sans-serif; font-size: 15px; color: var(--ink);
  border-radius: 2px; transition: border-color .2s;
  appearance: none; -webkit-appearance: none;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--wine);
}
.field textarea { resize: vertical; }
.form-submit {
  width: 100%; background: var(--ink); color: var(--cream);
  border: none; padding: 16px;
  font-family: 'Jost', sans-serif; font-size: 13px;
  letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500;
  cursor: pointer; border-radius: 2px; transition: background .2s; margin-top: 8px;
}
.form-submit:hover { background: var(--wine); }

/* ─────────────────────────────────────────
   PAGE HERO (inner pages)
   ───────────────────────────────────────── */
.page-hero {
  background: var(--ivory);
  padding: 80px 48px 90px;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-hero .eyebrow { margin-bottom: 20px; }
.page-hero h1 {
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 144;
  font-weight: 400; font-size: clamp(38px,5vw,68px);
  line-height: 1.05; letter-spacing: -.02em;
  max-width: 800px; margin: 0 auto 24px;
}
.page-hero h1 em { font-style: italic; color: var(--wine); font-weight: 300; }
.page-hero p {
  font-size: 18px; color: var(--ink-soft);
  max-width: 560px; margin: 0 auto 36px; line-height: 1.6;
}
.page-hero .hero-ctas { justify-content: center; }

/* ─────────────────────────────────────────
   SPLIT LAYOUT
   ───────────────────────────────────────── */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

/* ─────────────────────────────────────────
   CARD GRID
   ───────────────────────────────────────── */
.card-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.card-grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 32px; }

.card {
  background: var(--ivory); border-radius: 3px;
  overflow: hidden; border: 1px solid var(--border);
  transition: transform .3s, box-shadow .3s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(31,23,19,.1); }
.card-img {
  height: 280px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--ivory-soft), var(--border));
}
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.card:hover .card-img img { transform: scale(1.04); }
.card-body { padding: 24px 26px 28px; }
.card-body .eyebrow { font-size: 10px; letter-spacing: 2px; margin-bottom: 10px; }
.card-body h3 { font-family: 'Fraunces', serif; font-weight: 500; font-size: 20px; margin-bottom: 8px; }
.card-body p { color: var(--ink-soft); font-size: 14px; line-height: 1.6; }

/* ─────────────────────────────────────────
   PROCESS STEPS (horizontal band)
   ───────────────────────────────────────── */
.process-band { background: var(--border); }
.process-steps {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 2px;
}
.process-step { background: var(--cream); padding: 40px 32px; }
.process-step .step-icon { width: 48px; height: 48px; color: var(--wine); margin-bottom: 20px; }
.process-step .step-num-sm {
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: 13px; color: var(--muted); margin-bottom: 8px; letter-spacing: 1px;
}
.process-step h4 { font-family: 'Fraunces', serif; font-weight: 500; font-size: 20px; margin-bottom: 10px; }
.process-step p { color: var(--ink-soft); font-size: 14px; line-height: 1.6; }

/* ─────────────────────────────────────────
   TAGS
   ───────────────────────────────────────── */
.tag-group { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.tag {
  background: var(--ivory); border: 1px solid var(--border);
  padding: 8px 16px; border-radius: 2px;
  font-size: 13px; color: var(--ink-soft); letter-spacing: .5px;
}

/* ─────────────────────────────────────────
   FAQ
   ───────────────────────────────────────── */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item { border-top: 1px solid var(--border); }
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-q {
  font-family: 'Fraunces', serif; font-weight: 500; font-size: 19px;
  padding: 26px 0 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: flex-start; gap: 16px;
}
.faq-q .faq-icon { color: var(--wine); font-size: 22px; flex-shrink: 0; line-height: 1.3; }
.faq-a {
  color: var(--ink-soft); font-size: 15px; line-height: 1.7;
  padding: 14px 0 26px;
  display: none;
}
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-icon { transition: transform .25s; }

/* ─────────────────────────────────────────
   TIMELINE
   ───────────────────────────────────────── */
.timeline { max-width: 700px; margin: 0 auto; }
.timeline-item {
  display: flex; gap: 32px;
  padding: 32px 0 32px 44px;
  border-left: 1px solid var(--border);
  margin-left: 20px;
  position: relative;
}
.timeline-item::before {
  content: '';
  width: 10px; height: 10px;
  background: var(--wine); border-radius: 50%;
  position: absolute; left: -5px; top: 38px;
}
.timeline-year {
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: 18px; color: var(--wine); min-width: 60px;
}
.timeline-content h4 { font-family: 'Fraunces', serif; font-weight: 500; font-size: 19px; margin-bottom: 8px; }
.timeline-content p { color: var(--ink-soft); font-size: 14px; line-height: 1.6; }

/* ─────────────────────────────────────────
   DARK BAND
   ───────────────────────────────────────── */
.dark-band {
  background: var(--ink); color: var(--cream);
  padding: 80px 48px; text-align: center;
}
.dark-band h2 {
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 144;
  font-weight: 300; font-size: clamp(28px,3.5vw,48px);
  line-height: 1.2; margin-bottom: 24px;
}
.dark-band h2 em { font-style: italic; color: var(--gold); }
.dark-band p { font-size: 16px; opacity: .8; max-width: 560px; margin: 0 auto 36px; }

/* ─────────────────────────────────────────
   CONTACT INFO
   ───────────────────────────────────────── */
.contact-info-item {
  display: flex; gap: 20px;
  padding: 26px 0; border-bottom: 1px solid var(--border);
}
.contact-info-item:first-child { border-top: 1px solid var(--border); }
.contact-info-icon {
  width: 48px; height: 48px;
  background: var(--ivory); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--wine); flex-shrink: 0;
}
.contact-info-text h4 { font-family: 'Fraunces', serif; font-weight: 500; font-size: 17px; margin-bottom: 4px; }
.contact-info-text p, .contact-info-text a {
  color: var(--ink-soft); font-size: 15px;
  text-decoration: none; transition: color .2s;
}
.contact-info-text a:hover { color: var(--wine); }

/* ─────────────────────────────────────────
   ARTISAN GRID
   ───────────────────────────────────────── */
.artisan-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.artisan-card { text-align: center; }
.artisan-img {
  width: 100%; aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--ivory-soft), var(--border));
  border-radius: 3px; overflow: hidden; margin-bottom: 16px; position: relative;
}
.artisan-img img { width: 100%; height: 100%; object-fit: cover; }
.artisan-card h4 { font-family: 'Fraunces', serif; font-weight: 500; font-size: 18px; margin-bottom: 4px; }
.artisan-card p { color: var(--muted); font-size: 13px; letter-spacing: 1px; text-transform: uppercase; }

/* ─────────────────────────────────────────
   FLOATING WHATSAPP
   ───────────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 24px; right: 24px;
  width: 58px; height: 58px; background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; text-decoration: none;
  box-shadow: 0 8px 24px rgba(37,211,102,.35);
  z-index: 200; transition: transform .2s;
  animation: pulse 2.5s infinite;
}
.wa-float:hover { transform: scale(1.08); animation: none; }
.wa-float svg { width: 28px; height: 28px; }

/* ─────────────────────────────────────────
   ANIMATIONS
   ───────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes pulse {
  0%,100% { box-shadow: 0 8px 24px rgba(37,211,102,.35); }
  50%      { box-shadow: 0 8px 36px rgba(37,211,102,.65); }
}
@keyframes navLinkIn {
  from { opacity: 0; transform: translateX(-22px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ─────────────────────────────────────────
   RESPONSIVE — 900px
   ───────────────────────────────────────── */
@media (max-width: 900px) {
  nav { padding: 16px 20px; backdrop-filter: none; background: var(--cream); }
  .nav-links {
    display: none;
    position: fixed; inset: 0;
    background: var(--ink);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 80px 40px 64px;
    gap: 0; z-index: 200;
    list-style: none;
    counter-reset: nav-counter;
    overflow: hidden;
  }
  .nav-links::after {
    content: "Hand Painted · Made for You";
    position: absolute;
    bottom: 36px; left: 40px;
    font-family: 'Jost', sans-serif;
    font-size: 10px; letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.2);
  }
  .nav-links li {
    counter-increment: nav-counter;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .nav-links li:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
  .nav-links a {
    display: flex; align-items: baseline; gap: 14px;
    padding: 14px 0;
    font-family: 'Fraunces', serif;
    font-size: 36px; font-weight: 400; font-style: italic;
    color: rgba(245,239,228,0.88);
    text-decoration: none;
    transition: color 0.25s, padding-left 0.25s;
    width: 100%;
  }
  .nav-links a::before {
    content: counter(nav-counter, decimal-leading-zero);
    font-family: 'Jost', sans-serif;
    font-size: 10px; font-style: normal; font-weight: 600;
    letter-spacing: 2px; color: var(--wine);
    transition: color 0.25s;
  }
  .nav-links a:hover { color: var(--gold); padding-left: 10px; }
  .nav-links a:hover::before,
  .nav-links a.active::before { color: var(--gold); }
  .nav-links a.active { color: var(--gold); }
  .nav-links.open { display: flex; }
  .nav-links.open li {
    animation: navLinkIn 0.45s cubic-bezier(0.22,1,0.36,1) both;
  }
  .nav-links.open li:nth-child(1) { animation-delay: 0.04s; }
  .nav-links.open li:nth-child(2) { animation-delay: 0.09s; }
  .nav-links.open li:nth-child(3) { animation-delay: 0.14s; }
  .nav-links.open li:nth-child(4) { animation-delay: 0.19s; }
  .nav-links.open li:nth-child(5) { animation-delay: 0.24s; }
  .nav-links.open li:nth-child(6) { animation-delay: 0.29s; }
  .nav-links.open li:nth-child(7) { animation-delay: 0.34s; }
  .nav-hamburger { display: flex; }
  .nav-hamburger.open span { background: var(--ivory); }
  .nav-cta { display: none; }

  .hero { padding: 50px 20px 60px; grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { height: 420px; }
  .hero-caption { position: static; margin-top: 16px; }

  .trust { padding: 28px 20px; }
  .trust-inner { grid-template-columns: repeat(2,1fr); gap: 24px; }
  .trust-item .num { font-size: 28px; }

  .page-section { padding: 70px 20px; }
  .section-head { margin-bottom: 48px; }

  .values { grid-template-columns: 1fr; gap: 0; }

  .gallery-wrap { padding: 70px 0; }
  .gallery { grid-template-columns: repeat(2,1fr); padding: 0 20px; grid-auto-rows: 180px; gap: 10px; }
  .g-1 { grid-column: span 2; }
  .g-4 { grid-column: 1; grid-row: span 1; }
  .g-6 { grid-column: span 2; }

  .custom-split { grid-template-columns: 1fr; gap: 48px; }
  .custom-visual { height: 340px; }

  .craft-dark { padding: 80px 20px; }

  .wholesale-grid { grid-template-columns: 1fr; }
  .wh-item { padding: 32px 24px; }

  .countries-strip { padding: 60px 20px; }
  .country-list { font-size: 15px; }
  .country-list span { padding: 0 12px; }

  .quote-section { padding: 70px 20px; }
  .quote-mark { font-size: 80px; }

  .final-cta { padding: 70px 20px; }
  .final-inner { grid-template-columns: 1fr; gap: 40px; }

  .form-card { padding: 28px 22px; }

  .split { grid-template-columns: 1fr; gap: 40px; }

  .card-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .card-grid-2 { grid-template-columns: 1fr; }

  .process-steps { grid-template-columns: 1fr 1fr; }

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

  .page-hero { padding: 60px 20px 70px; }
  .page-hero .hero-ctas { flex-direction: column; align-items: center; }

  .dark-band { padding: 60px 20px; }

  footer { padding: 50px 24px 24px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ─────────────────────────────────────────
   RESPONSIVE — 600px
   ───────────────────────────────────────── */
@media (max-width: 600px) {
  .hero-ctas { flex-direction: column; }
  .trust-inner { grid-template-columns: 1fr 1fr; }
  .gallery { grid-auto-rows: 150px; }
  .g-1 { grid-row: span 2; }
  .card-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .artisan-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .wholesale-grid { grid-template-columns: 1fr; }
}
