/* ============================================
   BRUSH SUTRA — Main Stylesheet
   Aesthetic: Refined Indian Heritage — warm ivory, deep terracotta, 
   antique gold accents. Cormorant Garamond + Josefin Sans.
   ============================================ */

:root {
  --ivory: #f8f4ee;
  --parchment: #ede6d8;
  --gold: #c9963e;
  --gold-light: #e8c077;
  --terracotta: #b5452a;
  --sienna: #8b2f1a;
  --ink: #1e1510;
  --ink-soft: #3a2e24;
  --warm-grey: #7a6e62;
  --border: rgba(201, 150, 62, 0.25);
  --shadow: rgba(30, 21, 16, 0.12);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-ui: 'Josefin Sans', 'Helvetica Neue', sans-serif;

  --container: 1180px;
  --nav-h: 76px;
  --radius: 2px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* ---- UTILITY ---- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }

.section-label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 24px;
}
.section-h2 em { font-style: italic; color: var(--terracotta); }

.section-sub {
  font-size: 16px;
  color: var(--warm-grey);
  max-width: 600px;
  margin-bottom: 48px;
  line-height: 1.8;
}

.section-cta { margin-top: 56px; text-align: center; }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  background: var(--terracotta);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 2px solid var(--terracotta);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.btn-primary:hover {
  background: var(--sienna);
  border-color: var(--sienna);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--ivory);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 2px solid rgba(248,244,238,0.5);
  transition: border-color 0.25s, background 0.25s;
}
.btn-secondary:hover {
  border-color: var(--ivory);
  background: rgba(248,244,238,0.1);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--terracotta);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 2px solid var(--terracotta);
  transition: background 0.25s, color 0.25s;
}
.btn-outline:hover {
  background: var(--terracotta);
  color: #fff;
}

.btn-nav {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 11px 24px;
  white-space: nowrap;
  transition: background 0.2s;
}
.btn-nav:hover { background: var(--gold-light); }

/* ---- ANIMATIONS ---- */
.animate-up { opacity: 0; transform: translateY(28px); animation: slideUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.5s; }
.delay-4 { animation-delay: 0.7s; }

@keyframes slideUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ---- NAV ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(248, 244, 238, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 4px 32px var(--shadow); }

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--ink);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 28px;
  margin: 0 auto;
}
.nav-links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--terracotta); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.3s;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-bg {
  position: absolute; inset: 0;
  background: 
    radial-gradient(ellipse 70% 80% at 70% 50%, rgba(181,69,42,0.08) 0%, transparent 70%),
    linear-gradient(160deg, #2a1a12 0%, #3d2516 40%, #1e1510 100%);
}

/* Decorative geometric overlay */
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image: 
    repeating-linear-gradient(45deg, rgba(201,150,62,0.04) 0px, rgba(201,150,62,0.04) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(-45deg, rgba(201,150,62,0.04) 0px, rgba(201,150,62,0.04) 1px, transparent 1px, transparent 40px);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px 32px;
}

.hero-content .eyebrow {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--ivory);
  margin-bottom: 28px;
  max-width: 700px;
}
.hero-h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 16px;
  color: rgba(248,244,238,0.65);
  margin-bottom: 48px;
  letter-spacing: 0.03em;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-ornament {
  position: absolute;
  right: -80px; top: 50%;
  transform: translateY(-50%);
  width: 520px; height: 520px;
  border-radius: 50%;
  border: 1px solid rgba(201,150,62,0.12);
  box-shadow: 0 0 0 60px rgba(201,150,62,0.04), 0 0 0 120px rgba(201,150,62,0.025);
  pointer-events: none;
}
.hero-ornament::before {
  content: '';
  position: absolute; inset: 40px;
  border-radius: 50%;
  border: 1px solid rgba(201,150,62,0.18);
}
.hero-ornament::after {
  content: '';
  position: absolute; inset: 80px;
  border-radius: 50%;
  border: 1px solid rgba(201,150,62,0.1);
}

/* ---- VALUE STRIP ---- */
.value-strip {
  background: var(--ink);
  padding: 64px 0;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(201,150,62,0.15);
}

.value-tile {
  background: var(--ink);
  padding: 48px 36px;
  text-align: center;
  transition: background 0.3s;
}
.value-tile:hover { background: #2a1a12; }

.value-icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.value-tile h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 12px;
}
.value-tile p {
  font-size: 13.5px;
  color: rgba(248,244,238,0.55);
  line-height: 1.7;
}

/* ---- HOW IT WORKS ---- */
.section-how {
  padding: 120px 0;
  background: var(--parchment);
}

