/* ============================================
   VARIABLES — TEXTILE EDITORIAL THEME
============================================ */
:root {
  --indigo: #1a365d;
  --indigo-deep: #0f2341;
  --indigo-soft: #2d4a7a;
  --terracotta: #c8553d;
  --terracotta-light: #e07658;
  --terracotta-pale: #f5d5c9;
  --sage: #7a8a6e;
  --sage-light: #9aac8e;
  --cream: #faf6f0;
  --cream-warm: #f5efe6;
  --linen: #f0e8dc;
  --beige: #d4b896;
  --charcoal: #2a2a2a;
  --ink: #1a1a1a;
  --ink-soft: #3d3d3d;
  --ink-muted: #6b6b6b;
  --white: #ffffff;

  --gradient-fabric: linear-gradient(135deg, #1a365d 0%, #2d4a7a 50%, #c8553d 100%);
  --gradient-warm: linear-gradient(135deg, #c8553d 0%, #e07658 100%);
  --gradient-earth: linear-gradient(135deg, #faf6f0 0%, #f5efe6 100%);

  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Inter', -apple-system, sans-serif;

  --shadow-soft: 0 4px 20px rgba(26, 54, 93, 0.08);
  --shadow-md: 0 12px 40px rgba(26, 54, 93, 0.12);
  --shadow-lg: 0 24px 60px rgba(26, 54, 93, 0.16);
  --shadow-warm: 0 10px 40px rgba(200, 85, 61, 0.3);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
}

/* ============================================
   RESET
============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* ============================================
   TEXTILE BACKGROUND
============================================ */
.textile-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.weave-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    repeating-linear-gradient(0deg, var(--indigo) 0 1px, transparent 1px 20px),
    repeating-linear-gradient(90deg, var(--terracotta) 0 1px, transparent 1px 20px);
}

.fabric-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  animation: drift 30s ease-in-out infinite;
}

.blob-indigo {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--indigo-soft), transparent 70%);
  top: -200px; right: -200px;
  opacity: 0.12;
}

.blob-terracotta {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--terracotta-light), transparent 70%);
  top: 40%; left: -150px;
  opacity: 0.1;
  animation-delay: -10s;
}

.blob-sage {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--sage), transparent 70%);
  bottom: 10%; right: 20%;
  opacity: 0.12;
  animation-delay: -20s;
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.1); }
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

a { color: inherit; text-decoration: none; transition: color 0.3s; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* ============================================
   NAVIGATION
============================================ */
.textile-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.3s ease;
}

.textile-nav.scrolled {
  padding: 12px 0;
  background: rgba(250, 246, 240, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px dashed rgba(200, 85, 61, 0.2);
  box-shadow: 0 4px 30px rgba(26, 54, 93, 0.05);
}

.nav-shell {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.textile-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-swatch {
  width: 44px; height: 44px;
  background: var(--gradient-fabric);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: var(--shadow-md);
  border: 2px dashed rgba(255,255,255,0.3);
}

.swatch-thread {
  width: 20px; height: 20px;
  border: 2px solid white;
  border-radius: 50%;
  position: relative;
}

.swatch-thread::before, .swatch-thread::after {
  content: '';
  position: absolute;
  background: white;
}

.swatch-thread::before {
  width: 2px; height: 100%;
  left: 50%; top: 0;
  transform: translateX(-50%);
}

.swatch-thread::after {
  width: 100%; height: 2px;
  top: 50%; left: 0;
  transform: translateY(-50%);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--indigo);
  letter-spacing: 0.5px;
}

.brand-tag {
  font-size: 0.6rem;
  letter-spacing: 3px;
  color: var(--terracotta);
  font-weight: 700;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  gap: 36px;
}

.nav-menu a {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  padding: 4px 0;
  text-transform: uppercase;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--terracotta);
  transition: width 0.3s;
}

.nav-menu a:hover { color: var(--terracotta); }
.nav-menu a:hover::after { width: 100%; }

