/* ========================================
   REDBARN WOOD TURNING — Shared Styles
   ======================================== */

/* ---- VARIABLES & RESET ---- */
:root {
  --barn-red: #8B2500;
  --barn-red-light: #A63A1A;
  --barn-red-dark: #6B1A00;
  --warm-cream: #FAF6F1;
  --warm-cream-dark: #F0E8DD;
  --charcoal: #2C2C2C;
  --wood-brown: #6B4226;
  --wood-light: #A67C52;
  --wood-pale: #D4B896;
  --text-primary: #1A1A1A;
  --text-secondary: #5A5A5A;
  --text-light: #8A8A7A;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --radius: 6px;
  --transition: 0.3s ease;
}

*,*::before,*::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-primary);
  background: var(--warm-cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.skip-link {
  position: absolute; top: -100%; left: 50%; transform: translateX(-50%);
  background: var(--barn-red); color: var(--white);
  padding: 12px 24px; border-radius: 0 0 6px 6px;
  font-weight: 700; z-index: 9999; text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ---- NAVIGATION ---- */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(250, 246, 241, 0.92);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow var(--transition);
}
nav.scrolled { box-shadow: var(--shadow-sm); }

.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--text-primary);
}
.nav-logo-img { width: 56px; height: 56px; border-radius: 4px; object-fit: contain; }
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 600; letter-spacing: -0.02em;
}
.nav-logo-text span { color: var(--barn-red); }

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--text-secondary);
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--barn-red);
  transform: scaleX(0); transition: transform 0.25s ease;
}
.nav-links a:hover { color: var(--barn-red); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--barn-red); }
.nav-links a.active::after { transform: scaleX(1); }

.nav-hamburger {
  display: none; background: none; border: none; cursor: pointer;
  width: 28px; height: 20px; position: relative; z-index: 1001;
}
.nav-hamburger span {
  display: block; width: 100%; height: 2px;
  background: var(--text-primary); position: absolute; left: 0;
  transition: 0.3s ease;
}
.nav-hamburger span:nth-child(1) { top: 0; }
.nav-hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-hamburger span:nth-child(3) { bottom: 0; }
.nav-hamburger.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* ---- HERO ---- */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--warm-cream) 0%, var(--warm-cream-dark) 50%, #E8D9C5 100%);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(139,37,0,0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(107,66,38,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 7rem 2rem 4rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center; width: 100%;
}
.hero-content { z-index: 1; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(139,37,0,0.08); color: var(--barn-red);
  padding: 6px 16px; border-radius: 100px;
  font-size: 0.76rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out both;
}
.hero-tag::before {
  content: ''; width: 6px; height: 6px;
  background: var(--barn-red); border-radius: 50%;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 700; line-height: 1.12;
  color: var(--text-primary); letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}
.hero-title em { font-style: normal; color: var(--barn-red); }
.hero-desc {
  font-size: 1.12rem; color: var(--text-secondary);
  max-width: 480px; margin-bottom: 2.5rem; font-weight: 300;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}
