/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bronze: #B8860B;
  --bronze-light: #D4A843;
  --bronze-dark: #8B6914;
  --earth: #3E2723;
  --earth-light: #5D4037;
  --cream: #FFF8E7;
  --cream-dark: #F5E6C8;
  --charcoal: #1A1A1A;
  --gold: #FFD700;
  --warm-white: #FFFDF7;
  --terracotta: #C75B39;
  --forest: #2E4A3E;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--charcoal);
  background: var(--warm-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.15;
}

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 1rem;
  display: block;
}

/* ===== PRELOADER ===== */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--earth);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-text {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--bronze-light);
  animation: breathe 2s ease-in-out infinite;
}

.preloader-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  color: var(--bronze);
  opacity: 0.6;
  margin-top: 0.5rem;
  text-transform: uppercase;
}

@keyframes breathe {
  0%, 100% { opacity: 0.4; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1); }
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s ease;
}

.nav.scrolled {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(20px);
  padding: 0.75rem 2rem;
  box-shadow: 0 2px 40px rgba(0,0,0,0.2);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.05em;
}

.nav-logo span {
  color: var(--bronze-light);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--bronze-light);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--cream);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--cream);
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 26, 0.98);
  backdrop-filter: blur(30px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.mobile-menu.active {
  display: flex;
  opacity: 1;
}

.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--cream);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.3s, color 0.3s;
}

.mobile-menu a:hover {
  opacity: 1;
  color: var(--bronze-light);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--earth) 0%, var(--charcoal) 50%, var(--earth-light) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(184, 134, 11, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(212, 168, 67, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(139, 105, 20, 0.08) 0%, transparent 60%);
  z-index: 1;
}

/* Floating particles */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--bronze-light);
  border-radius: 50%;
  opacity: 0;
  animation: float-particle 8s infinite ease-in-out;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 7s; }
.particle:nth-child(2) { left: 25%; animation-delay: 1.5s; animation-duration: 9s; }
.particle:nth-child(3) { left: 40%; animation-delay: 0.5s; animation-duration: 6s; }
.particle:nth-child(4) { left: 55%; animation-delay: 2s; animation-duration: 8s; }
.particle:nth-child(5) { left: 70%; animation-delay: 1s; animation-duration: 10s; }
.particle:nth-child(6) { left: 85%; animation-delay: 3s; animation-duration: 7.5s; }
.particle:nth-child(7) { left: 15%; animation-delay: 2.5s; animation-duration: 8.5s; }
.particle:nth-child(8) { left: 60%; animation-delay: 0.8s; animation-duration: 9.5s; }
.particle:nth-child(9) { left: 35%; animation-delay: 3.5s; animation-duration: 6.5s; }
.particle:nth-child(10) { left: 90%; animation-delay: 1.2s; animation-duration: 11s; }

@keyframes float-particle {
  0% { transform: translateY(100vh); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-10vh); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  max-width: 900px;
}

.hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--bronze-light);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s 0.5s forwards;
}

.hero h1 {
  font-size: clamp(3rem, 10vw, 7rem);
  color: var(--cream);
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: fadeUp 1s 0.8s forwards;
  line-height: 1;
}

.hero h1 .accent {
  background: linear-gradient(135deg, var(--bronze-light), var(--gold), var(--bronze));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  color: rgba(255, 248, 231, 0.7);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 1s 1.1s forwards;
}

.hero-desc {
  font-size: 1rem;
  color: rgba(255, 248, 231, 0.5);
  max-width: 550px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 1s 1.4s forwards;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--bronze), var(--bronze-dark));
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.4s ease;
  opacity: 0;
  animation: fadeUp 1s 1.7s forwards;
}

.hero-cta:hover {
  background: linear-gradient(135deg, var(--bronze-light), var(--bronze));
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(184, 134, 11, 0.3);
}

.hero-cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}

.hero-cta:hover svg {
  transform: translateY(3px);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeUp 1s 2s forwards;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--bronze-light), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== SECTION DEFAULTS ===== */
section {
  padding: 6rem 2rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== ANIMATED REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== STAT BANNER ===== */
.stat-banner {
  background: var(--earth);
  padding: 3rem 2rem;
  overflow: hidden;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.stat-item {
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(184, 134, 11, 0.2);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--bronze-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 248, 231, 0.5);
  margin-top: 0.5rem;
}

/* ===== INTRO / ABOUT ===== */
.intro {
  background: var(--warm-white);
  padding: 8rem 2rem;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.intro-image {
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--cream-dark), var(--bronze-light));
  overflow: hidden;
  border-radius: 2px;
}