.nav-cta {
  padding: 11px 24px;
  background: var(--indigo);
  color: var(--cream);
  border-radius: 2px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  transition: all 0.3s;
  white-space: nowrap;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px dashed var(--terracotta);
}

.nav-cta:hover {
  background: var(--terracotta);
  border-style: solid;
  transform: translateY(-2px);
  box-shadow: var(--shadow-warm);
}

.cta-thread { transition: transform 0.3s; }
.nav-cta:hover .cta-thread { transform: translateX(4px); }

.burger {
  display: none;
  width: 32px; height: 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.burger span {
  width: 24px; height: 2px;
  background: var(--indigo);
  transition: 0.3s;
}

/* ============================================
   BUTTONS
============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 2px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-warm);
  color: white;
  box-shadow: var(--shadow-warm);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.6s;
}

.btn-primary:hover::before { left: 100%; }

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(200, 85, 61, 0.45);
}

.btn-thread {
  font-size: 1.2rem;
  transition: transform 0.3s;
}

.btn-primary:hover .btn-thread { transform: translateX(4px); }

.btn-stitch {
  background: transparent;
  color: var(--indigo);
  border: 1.5px dashed var(--indigo);
}

.btn-stitch:hover {
  background: var(--indigo);
  color: var(--cream);
  border-style: solid;
}

.btn-icon { font-size: 1.1rem; }
.full-width { width: 100%; justify-content: center; }

/* ============================================
   HERO
============================================ */
.hero {
  padding: 160px 0 100px;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-shell {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 18px;
  background: var(--linen);
  color: var(--terracotta);
  border-radius: 2px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 28px;
  border: 1px dashed var(--terracotta);
}

.badge-stitch {
  width: 10px; height: 10px;
  background: var(--terracotta);
  border-radius: 50%;
}

.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  line-height: 1.05;
  font-weight: 500;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
  color: var(--indigo);
}

.hero-h1 em {
  font-style: italic;
  color: var(--terracotta);
  font-weight: 400;
}

.hero-lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 40px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-markers {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 32px;
  border-top: 1px dashed rgba(26, 54, 93, 0.2);
}

.marker {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.marker-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--terracotta);
  line-height: 1;
}

.marker-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 600;
}

.marker-stitch {
  width: 1px;
  height: 40px;
  background: repeating-linear-gradient(
    to bottom,
    var(--terracotta) 0 4px,
    transparent 4px 8px
  );
}

/* Hero Right */
.hero-right {
  position: relative;
}

.hero-visual {
  position: relative;
  height: 560px;
}

.fabric-showcase {
  position: relative;
  width: 100%;
  height: 100%;
}

.fabric-main {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  padding: 50px 40px;
  background: var(--indigo);
  color: var(--cream);
  text-align: center;
  border: 2px dashed var(--terracotta);
  box-shadow: var(--shadow-lg);
}

.fabric-label {
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--terracotta-light);
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.fabric-title {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--cream);
}

.fabric-title em {
  font-style: italic;
  color: var(--terracotta-light);
}

.fabric-divider {
  width: 60px;
  height: 1px;
  background: var(--terracotta);
  margin: 20px auto;
}

.fabric-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fs-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--terracotta-light);
}

.fs-lbl {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(250, 246, 240, 0.7);
}