.hero-actions {
  display: flex; gap: 1rem;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.88rem; font-weight: 700;
  border-radius: var(--radius); text-decoration: none;
  cursor: pointer; border: none;
  transition: all 0.25s; letter-spacing: 0.02em;
}
.btn-primary { background: var(--barn-red); color: var(--white); }
.btn-primary:hover {
  background: var(--barn-red-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(139,37,0,0.25);
}
.btn-primary:focus-visible { outline: 3px solid var(--barn-red-light); outline-offset: 3px; }
.btn-secondary {
  background: transparent; color: var(--text-primary);
  border: 2px solid rgba(0,0,0,0.15);
}
.btn-secondary:hover { border-color: var(--barn-red); color: var(--barn-red); }

/* Hero visual */
.hero-visual { position: relative; animation: fadeInUp 0.8s ease-out 0.3s both; }
.hero-image-frame {
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, #D4B896, #C4A47A);
  border-radius: 12px; overflow: hidden;
  position: relative; box-shadow: var(--shadow-lg);
}
.hero-image-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-floating-card {
  position: absolute; bottom: -20px; left: -30px;
  background: var(--white); border-radius: 10px;
  padding: 18px 22px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 14px;
  animation: floatUp 3s ease-in-out infinite alternate;
}
.hero-floating-card .icon-circle {
  width: 42px; height: 42px;
  background: rgba(139,37,0,0.08); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.hero-floating-card .icon-circle svg { width: 20px; height: 20px; fill: var(--barn-red); }
.hero-floating-card .card-text { font-size: 0.82rem; font-weight: 700; color: var(--text-primary); }
.hero-floating-card .card-sub { font-size: 0.72rem; color: var(--text-light); }

/* ---- PAGE HEADERS (for inner pages) ---- */
.page-header {
  padding: 10rem 2rem 4rem;
  background: linear-gradient(160deg, var(--warm-cream) 0%, var(--warm-cream-dark) 50%, #E8D9C5 100%);
  position: relative; text-align: center;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(139,37,0,0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(107,66,38,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.page-header .section-tag { position: relative; z-index: 1; }
.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700; color: var(--text-primary);
  letter-spacing: -0.03em; line-height: 1.15;
  margin-bottom: 1rem; position: relative; z-index: 1;
}
.page-header p {
  font-size: 1.12rem; color: var(--text-secondary);
  max-width: 560px; margin: 0 auto; font-weight: 300;
  position: relative; z-index: 1;
}

/* ---- SECTIONS ---- */
section { padding: 6rem 2rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-tag {
  display: inline-block; color: var(--barn-red);
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700; color: var(--text-primary);
  letter-spacing: -0.02em; line-height: 1.2;
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.05rem; color: var(--text-secondary);
  max-width: 560px; margin: 0 auto; font-weight: 300;
}

/* ---- ABOUT ---- */
.about { background: var(--white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.about-image-frame {
  aspect-ratio: 3/4; background: linear-gradient(145deg, #E8D9C5, #D4C4AA);
  border-radius: 12px; overflow: hidden; position: relative;
}
.about-image-frame img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
}
.about-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 700;
  margin-bottom: 1.5rem; letter-spacing: -0.02em;
}
.about-content p {
  color: var(--text-secondary); margin-bottom: 1.25rem; font-size: 1rem;
}
.about-stats {
  display: flex; gap: 2.5rem; margin-top: 2rem;
  padding-top: 2rem; border-top: 1px solid rgba(0,0,0,0.08);
}
.about-stat-number,
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700;
  color: var(--barn-red); line-height: 1; margin-bottom: 4px;
}
.about-stat-label,
.stat-label {
  font-size: 0.78rem; color: var(--text-light);
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
}

/* ---- CRAFT CATEGORIES ---- */
.craft { background: var(--warm-cream); }
.craft-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.craft-card {
  background: var(--white); border-radius: 12px;
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: all 0.35s; cursor: default;
}
.craft-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-lg);
}
.craft-card-image {
  aspect-ratio: 4/3; background: #E8D9C5;
  overflow: hidden; position: relative;
}
.craft-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.craft-card:hover .craft-card-image img { transform: scale(1.05); }
.craft-card-body { padding: 1.5rem; }
.craft-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 600; margin-bottom: 0.5rem;
}
.craft-card-desc { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; }

/* ---- GALLERY ---- */
.gallery-section { background: var(--charcoal); color: var(--white); }
.gallery-section .section-tag { color: var(--wood-pale); }
.gallery-section .section-title { color: var(--white); }
.gallery-section .section-subtitle { color: rgba(255,255,255,0.5); }

/* Home page gallery (dark bg) */
.gallery { background: var(--charcoal); color: var(--white); }
.gallery .section-tag { color: var(--wood-pale); }
.gallery .section-title { color: var(--white); }
.gallery .section-subtitle { color: rgba(255,255,255,0.5); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 1rem;
}
.gallery-item {
  background: rgba(255,255,255,0.04);
  border-radius: 8px; overflow: hidden;
  position: relative; transition: transform 0.35s; cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item.featured { grid-column: span 2; grid-row: span 2; }
.gallery-item:hover { transform: scale(1.01); }

/* Gallery page full layout */
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 300px;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-page-grid .gallery-item.featured {
  grid-column: span 2;
  grid-row: span 2;
}

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.92); backdrop-filter: blur(8px);
  align-items: center; justify-content: center;
  cursor: zoom-out;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90vw; max-height: 90vh;
  border-radius: 8px; box-shadow: 0 0 60px rgba(0,0,0,0.5);
  cursor: default;
}
.lightbox-close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: none; color: white;
  font-size: 2rem; cursor: pointer; opacity: 0.7;
  transition: opacity 0.2s; line-height: 1;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.15); border: none; color: white;
  width: 48px; height: 48px; border-radius: 50%;
  font-size: 1.5rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.3); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ---- PROCESS ---- */