.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step {
  flex: 1;
  padding: 0 40px;
}
.step:first-child { padding-left: 0; }
.step:last-child { padding-right: 0; }

.step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 20px;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 14px;
}
.step p { font-size: 14.5px; color: var(--warm-grey); line-height: 1.8; }

.step-divider {
  width: 1px;
  height: 200px;
  background: var(--border);
  flex-shrink: 0;
  margin-top: 60px;
}

/* ---- ARTFORMS GRID ---- */
.section-artforms {
  padding: 120px 0;
  background: var(--ivory);
}

.artforms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.artform-card {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}
.artform-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px var(--shadow);
}

.artform-img {
  height: 200px;
  position: relative;
  overflow: hidden;
}

/* Decorative SVG-like patterns via CSS */
.artform-pattern {
  position: absolute; inset: 0;
  opacity: 0.3;
}
.madhubani-pattern {
  background-image: repeating-linear-gradient(0deg, rgba(255,255,255,0.15) 0, rgba(255,255,255,0.15) 1px, transparent 1px, transparent 20px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.15) 0, rgba(255,255,255,0.15) 1px, transparent 1px, transparent 20px);
}
.tanjore-pattern {
  background: radial-gradient(circle at 50% 50%, rgba(255,215,0,0.4) 0%, transparent 60%);
}
.warli-pattern {
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.1) 0, rgba(255,255,255,0.1) 2px, transparent 2px, transparent 24px);
}
.gond-pattern {
  background-image: radial-gradient(circle at 30% 70%, rgba(255,255,255,0.2) 0%, transparent 40%), radial-gradient(circle at 70% 30%, rgba(255,255,255,0.15) 0%, transparent 40%);
}
.pattachitra-pattern {
  background: repeating-linear-gradient(60deg, rgba(255,255,255,0.08) 0, rgba(255,255,255,0.08) 1px, transparent 1px, transparent 18px);
}
.kalamkari-pattern {
  background: radial-gradient(ellipse at 50% 100%, rgba(255,255,255,0.2) 0%, transparent 70%);
}
.miniature-pattern {
  background-image: repeating-linear-gradient(-45deg, rgba(255,255,255,0.1) 0, rgba(255,255,255,0.1) 1px, transparent 1px, transparent 16px);
}
.pichwai-pattern {
  background: radial-gradient(circle at 50% 30%, rgba(255,255,255,0.25) 0%, transparent 50%);
}

.artform-info {
  padding: 20px 22px 22px;
  background: #fff;
}
.artform-region {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}
.artform-info h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
}
.artform-link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--terracotta);
}

/* ---- TESTIMONIALS ---- */
.section-testimonials {
  padding: 120px 0;
  background: var(--ink);
}
.section-testimonials .section-label { color: var(--gold); }
.section-testimonials .section-h2 { color: var(--ivory); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,150,62,0.18);
  padding: 40px 36px;
  position: relative;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: -16px;
}

.testimonial-card p {
  font-size: 15px;
  color: rgba(248,244,238,0.75);
  line-height: 1.85;
  font-family: var(--font-display);
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author strong {
  display: block;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold);
  font-style: normal;
  margin-bottom: 4px;
}
.testimonial-author span {
  font-size: 11px;
  color: rgba(248,244,238,0.4);
  letter-spacing: 0.04em;
}

/* ---- STORY SECTION ---- */
.section-story {
  padding: 120px 0;
  background: var(--parchment);
}

.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-text { }
.story-text p {
  font-size: 16px;
  color: var(--warm-grey);
  margin-bottom: 36px;
  line-height: 1.85;
}

.story-ornament {
  display: flex;
  justify-content: center;
  align-items: center;
}

.story-frame {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 20px rgba(201,150,62,0.05), 0 0 0 40px rgba(201,150,62,0.025);
}

.story-mandala {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--gold) 0%, var(--parchment) 12.5%, var(--gold) 25%, var(--parchment) 37.5%, var(--gold) 50%, var(--parchment) 62.5%, var(--gold) 75%, var(--parchment) 87.5%, var(--gold) 100%);
  opacity: 0.25;
  animation: rotateSlow 30s linear infinite;
}

@keyframes rotateSlow { to { transform: rotate(360deg); } }

/* ---- FOOTER ---- */
.footer {
  background: #100c08;
  padding: 72px 0 32px;
  border-top: 1px solid rgba(201,150,62,0.15);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 56px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--ivory);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 13.5px;
  color: rgba(248,244,238,0.4);
  line-height: 1.8;
  max-width: 280px;
}