.fabric-chip {
  position: absolute;
  padding: 14px 18px;
  background: white;
  border: 1px dashed rgba(26, 54, 93, 0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  animation: chipFloat 8s ease-in-out infinite;
}

.chip-swatch {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px dashed rgba(0,0,0,0.1);
}

.sw-velvet { background: linear-gradient(135deg, #1a365d, #2d4a7a); }
.sw-linen { background: linear-gradient(135deg, #f5efe6, #d4b896); }
.sw-leather { background: linear-gradient(135deg, #8b5a3c, #5c3a24); }

.chip-info strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--indigo);
}

.chip-info span {
  font-size: 0.75rem;
  color: var(--ink-muted);
}

.chip-1 { top: 5%; right: 0; animation-delay: 0s; }
.chip-2 { bottom: 25%; left: -10px; animation-delay: -3s; }
.chip-3 { bottom: 5%; right: 10%; animation-delay: -6s; }

@keyframes chipFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ============================================
   STATS STRIP
============================================ */
.stats-strip {
  padding: 80px 0;
  background: var(--indigo);
  color: var(--cream);
  position: relative;
  z-index: 2;
  border-top: 3px dashed var(--terracotta);
  border-bottom: 3px dashed var(--terracotta);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '◆';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--terracotta);
  font-size: 0.6rem;
  opacity: 0.6;
}

.stat-num {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 600;
  line-height: 1;
  display: inline;
  color: var(--terracotta-light);
}

.stat-plus {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--cream);
}

.stat-label {
  margin-top: 12px;
  font-size: 11px;
  color: rgba(250, 246, 240, 0.7);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

/* ============================================
   SECTION HEADERS
============================================ */
section { padding: 100px 0; position: relative; z-index: 2; }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 700;
}

.kicker-line {
  width: 40px;
  height: 1px;
  background: repeating-linear-gradient(
    to right,
    var(--terracotta) 0 4px,
    transparent 4px 8px
  );
}

.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  color: var(--indigo);
}

.section-head h2::after {
  content: '◆';
  display: block;
  color: var(--terracotta);
  font-size: 1rem;
  margin-top: 20px;
}

.section-head p {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--ink-soft);
  font-style: italic;
}

/* ============================================
   SERVICES (SWATCH CARDS)
============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.swatch-card {
  background: white;
  border: 1px dashed rgba(26, 54, 93, 0.15);
  overflow: hidden;
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
}

.swatch-card.featured {
  background: var(--indigo);
  color: var(--cream);
  border-color: var(--terracotta);
}

.swatch-ribbon {
  position: absolute;
  top: 20px; right: 20px;
  padding: 4px 12px;
  background: var(--terracotta);
  color: white;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  z-index: 2;
}

.swatch-visual {
  height: 180px;
  position: relative;
  overflow: hidden;
}

.sv-sofa {
  background:
    radial-gradient(circle at 30% 40%, rgba(200, 85, 61, 0.3) 0%, transparent 40%),
    radial-gradient(circle at 70% 60%, rgba(26, 54, 93, 0.4) 0%, transparent 40%),
    linear-gradient(135deg, #c8553d, #e07658);
}

.sv-chair {
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.3) 0%, transparent 60%),
    linear-gradient(135deg, #f5efe6, #d4b896);
}

.sv-dining {
  background:
    repeating-linear-gradient(45deg, rgba(26, 54, 93, 0.1) 0 20px, transparent 20px 40px),
    linear-gradient(135deg, #1a365d, #2d4a7a);
}

.sv-mattress {
  background:
    radial-gradient(circle at 50% 50%, rgba(122, 138, 110, 0.3) 0%, transparent 60%),
    linear-gradient(135deg, #faf6f0, #f5efe6);
}

.sv-curtain {
  background:
    repeating-linear-gradient(90deg, rgba(212, 184, 150, 0.2) 0 10px, transparent 10px 20px),
    linear-gradient(135deg, #d4b896, #f5efe6);
}

.sv-auto {
  background:
    radial-gradient(circle at 30% 50%, rgba(139, 90, 60, 0.4) 0%, transparent 40%),
    linear-gradient(135deg, #5c3a24, #8b5a3c);
}

.swatch-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.swatch-body h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--indigo);
}

.swatch-card.featured .swatch-body h3 { color: var(--cream); }

.swatch-body > p {
  color: var(--ink-soft);
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.55;
  flex: 1;
}

.swatch-card.featured .swatch-body > p { color: rgba(250, 246, 240, 0.8); }

.swatch-feat {
  margin-bottom: 24px;
}

.swatch-feat li {
  padding: 5px 0 5px 24px;
  font-size: 0.9rem;
  color: var(--ink-soft);
  position: relative;
}

.swatch-card.featured .swatch-feat li { color: rgba(250, 246, 240, 0.8); }

.swatch-feat li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--terracotta);
  font-size: 0.6rem;
  top: 9px;
}

.swatch-cta {
  font-size: 13px;
  font-weight: 700;
  color: var(--terracotta);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding-top: 8px;
  border-top: 1px dashed rgba(200, 85, 61, 0.3);
  transition: all 0.3s;
}

.swatch-card.featured .swatch-cta { color: var(--terracotta-light); }

.swatch-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--terracotta);
}

.swatch-card:hover .swatch-visual {
  transform: scale(1.05);
}

/* ============================================
   PROCESS WEAVE
============================================ */
.process { background: var(--cream-warm); }

.process-weave {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.weave-thread {
  position: absolute;
  left: 30px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    var(--terracotta) 0 8px,
    transparent 8px 16px
  );
}

.process-step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 32px;
  position: relative;
}