.process { background: var(--white); }
.process-steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; counter-reset: step;
}
.process-step {
  text-align: center; padding: 2.5rem 1.5rem;
  position: relative; counter-increment: step;
}
.process-step::before {
  content: counter(step, decimal-leading-zero);
  display: block; font-family: 'Playfair Display', serif;
  font-size: 3.5rem; font-weight: 700;
  color: rgba(139,37,0,0.08); line-height: 1;
  margin-bottom: 1.5rem;
}
.process-step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 600; margin-bottom: 0.75rem;
}
.process-step p { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.6; }

/* ---- BLOG ---- */
.blog { background: var(--warm-cream); }
.blog .section-tag { color: var(--barn-red); }
.blog-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem;
}
.blog-card {
  background: var(--white); border-radius: 12px;
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: all 0.35s; text-decoration: none; color: inherit;
}
.blog-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-md);
}
.blog-card-image {
  aspect-ratio: 16/9; overflow: hidden; position: relative;
}
.blog-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.blog-card:hover .blog-card-image img { transform: scale(1.04); }
.blog-card-body { padding: 1.75rem; }
.blog-card-meta,
.blog-card-date {
  font-size: 0.75rem; color: var(--text-light);
  font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.06em; margin-bottom: 0.75rem;
}
.blog-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 600;
  margin-bottom: 0.75rem; line-height: 1.3;
}
.blog-card-excerpt {
  font-size: 0.9rem; color: var(--text-secondary);
  line-height: 1.6; margin-bottom: 1rem;
}
.blog-read-more {
  font-size: 0.82rem; font-weight: 700;
  color: var(--barn-red); text-transform: uppercase;
  letter-spacing: 0.06em; display: inline-flex;
  align-items: center; gap: 6px;
  transition: gap 0.2s;
}
.blog-card:hover .blog-read-more { gap: 10px; }

/* Blog expanded overlay */
.blog-expanded {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(4px);
  overflow-y: auto; padding: 2rem;
}
.blog-expanded.active { display: flex; justify-content: center; align-items: flex-start; }
.blog-expanded-inner {
  background: var(--white); border-radius: 16px;
  max-width: 720px; width: 100%;
  margin: 2rem auto; padding: 0;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  position: relative;
  animation: blogSlideUp 0.35s ease-out;
}
@keyframes blogSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.blog-expanded-header {
  position: relative; aspect-ratio: 16/9; overflow: hidden;
  border-radius: 16px 16px 0 0;
}
.blog-expanded-header img {
  width: 100%; height: 100%; object-fit: cover;
}
.blog-expanded-close {
  position: absolute; top: 16px; right: 16px;
  width: 40px; height: 40px;
  background: rgba(0,0,0,0.6); border: none;
  border-radius: 50%; color: white; font-size: 1.3rem;
  cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  transition: background 0.2s;
}
.blog-expanded-close:hover { background: rgba(0,0,0,0.8); }
.blog-expanded-body { padding: 2.5rem; }
.blog-expanded-body .blog-card-meta { margin-bottom: 0.5rem; }
.blog-expanded-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 700;
  margin-bottom: 1.5rem; line-height: 1.25;
  letter-spacing: -0.02em;
}
.blog-expanded-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 600;
  margin: 2rem 0 0.75rem; color: var(--text-primary);
}
.blog-expanded-body p {
  color: var(--text-secondary); font-size: 1rem;
  line-height: 1.8; margin-bottom: 1.25rem;
}