.footer-nav h4, .footer-contact h4 {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-nav li, .footer-contact li {
  margin-bottom: 10px;
}

.footer-nav a, .footer-contact a {
  font-size: 13.5px;
  color: rgba(248,244,238,0.5);
  transition: color 0.2s;
}
.footer-nav a:hover, .footer-contact a:hover { color: var(--ivory); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(248,244,238,0.08);
  font-size: 12px;
  color: rgba(248,244,238,0.3);
  letter-spacing: 0.05em;
}

/* ============================================
   PAGE-SPECIFIC STYLES
   ============================================ */

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: linear-gradient(160deg, #2a1a12 0%, #3d2516 60%, #1e1510 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(201,150,62,0.04) 0px, rgba(201,150,62,0.04) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(-45deg, rgba(201,150,62,0.04) 0px, rgba(201,150,62,0.04) 1px, transparent 1px, transparent 40px);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero .eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.12;
  margin-bottom: 20px;
}
.page-hero h1 em { font-style: italic; color: var(--gold-light); }
.page-hero p {
  font-size: 16px;
  color: rgba(248,244,238,0.6);
  max-width: 580px;
  line-height: 1.8;
}

/* ---- ABOUT PAGE ---- */
.about-founders {
  padding: 100px 0;
  background: var(--ivory);
}
.about-founders-inner {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 80px;
  align-items: start;
}
.about-founders h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 28px;
}
.about-founders p {
  font-size: 15.5px;
  color: var(--warm-grey);
  line-height: 1.9;
  margin-bottom: 22px;
}
.pull-quote {
  border-left: 3px solid var(--gold);
  padding: 20px 28px;
  margin: 32px 0;
  background: var(--parchment);
}
.pull-quote p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--ink-soft);
  margin: 0;
}

.values-section {
  padding: 100px 0;
  background: var(--parchment);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 52px;
}
.value-card {
  padding: 40px 32px;
  background: var(--ivory);
  border: 1px solid var(--border);
}
.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--terracotta);
  margin-bottom: 14px;
}
.value-card p { font-size: 14.5px; color: var(--warm-grey); line-height: 1.8; }

.mission-vision {
  padding: 80px 0;
  background: var(--ink);
}
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(201,150,62,0.12);
}
.mv-card {
  background: var(--ink);
  padding: 56px 48px;
}
.mv-card h3 {
  font-size: 10px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
}
.mv-card p {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.65;
}

/* ---- SERVICES PAGE ---- */
.services-section {
  padding: 100px 0;
}
.service-block {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}
.service-block:last-child { border-bottom: none; }
.service-num {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
}
.service-block h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 18px;
}
.service-block p {
  font-size: 15px;
  color: var(--warm-grey);
  line-height: 1.85;
  margin-bottom: 28px;
}

/* ---- HOW IT WORKS PAGE ---- */
.how-steps-section {
  padding: 100px 0;
  background: var(--ivory);
}
.how-step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 40px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}
.how-step:last-child { border-bottom: none; }
.how-step-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  text-align: center;
}
.how-step h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 14px;
}
.how-step p { font-size: 15px; color: var(--warm-grey); line-height: 1.85; }

/* ---- FAQ ---- */
.faq-section {
  padding: 100px 0;
  background: var(--parchment);
}
.faq-list { margin-top: 48px; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.faq-q {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.faq-q::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  font-size: 14.5px;
  color: var(--warm-grey);
  line-height: 1.85;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-item.open .faq-a { max-height: 300px; padding-top: 16px; }

/* ---- COMMISSION FORM ---- */
.commission-section {
  padding: 80px 0 120px;
  background: var(--ivory);
}
.form-container { max-width: 760px; margin: 0 auto; }

.progress-bar {
  display: flex;
  gap: 0;
  margin-bottom: 60px;
  position: relative;
}
.progress-bar::before {
  content: '';
  position: absolute;
  top: 14px; left: 0; right: 0;
  height: 1px;
  background: var(--border);
  z-index: 0;
}
.progress-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.progress-dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--ivory);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 600; color: var(--warm-grey);
  transition: all 0.3s;
}
.progress-step.active .progress-dot, .progress-step.done .progress-dot {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: #fff;
}
.progress-label {
  font-size: 10px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--warm-grey);
  text-align: center;
  transition: color 0.3s;
}
.progress-step.active .progress-label { color: var(--terracotta); }

.form-step { display: none; }
.form-step.active { display: block; }

.form-step h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 36px;
}

.field-group {
  margin-bottom: 28px;
}
.field-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 10px;
}
.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  border-color: var(--gold);
}
.field-group textarea { min-height: 120px; resize: vertical; }