.process-step:last-child { margin-bottom: 0; }

.step-num {
  flex-shrink: 0;
  width: 60px; height: 60px;
  background: var(--indigo);
  border: 2px dashed var(--terracotta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--terracotta-light);
  z-index: 2;
  transition: all 0.4s;
}

.step-card {
  flex: 1;
  padding: 28px 32px;
  background: white;
  border: 1px dashed rgba(26, 54, 93, 0.15);
  transition: all 0.3s;
}

.step-card h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--indigo);
}

.step-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}

.process-step:hover .step-num {
  background: var(--terracotta);
  border-style: solid;
  color: white;
  transform: scale(1.05) rotate(5deg);
}

.process-step:hover .step-card {
  transform: translateX(8px);
  border-color: var(--terracotta);
  box-shadow: var(--shadow-md);
}

/* ============================================
   GALLERY
============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  background: white;
  border: 1px dashed rgba(26, 54, 93, 0.15);
  transition: all 0.4s;
  cursor: pointer;
}

.gi-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gi-wide {
  grid-column: span 2;
}

.gi-visual {
  position: absolute;
  inset: 0;
  transition: transform 0.6s;
}

.gv-velvet {
  background:
    radial-gradient(circle at 30% 40%, rgba(200, 85, 61, 0.4) 0%, transparent 40%),
    radial-gradient(circle at 70% 60%, rgba(26, 54, 93, 0.6) 0%, transparent 40%),
    linear-gradient(135deg, #0f2341, #1a365d);
}

.gv-linen {
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.4) 0%, transparent 60%),
    linear-gradient(135deg, #f5efe6, #d4b896);
}

.gv-leather {
  background:
    radial-gradient(circle at 30% 50%, rgba(92, 58, 36, 0.5) 0%, transparent 40%),
    linear-gradient(135deg, #2a1810, #5c3a24);
}

.gv-silk {
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.5) 0%, transparent 60%),
    linear-gradient(135deg, #faf6f0, #e07658);
}

.gv-dining {
  background:
    repeating-linear-gradient(45deg, rgba(26, 54, 93, 0.15) 0 15px, transparent 15px 30px),
    linear-gradient(135deg, #c8553d, #1a365d);
}

.gi-tag {
  position: absolute;
  top: 16px; left: 16px;
  padding: 4px 12px;
  background: var(--indigo);
  color: var(--terracotta-light);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  border: 1px dashed var(--terracotta);
  z-index: 2;
}

.gi-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(15, 35, 65, 0.95) 0%, transparent 100%);
  color: white;
  z-index: 2;
  transform: translateY(10px);
  opacity: 0.9;
  transition: all 0.4s;
}

.gi-info h4 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.gi-info p {
  font-size: 0.85rem;
  color: var(--terracotta-light);
  letter-spacing: 0.5px;
}

.gallery-item:hover .gi-visual { transform: scale(1.05); }
.gallery-item:hover .gi-info { transform: translateY(0); opacity: 1; }
.gallery-item:hover { box-shadow: var(--shadow-lg); border-color: var(--terracotta); }

/* ============================================
   JOURNAL / ARTICLE
============================================ */
.journal {
  background: var(--cream);
  border-top: 1px dashed rgba(26, 54, 93, 0.15);
  border-bottom: 1px dashed rgba(26, 54, 93, 0.15);
}