/* ---- TESTIMONIALS ---- */
.testimonials {
  background: linear-gradient(160deg, var(--barn-red), var(--barn-red-dark));
  color: var(--white); padding: 6rem 2rem; overflow: hidden;
}
.testimonials .section-tag { color: rgba(255,255,255,0.5); }
.testimonials .section-title { color: var(--white); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem; max-width: 1000px; margin: 0 auto;
}
.testimonial-card {
  background: rgba(255,255,255,0.08); border-radius: 12px;
  padding: 2.5rem; position: relative;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.3s, background 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-4px); background: rgba(255,255,255,0.12);
}
.testimonial-stars {
  color: #F5C842; font-size: 1rem;
  letter-spacing: 2px; margin-bottom: 1.25rem;
}
.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 400;
  line-height: 1.65; font-style: italic;
  opacity: 0.95; margin-bottom: 1.5rem;
}
.testimonial-quote::before { content: '\201C'; }
.testimonial-quote::after { content: '\201D'; }
.testimonial-footer { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.15); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700;
}
.testimonial-attr { font-size: 0.88rem; font-weight: 600; opacity: 0.9; }
.testimonial-location { font-size: 0.78rem; opacity: 0.5; }
.testimonial-product {
  display: inline-block; margin-top: 1rem;
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  background: rgba(255,255,255,0.1);
  padding: 4px 12px; border-radius: 100px; opacity: 0.6;
}

/* ---- CTA SECTION ---- */
.cta-section {
  background: var(--warm-cream); padding: 4rem 2rem;
}
.cta-content {
  text-align: center; max-width: 600px; margin: 0 auto;
}
.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700; color: var(--text-primary);
  letter-spacing: -0.02em; margin-bottom: 2rem;
}

/* ---- CONTACT ---- */
.contact { background: var(--warm-cream); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}
.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 700;
  margin-bottom: 1rem; letter-spacing: -0.02em;
}
.contact-info > p {
  color: var(--text-secondary);
  margin-bottom: 2.5rem; font-size: 1.02rem;
}
.contact-detail {
  display: flex; align-items: start;
  gap: 16px; margin-bottom: 1.5rem;
}
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(139,37,0,0.08); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg {
  width: 18px; height: 18px;
  stroke: var(--barn-red); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.contact-detail-label {
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-light); margin-bottom: 2px;
}
.contact-detail-value { font-size: 1rem; color: var(--text-primary); font-weight: 600; }
.contact-detail-value a { text-decoration: none; transition: color 0.2s; }
.contact-detail-value a:hover { color: var(--barn-red); }

.contact-form {
  background: var(--white); border-radius: 12px;
  padding: 2.5rem; box-shadow: var(--shadow-md);
}
.contact-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; margin-bottom: 1.5rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--text-secondary); margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: var(--radius);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.95rem; color: var(--text-primary);
  background: var(--warm-cream);
  transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--barn-red);
  box-shadow: 0 0 0 3px rgba(139,37,0,0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-success {
  display: none; text-align: center; padding: 3rem 2rem;
}
.form-success.show { display: block; }
.form-success h3 {
  font-family: 'Playfair Display', serif;
  color: var(--barn-red); margin-bottom: 0.5rem;
}
.form-success p { color: var(--text-secondary); }

/* ---- EVENTS ---- */
.events-list { max-width: 800px; margin: 0 auto; }
.event-card {
  background: var(--white); border-radius: 12px;
  padding: 2rem; margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 2rem; align-items: center;
  transition: all 0.35s;
}
.event-card:hover {
  transform: translateY(-3px); box-shadow: var(--shadow-md);
}
.event-date {
  text-align: center; padding: 1rem 1.25rem;
  background: rgba(139,37,0,0.06); border-radius: 10px;
  min-width: 80px;
}
.event-date-month {
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--barn-red); margin-bottom: 2px;
}
.event-date-day {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700;
  color: var(--text-primary); line-height: 1;
}
.event-date-year {
  font-size: 0.72rem; color: var(--text-light);
  margin-top: 2px;
}
.event-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 600; margin-bottom: 0.4rem;
}
.event-info p {
  font-size: 0.92rem; color: var(--text-secondary); line-height: 1.5;
}
.event-meta {
  display: flex; gap: 1rem; margin-top: 0.5rem;
  flex-wrap: wrap;
}
.event-meta-item {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.78rem; color: var(--text-light); font-weight: 600;
}
.event-meta-item svg {
  width: 14px; height: 14px;
  stroke: var(--text-light); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.event-badge {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 6px 14px; border-radius: 100px;
  white-space: nowrap;
}
.event-badge-upcoming {
  background: rgba(139,37,0,0.08); color: var(--barn-red);
}
.event-badge-past {
  background: rgba(0,0,0,0.05); color: var(--text-light);
}
.events-empty {
  text-align: center; padding: 4rem 2rem;
  color: var(--text-secondary);
}
.events-empty p { margin-bottom: 1rem; }

/* ---- FOOTER ---- */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.5); padding: 3rem 2rem;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-logo { display: flex; align-items: center; }
.footer-logo img { height: 48px; opacity: 0.9; }
.footer-copy { font-size: 0.82rem; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a {
  color: rgba(255,255,255,0.5); text-decoration: none;
  font-size: 0.82rem; transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.8); }