.intro-image .image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--earth-light);
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, #e8dcc8, #d4c4a8);
}

.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(184, 134, 11, 0.2);
  pointer-events: none;
}

.intro-text h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--earth);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.intro-text p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--earth-light);
  margin-bottom: 1.5rem;
}

.intro-text .highlight {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--bronze-dark);
  border-left: 3px solid var(--bronze);
  padding-left: 1.5rem;
  margin: 2rem 0;
  line-height: 1.7;
}

/* ===== HISTORY TIMELINE ===== */
.history {
  background: var(--earth);
  color: var(--cream);
  padding: 8rem 2rem;
  position: relative;
  overflow: hidden;
}

.history::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), transparent);
}

.history .section-label {
  color: var(--bronze-light);
}

.history-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
  z-index: 1;
}

.history-header h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--cream);
  margin-bottom: 1rem;
}

.history-header p {
  font-size: 1.1rem;
  color: rgba(255, 248, 231, 0.6);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--bronze-light), transparent);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 4rem;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
  text-align: right;
  padding-right: calc(50% + 3rem);
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
  text-align: left;
  padding-left: calc(50% + 3rem);
}

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  background: var(--bronze-light);
  border-radius: 50%;
  border: 3px solid var(--earth);
  box-shadow: 0 0 20px rgba(184, 134, 11, 0.4);
  z-index: 1;
}

.timeline-date {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--bronze-light);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.timeline-content h3 {
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.timeline-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255, 248, 231, 0.6);
}

/* ===== PROCESS SECTION ===== */
.process {
  background: var(--warm-white);
  padding: 8rem 2rem;
}

.process-header {
  text-align: center;
  margin-bottom: 5rem;
}

.process-header h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--earth);
  margin-bottom: 1rem;
}

.process-header p {
  font-size: 1.1rem;
  color: var(--earth-light);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.8;
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
}

.step {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: center;
  gap: 0;
  min-height: 220px;
}

.step:nth-child(odd) .step-content {
  grid-column: 1;
  text-align: right;
  padding-right: 2rem;
}

.step:nth-child(odd) .step-image {
  grid-column: 3;
}

.step:nth-child(even) .step-content {
  grid-column: 3;
  text-align: left;
  padding-left: 2rem;
}

.step:nth-child(even) .step-image {
  grid-column: 1;
  grid-row: 1;
}

.step-connector {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  height: 100%;
}

.step-connector::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--bronze-light), var(--cream-dark));
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--bronze), var(--bronze-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
  position: relative;
  z-index: 1;
  margin-top: 2rem;
  box-shadow: 0 4px 20px rgba(184, 134, 11, 0.3);
}

.step-content h3 {
  font-size: 1.4rem;
  color: var(--earth);
  margin-bottom: 0.75rem;
}

.step-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--earth-light);
}

.step-image {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #e8dcc8, #d4c4a8);
  border-radius: 2px;
  overflow: hidden;
}

.step-image .image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--earth-light);
  text-align: center;
  padding: 1rem;
}

.step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== CULTURAL SIGNIFICANCE ===== */
.culture {
  background: linear-gradient(135deg, var(--forest) 0%, var(--earth) 100%);
  color: var(--cream);
  padding: 8rem 2rem;
  position: relative;
}

.culture-header {
  text-align: center;
  margin-bottom: 5rem;
}

.culture-header h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

.culture-header p {
  font-size: 1.1rem;
  color: rgba(255, 248, 231, 0.6);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.8;
}

.culture-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.culture-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(184, 134, 11, 0.15);
  padding: 2.5rem 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.culture-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--bronze), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.culture-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.culture-card:hover::before {
  transform: scaleX(1);
}

.culture-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: block;
}

.culture-card h3 {
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 1rem;
}

.culture-card p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255, 248, 231, 0.6);
}

/* ===== REGIONS ===== */
.regions {
  background: var(--cream);
  padding: 8rem 2rem;
}

.regions-header {
  text-align: center;
  margin-bottom: 5rem;
}

.regions-header h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--earth);
  margin-bottom: 1rem;
}

.regions-header p {
  font-size: 1.1rem;
  color: var(--earth-light);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.8;
}

.regions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.region-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
  background: linear-gradient(135deg, var(--earth-light), var(--earth));
  border-radius: 2px;
}

.region-card .image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.region-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.region-card:hover img {
  transform: scale(1.08);
}

.region-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: background 0.4s ease;
}

.region-card:hover .region-overlay {
  background: linear-gradient(to top, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.2) 70%);
}