.journal-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 60px;
  padding-bottom: 40px;
  border-bottom: 1px dashed rgba(26, 54, 93, 0.2);
}

.jh-issue {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--terracotta);
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.jh-pill {
  display: inline-block;
  padding: 6px 18px;
  background: var(--indigo);
  color: var(--cream);
  border: 1px dashed var(--terracotta);
  font-size: 10px;
  letter-spacing: 3px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.journal-header h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--indigo);
}

.jh-byline {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--ink-muted);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.byline-author { color: var(--terracotta); font-weight: 600; }
.byline-dot { color: var(--indigo); }

.journal-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.journal-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-toc {
  padding: 24px;
  background: white;
  border: 1px dashed rgba(26, 54, 93, 0.15);
}

.sidebar-toc h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--indigo);
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(26, 54, 93, 0.15);
}

.sidebar-toc ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-toc a {
  font-size: 13px;
  color: var(--ink-soft);
  padding: 4px 0;
  display: block;
  border-left: 2px solid transparent;
  padding-left: 10px;
  transition: all 0.2s;
}

.sidebar-toc a:hover {
  color: var(--terracotta);
  border-left-color: var(--terracotta);
}

.sidebar-card {
  padding: 24px;
  background: var(--indigo);
  color: var(--cream);
  position: relative;
}

.sc-stitch {
  position: absolute;
  inset: 6px;
  border: 1px dashed var(--terracotta);
  pointer-events: none;
}

.sidebar-card p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(250, 246, 240, 0.9);
  position: relative;
}

.journal-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink-soft);
}

.lead-drop {
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 40px;
  padding: 28px 32px;
  background: white;
  border-left: 4px solid var(--terracotta);
  border-right: 1px dashed rgba(26, 54, 93, 0.15);
  position: relative;
}

.drop-cap {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 500;
  float: left;
  line-height: 0.9;
  margin-right: 8px;
  margin-top: 6px;
  color: var(--terracotta);
}

.pull-quote {
  margin: 40px 0;
  padding: 36px 40px;
  background: var(--indigo);
  color: var(--cream);
  text-align: center;
  position: relative;
  border: 2px dashed var(--terracotta);
}

.pq-mark {
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--terracotta);
  opacity: 0.3;
  position: absolute;
  top: -10px; left: 20px;
  line-height: 1;
}

.pull-quote p {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--cream);
  position: relative;
}

.journal-content h2 {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.2;
  margin: 56px 0 20px;
  color: var(--indigo);
  letter-spacing: -0.01em;
  position: relative;
  padding-bottom: 16px;
}

.journal-content h2::after {
  content: '◆';
  position: absolute;
  bottom: 0; left: 0;
  color: var(--terracotta);
  font-size: 1rem;
}

.journal-content h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 36px 0 14px;
  color: var(--indigo);
}

.journal-content p { margin-bottom: 20px; }

.journal-content ul, .journal-content ol {
  padding-left: 24px;
  margin-bottom: 24px;
  list-style: disc;
}

.journal-content ul li, .journal-content ol li {
  margin-bottom: 10px;
  padding-left: 4px;
}

.journal-content ul li::marker { color: var(--terracotta); }

.journal-content a {
  color: var(--terracotta);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-style: dashed;
  text-underline-offset: 4px;
  transition: all 0.25s;
}