/* ---- ANIMATIONS ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes floatUp {
  from { transform: translateY(0); }
  to { transform: translateY(-10px); }
}
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .craft-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 220px; }
  .gallery-item.featured { grid-column: span 2; grid-row: span 1; }
  .gallery-page-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 260px; }
  .gallery-page-grid .gallery-item.featured { grid-column: span 2; grid-row: span 1; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; padding-top: 6rem; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { max-width: 380px; margin: 0 auto; }
  .hero-floating-card { left: 10px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image-frame { max-width: 400px; margin: 0 auto; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery-item.featured { grid-column: span 1; }
  .gallery-page-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .gallery-page-grid .gallery-item.featured { grid-column: span 1; }
  .process-steps { grid-template-columns: 1fr; gap: 0; }
  .blog-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .event-card { grid-template-columns: auto 1fr; }
  .event-badge { grid-column: 2; justify-self: start; }

  .nav-links {
    display: none; flex-direction: column;
    position: fixed; top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: var(--warm-cream);
    padding: 6rem 2rem 2rem;
    gap: 1.5rem; transition: right 0.35s ease;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
  }
  .nav-links.show { display: flex; right: 0; }
  .nav-hamburger { display: block; }
  .mobile-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.3); z-index: 999;
  }
  .mobile-overlay.show { display: block; }
}

@media (max-width: 600px) {
  .craft-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .gallery-page-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
  .hero-actions { flex-direction: column; }
  .about-stats { gap: 1.5rem; flex-wrap: wrap; }
  .blog-expanded-body { padding: 1.5rem; }
  .blog-expanded-body h2 { font-size: 1.4rem; }
  .event-card { grid-template-columns: 1fr; text-align: center; }
  .event-date { justify-self: center; }
  .event-badge { justify-self: center; }
}

/* ---- WORKSHOP BANNER (index) ---- */
.workshop-banner {
  padding: 0; background: var(--charcoal);
}
.workshop-banner-inner {
  position: relative;
}
.workshop-banner-inner picture {
  display: block;
}
.workshop-banner-img {
  width: 100%; display: block; opacity: 0.85;
}
.workshop-banner-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2.5rem 2rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
}
.workshop-banner-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 600;
  color: #fff; margin: 0; max-width: 600px;
}
.workshop-banner-sub {
  font-size: 0.95rem; color: rgba(255,255,255,0.75);
  margin: 0.5rem 0 0;
}

/* ---- GALLERY PAGE SECTION ---- */
.gallery-page-section {
  background: var(--warm-cream); padding: 6rem 2rem;
}

/* ---- GALLERY PAGE CTA ---- */
.gallery-cta { padding: 4rem 2rem; }
.gallery-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700; color: var(--white); margin-bottom: 1.5rem;
}
.gallery-cta p {
  color: rgba(255,255,255,0.7); margin-bottom: 2rem; font-size: 1.05rem;
}
.gallery-cta .btn-primary {
  background: var(--white); color: var(--barn-red);
}

/* ---- EVENTS PAGE SECTION ---- */
.events-page-section {
  background-color: var(--warm-cream); padding: 6rem 2rem;
}

/* ---- EVENT CARD DETAILS ---- */
.event-admission {
  font-size: 0.85rem; color: var(--text-light); margin-top: 0.5rem;
}
.btn-outline {
  display: inline-block; padding: 8px 18px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.82rem; font-weight: 700;
  border: 2px solid rgba(0,0,0,0.15); border-radius: var(--radius);
  text-decoration: none; color: var(--text-primary);
  transition: all 0.25s; margin-top: 0.75rem;
}
.btn-outline:hover { border-color: var(--barn-red); color: var(--barn-red); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