.region-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.region-state {
  font-size: 0.8rem;
  color: var(--bronze-light);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.region-desc {
  font-size: 0.9rem;
  color: rgba(255, 248, 231, 0.6);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.region-card:hover .region-desc {
  max-height: 200px;
}

/* ===== QUOTE / PULLQUOTE ===== */
.pullquote {
  background: var(--earth);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pullquote::before {
  content: '\201C';
  position: absolute;
  top: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Playfair Display', serif;
  font-size: 20rem;
  color: rgba(184, 134, 11, 0.06);
  line-height: 1;
}

.pullquote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 3.5vw, 2.2rem);
  color: var(--cream);
  max-width: 800px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.pullquote cite {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-style: normal;
  color: var(--bronze-light);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ===== GALLERY ===== */
.gallery {
  background: var(--warm-white);
  padding: 8rem 2rem;
}

.gallery-header {
  text-align: center;
  margin-bottom: 4rem;
}

.gallery-header h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--earth);
  margin-bottom: 1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 300px;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: linear-gradient(135deg, #e8dcc8, #d4c4a8);
  border-radius: 2px;
}

.gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item .image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--earth-light);
  text-align: center;
  padding: 1rem;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s ease;
}

.gallery-overlay span {
  color: var(--cream);
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  background: rgba(26, 26, 26, 0.5);
}

.gallery-item:hover .gallery-overlay span {
  opacity: 1;
  transform: translateY(0);
}

/* ===== ARTISANS ===== */
.artisans {
  background: var(--cream);
  padding: 8rem 2rem;
}

.artisans-header {
  text-align: center;
  margin-bottom: 5rem;
}

.artisans-header h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--earth);
  margin-bottom: 1rem;
}

.artisans-header p {
  font-size: 1.1rem;
  color: var(--earth-light);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.8;
}

.artisans-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.artisans-text p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--earth-light);
  margin-bottom: 1.5rem;
}

.artisans-text .highlight {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--bronze-dark);
  border-left: 3px solid var(--bronze);
  padding-left: 1.5rem;
  margin: 2rem 0;
  line-height: 1.7;
}

.artisans-image {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: linear-gradient(135deg, #e8dcc8, #d4c4a8);
  border-radius: 2px;
}

.artisans-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== CALL TO ACTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--earth) 0%, var(--charcoal) 100%);
  padding: 8rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(184, 134, 11, 0.1) 0%, transparent 70%);
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.cta-content p {
  font-size: 1.1rem;
  color: rgba(255, 248, 231, 0.6);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 3rem;
  background: linear-gradient(135deg, var(--bronze), var(--bronze-dark));
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
}

.cta-btn:hover {
  background: linear-gradient(135deg, var(--bronze-light), var(--bronze));
  transform: translateY(-2px);
  box-shadow: 0 15px 50px rgba(184, 134, 11, 0.3);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--charcoal);
  padding: 4rem 2rem 2rem;
  color: rgba(255, 248, 231, 0.4);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 1rem;
}

.footer-brand h3 span {
  color: var(--bronze-light);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-links h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze-light);
  margin-bottom: 1.5rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 248, 231, 0.5);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--cream);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .culture-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 250px;
  }

  .gallery-item:nth-child(1) { grid-row: span 1; }
  .gallery-item:nth-child(4) { grid-column: span 1; }
}

@media (max-width: 768px) {
  section { padding: 4rem 1.25rem; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* Stat banner */
  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1rem;
  }

  .stat-item:nth-child(2)::after { display: none; }

  /* Intro */
  .intro { padding: 5rem 1.25rem; }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .intro-image {
    aspect-ratio: 16/10;
  }

  /* Timeline */
  .timeline::before {
    left: 20px;
  }

  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    flex-direction: row;
    text-align: left;
    padding-right: 0;
    padding-left: 55px;
  }

  .timeline-dot {
    left: 20px;
  }

  /* Process */
  .step {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
  }

  .step:nth-child(odd) .step-content,
  .step:nth-child(even) .step-content {
    text-align: center;
    padding: 0;
  }

  .step-connector {
    height: auto;
    flex-direction: row;
  }

  .step-connector::before { display: none; }

  .step-number { margin-top: 0; }

  .step-image {
    width: 100%;
    aspect-ratio: 16/9;
  }

  /* Culture */
  .culture-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Regions */
  .regions-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }

  /* Artisans */
  .artisans-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .artisans-image {
    aspect-ratio: 16/10;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.8rem; }

  .stat-grid { grid-template-columns: 1fr 1fr; }
  .stat-item::after { display: none; }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }

  .gallery-item:nth-child(4) { grid-column: span 1; }

  .pullquote blockquote { font-size: 1.2rem; }
}