.journal-content a:hover {
  color: var(--indigo);
  text-decoration-style: solid;
}

/* Callouts */
.callout-box {
  padding: 28px;
  background: white;
  border: 1px dashed var(--terracotta);
  margin: 32px 0;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.cb-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--terracotta);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
}

.cb-content strong {
  display: block;
  margin-bottom: 8px;
  color: var(--indigo);
  font-family: var(--serif);
  font-size: 1.15rem;
}

.cb-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cb-content ul li {
  padding: 4px 0 4px 20px;
  position: relative;
  font-size: 0.95rem;
  margin: 0;
}

.cb-content ul li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--terracotta);
  font-size: 0.6rem;
  top: 8px;
}

/* Tables */
.fabric-table, .price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  background: white;
  border: 1px dashed rgba(26, 54, 93, 0.2);
  font-size: 0.95rem;
  box-shadow: var(--shadow-soft);
}

.fabric-table thead, .price-table thead {
  background: var(--indigo);
  color: var(--cream);
}

.fabric-table th, .price-table th {
  padding: 16px 18px;
  text-align: left;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.fabric-table td, .price-table td {
  padding: 14px 18px;
  border-top: 1px dashed rgba(26, 54, 93, 0.1);
  color: var(--ink-soft);
}

.fabric-table tbody tr:hover, .price-table tbody tr:hover {
  background: var(--cream-warm);
}

.stats-box-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 40px 0;
}

.stats-box {
  padding: 28px;
  background: var(--indigo);
  color: var(--cream);
  border: 1px dashed var(--terracotta);
  text-align: center;
  transition: all 0.3s;
}

.stats-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-style: solid;
}

.sb-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--terracotta-light);
  line-height: 1;
  margin-bottom: 8px;
}

.sb-lbl {
  font-size: 11px;
  color: rgba(250, 246, 240, 0.7);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.tip-box {
  padding: 24px 28px;
  background: white;
  border-left: 3px solid var(--terracotta);
  border-right: 1px dashed rgba(26, 54, 93, 0.15);
  margin: 32px 0;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.tip-icon {
  flex-shrink: 0;
  font-size: 1.3rem;
  color: var(--terracotta);
}

.tip-content strong {
  display: block;
  color: var(--indigo);
  margin-bottom: 4px;
  font-family: var(--serif);
  font-size: 1.1rem;
}

.warning-box {
  padding: 24px 28px;
  background: #fef2f2;
  border-left: 3px solid #dc2626;
  border-right: 1px dashed rgba(220, 38, 38, 0.2);
  margin: 32px 0;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.wb-icon {
  flex-shrink: 0;
  font-size: 1.4rem;
  color: #dc2626;
}

.wb-content strong {
  display: block;
  color: #991b1b;
  margin-bottom: 4px;
  font-family: var(--serif);
  font-size: 1.1rem;
}

.feature-card {
  padding: 36px;
  background: var(--indigo);
  color: var(--cream);
  border: 1px dashed var(--terracotta);
  margin: 40px 0;
}

.feature-card h4 {
  color: var(--terracotta-light);
  font-family: var(--serif);
  font-size: 1.4rem;
  margin-top: 0;
  margin-bottom: 24px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}

.feat-item {
  padding: 12px 16px;
  background: rgba(200, 85, 61, 0.1);
  border: 1px dashed rgba(200, 85, 61, 0.3);
  font-size: 0.95rem;
  color: rgba(250, 246, 240, 0.9);
}

.journal-cta {
  margin-top: 60px;
  padding: 48px;
  background: var(--gradient-warm);
  text-align: center;
  color: white;
  box-shadow: var(--shadow-warm);
  position: relative;
  border: 2px dashed white;
}

.cta-stitch {
  position: absolute;
  inset: 10px;
  border: 1px dashed rgba(255,255,255,0.4);
  pointer-events: none;
}

.journal-cta h3 {
  font-family: var(--serif);
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: 12px;
  position: relative;
  color: white;
}

.journal-cta p {
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 28px;
  font-size: 1.05rem;
  font-family: var(--serif);
  font-style: italic;
  position: relative;
}

.journal-cta .btn {
  background: white;
  color: var(--terracotta);
  position: relative;
  border: 1px dashed var(--terracotta);
}

.journal-cta .btn:hover {
  background: var(--indigo);
  color: white;
  border-color: white;
  border-style: solid;
}

/* ============================================
   FAQ
============================================ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border: 1px dashed rgba(26, 54, 93, 0.15);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: var(--shadow-soft);
}

.faq-item:hover { border-color: var(--terracotta); }

.faq-item[open] {
  border-color: var(--terracotta);
  box-shadow: var(--shadow-md);
  border-style: solid;
}

.faq-item summary {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--indigo);
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-toggle {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--cream-warm);
  color: var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.2rem;
  transition: all 0.3s;
  border: 1px dashed var(--terracotta);
}

.faq-item[open] .faq-toggle {
  background: var(--terracotta);
  color: white;
  transform: rotate(45deg);
  border-style: solid;
}

.faq-body {
  padding: 0 24px 22px;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ============================================
   TESTIMONIALS
============================================ */
.testimonials {
  background: var(--cream-warm);
  position: relative;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  padding: 36px 32px;
  background: white;
  border: 1px dashed rgba(26, 54, 93, 0.15);
  position: relative;
  transition: all 0.4s;
  box-shadow: var(--shadow-soft);
}

.testi-quote-mark {
  position: absolute;
  top: 20px; right: 24px;
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--terracotta);
  line-height: 1;
  opacity: 0.2;
}

.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--terracotta);
  border-style: solid;
}