.radio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.radio-option {
  position: relative;
}
.radio-option input { position: absolute; opacity: 0; }
.radio-option label {
  display: block;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--border);
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-soft);
  transition: border-color 0.2s, background 0.2s;
}
.radio-option input:checked + label {
  border-color: var(--terracotta);
  background: rgba(181,69,42,0.05);
  color: var(--terracotta);
}

.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

/* ---- ARTFORMS PAGE ---- */
.artforms-section {
  padding: 100px 0;
}
.artforms-full-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 52px;
}

/* Artform detail */
.artform-detail {
  padding: 80px 0 120px;
}
.artform-detail-hero {
  width: 100%;
  height: 380px;
  margin-bottom: 72px;
  position: relative;
  overflow: hidden;
}
.artform-detail-hero-bg {
  width: 100%; height: 100%;
}
.artform-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
}
.artform-content h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 20px;
  margin-top: 40px;
}
.artform-content h2:first-of-type { margin-top: 0; }
.artform-content p {
  font-size: 15px;
  color: var(--warm-grey);
  line-height: 1.9;
  margin-bottom: 18px;
}
.artform-sidebar h3 {
  font-size: 10px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px; margin-top: 40px;
}
.artform-sidebar h3:first-of-type { margin-top: 0; }
.artform-sidebar ul { padding: 0; }
.artform-sidebar li {
  font-size: 13.5px;
  color: var(--warm-grey);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}

/* ---- FOR ARTISTS PAGE ---- */
.artists-steps {
  padding: 100px 0;
  background: var(--parchment);
}
.artists-steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 52px;
}
.artist-step-card {
  background: var(--ivory);
  border: 1px solid var(--border);
  padding: 40px 36px;
}
.artist-step-card .step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 16px;
}
.artist-step-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 12px;
}
.artist-step-card p { font-size: 14.5px; color: var(--warm-grey); line-height: 1.8; }

.what-we-handle {
  padding: 100px 0;
  background: var(--ink);
}
.what-we-handle .section-h2 { color: var(--ivory); }
.handle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201,150,62,0.12);
  margin-top: 52px;
}
.handle-card {
  background: var(--ink);
  padding: 40px 36px;
  transition: background 0.3s;
}
.handle-card:hover { background: #1e1510; }
.handle-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 12px;
}
.handle-card p { font-size: 13.5px; color: rgba(248,244,238,0.5); line-height: 1.8; }

/* ---- CONTACT PAGE ---- */
.contact-section {
  padding: 100px 0 120px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.contact-cards {
  display: grid;
  gap: 20px;
}
.contact-card {
  background: var(--parchment);
  border: 1px solid var(--border);
  padding: 28px 32px;
}
.contact-card h3 {
  font-size: 10px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
}
.contact-card .contact-value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ink);
  display: block;
  margin-bottom: 8px;
}
.contact-card .contact-hint {
  font-size: 13px;
  color: var(--warm-grey);
  line-height: 1.7;
}

.contact-form-side h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 8px;
}
.contact-form-side > p {
  font-size: 14.5px;
  color: var(--warm-grey);
  margin-bottom: 32px;
}

.form-success {
  display: none;
  background: rgba(74,138,90,0.1);
  border: 1px solid rgba(74,138,90,0.3);
  padding: 24px 28px;
  margin-top: 24px;
  font-size: 14.5px;
  color: #2a6a3a;
  line-height: 1.7;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .artforms-grid, .artforms-full-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
  .story-inner { grid-template-columns: 1fr; }
  .story-ornament { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .handle-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .artform-content { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .about-founders-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { 
    display: none; 
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: var(--ivory); border-bottom: 1px solid var(--border);
    flex-direction: column; gap: 0; padding: 12px 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid var(--border); }
  .nav-links a { display: block; padding: 14px 32px; }
  .btn-nav { display: none; }
  .nav-toggle { display: flex; }

  .hero-ctas { flex-direction: column; }
  .steps-grid { flex-direction: column; gap: 32px; }
  .step-divider { display: none; }
  .step { padding: 0; }

  .artforms-grid, .artforms-full-grid { grid-template-columns: 1fr 1fr; }
  
  .contact-grid { grid-template-columns: 1fr; }
  .artists-steps-grid { grid-template-columns: 1fr; }
  .handle-grid { grid-template-columns: 1fr; }
  .service-block { grid-template-columns: 1fr; gap: 20px; }
  .how-step { grid-template-columns: 64px 1fr; gap: 20px; }
  .radio-grid { grid-template-columns: 1fr; }
  
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  
  .progress-label { display: none; }
}

@media (max-width: 480px) {
  .artforms-grid, .artforms-full-grid { grid-template-columns: 1fr; }
}