.testi-stars {
  color: var(--terracotta);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 3px;
}

.testi-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 28px;
}

.testi-signature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px dashed rgba(26, 54, 93, 0.15);
}

.sig-mark {
  width: 50px; height: 50px;
  background: var(--gradient-warm);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 600;
  flex-shrink: 0;
  border: 2px dashed white;
}

.sig-name {
  font-weight: 700;
  color: var(--indigo);
  font-size: 0.95rem;
}

.sig-loc {
  font-size: 0.82rem;
  color: var(--ink-muted);
  margin-top: 2px;
}

/* ============================================
   CONTACT
============================================ */
.contact { background: var(--cream); }

.contact-shell {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px dashed var(--terracotta);
}

.contact-info {
  padding: 48px 40px;
  background: var(--indigo);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px dashed var(--terracotta);
  pointer-events: none;
}

.ci-ornament {
  font-size: 2rem;
  color: var(--terracotta);
  margin-bottom: 16px;
  position: relative;
}

.contact-info h3 {
  font-family: var(--serif);
  font-size: 2rem;
  margin-bottom: 32px;
  position: relative;
  color: var(--cream);
}

.info-block {
  padding: 18px 0;
  border-bottom: 1px dashed rgba(200, 85, 61, 0.3);
  position: relative;
}

.info-block:last-of-type { border-bottom: none; }

.info-label {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--terracotta-light);
  font-weight: 700;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.info-value {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--cream);
  display: block;
  font-weight: 500;
}

.info-value:hover { color: var(--terracotta-light); }

.hours-list {
  margin-top: 8px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  font-size: 0.9rem;
  color: rgba(250, 246, 240, 0.9);
  border-bottom: 1px dotted rgba(200, 85, 61, 0.2);
}

.hours-list li:last-child { border-bottom: none; }

.contact-buttons {
  display: flex;
  gap: 10px;
  margin-top: 32px;
  flex-wrap: wrap;
  position: relative;
}

.contact-buttons .btn-primary {
  background: var(--terracotta);
  color: white;
}

.contact-buttons .btn-stitch {
  color: var(--cream);
  border-color: var(--cream);
}

.contact-buttons .btn-stitch:hover {
  background: var(--cream);
  color: var(--indigo);
}

.contact-form {
  padding: 48px 40px;
  background: white;
}

.contact-form h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
  margin-bottom: 24px;
  color: var(--indigo);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--cream-warm);
  border: 1px dashed rgba(26, 54, 93, 0.2);
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--ink);
  transition: all 0.2s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  background: white;
  border-style: solid;
  box-shadow: 0 0 0 3px rgba(200, 85, 61, 0.1);
}

.field textarea { resize: vertical; min-height: 110px; }

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c8553d' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}

/* ============================================
   FOOTER
============================================ */
.footer {
  background: var(--indigo-deep);
  color: var(--cream);
  padding: 80px 0 30px;
  position: relative;
  z-index: 2;
}

.footer-stitch {
  position: absolute;
  top: 10px; left: 0; right: 0;
  height: 3px;
  background: repeating-linear-gradient(
    to right,
    var(--terracotta) 0 20px,
    transparent 20px 40px
  );
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer .brand-name { color: var(--cream); }
.footer .brand-tag { color: var(--terracotta-light); }

.brand-col p {
  color: rgba(250, 246, 240, 0.7);
  margin: 16px 0 24px;
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 340px;
  font-style: italic;
}

.social-row {
  display: flex;
  gap: 10px;
}

.social-row a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(200, 85, 61, 0.1);
  border: 1px dashed var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta-light);
  font-weight: 700;
  transition: all 0.3s;
  font-size: 0.85rem;
}

.social-row a:hover {
  background: var(--terracotta);
  border-style: solid;
  transform: translateY(-3px);
  color: white;
}

.footer-col h4 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--terracotta-light);
}

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a,
.footer-col ul li {
  color: rgba(250, 246, 240, 0.7);
  font-size: 0.92rem;
  transition: color 0.3s;
}

.footer-col ul li a:hover { color: var(--terracotta-light); }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px dashed rgba(200, 85, 61, 0.2);
  text-align: center;
  position: relative;
}

.fb-ornament {
  color: var(--terracotta);
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.footer-bottom p {
  color: rgba(250, 246, 240, 0.5);
  font-size: 0.88rem;
  letter-spacing: 0.5px;
}

/* ============================================
   ANIMATIONS
============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 968px) {
  .hero-shell {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .nav-menu, .nav-cta { display: none; }
  .burger { display: flex; }

  .nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    padding: 24px;
    gap: 16px;
    border-top: 1px dashed rgba(26, 54, 93, 0.1);
    box-shadow: var(--shadow-md);
  }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; gap: 30px; }
  .stat-item:not(:last-child)::after { display: none; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gi-large, .gi-wide {
    grid-column: span 2;
  }

  .journal-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .journal-sidebar {
    position: static;
  }

  .testi-grid { grid-template-columns: 1fr; }
  .contact-shell { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }

  .stats-box-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  section { padding: 70px 0; }

  .hero { padding: 120px 0 80px; }
  .hero-shell { padding: 0 20px; }

  .hero-title { font-size: 2rem; }
  .hero-lead { font-size: 1.05rem; }

  .hero-markers {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .marker-stitch { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gi-large, .gi-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .stats-row { grid-template-columns: 1fr; }

  .process-step {
    flex-direction: column;
    gap: 16px;
  }
  .weave-thread { display: none; }

  .contact-info, .contact-form { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }

  .fabric-chip { display: none; }
  .fabric-main { width: 280px; padding: 40px 30px; }
  .fabric-title { font-size: 2.2rem; }

  .pull-quote { padding: 28px 20px; }
  .pull-quote p { font-size: 1.1rem; }
  .journal-cta { padding: 32px 24px; }
}

/* Selection */
::selection {
  background: var(--terracotta);
  color: white;
}

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb {
  background: var(--gradient-fabric);
  border-radius: 10px;
}