/* =========================================
   OAK & ASH — Main Stylesheet
   Cozy · Folk · Warm · Peaceful
   ========================================= */

/* === TOKENS === */
:root {
  --cream:        #F5EDE0;
  --cream-dark:   #EDE0CC;
  --parchment:    #F9F4EC;
  --green-deep:   #2D4A3E;
  --green-mid:    #4A7C6A;
  --amber:        #C4832A;
  --amber-light:  #E8A84A;
  --tan:          #C4A882;
  --tan-light:    #E8D4B0;
  --cardinal:     #B5281C;
  --rose:         #D4A5A5;
  --charcoal:     #2A2420;
  --bark:         #6B5240;
  --bark-dark:    #3A2A1A;
  --white:        #FEFCF8;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Crimson Pro', 'Georgia', serif;
  --font-ui:      'Cabin', system-ui, sans-serif;

  --shadow-sm:    0 2px 8px rgba(42,36,32,0.08);
  --shadow-md:    0 6px 24px rgba(42,36,32,0.12);
  --shadow-lg:    0 16px 48px rgba(42,36,32,0.16);

  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --radius-xl:    32px;

  --transition:   0.25s ease;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--parchment);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; transition: color var(--transition); }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: var(--font-ui); }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 3rem);
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; color: var(--charcoal); }
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

.section { padding: clamp(3rem, 8vw, 6rem) 0; }
.section-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.6rem;
}
.section-title { margin-bottom: 1rem; }
.section-desc { max-width: 56ch; color: #5a4a3a; font-size: 1.1rem; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header .section-desc { margin: 0.5rem auto 0; }
.section-cta { text-align: center; margin-top: 2.5rem; }

/* === BUTTONS === */
.btn-primary {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background: var(--green-deep);
  color: var(--cream);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: #1e3329; transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-outline {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background: transparent;
  color: var(--green-deep);
  border: 2px solid var(--green-deep);
  border-radius: var(--radius-sm);
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 600;
  transition: background var(--transition), color var(--transition);
}
.btn-outline:hover { background: var(--green-deep); color: var(--cream); }

.btn-amber {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background: var(--amber);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition);
  box-shadow: var(--shadow-sm);
}
.btn-amber:hover { background: #a8701e; transform: translateY(-2px); }

.btn-outline-light {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background: transparent;
  color: var(--tan-light);
  border: 2px solid var(--tan-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 600;
  transition: background var(--transition), color var(--transition);
}
.btn-outline-light:hover { background: var(--tan-light); color: var(--charcoal); }

.btn-icon {
  background: none;
  border: none;
  color: var(--charcoal);
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition);
}
.btn-icon svg { width: 1.3rem; height: 1.3rem; }
.btn-icon:hover { color: var(--amber); }

.btn-nav-cta {
  padding: 0.55rem 1.4rem;
  background: var(--amber);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 600;
  transition: background var(--transition);
}
.btn-nav-cta:hover { background: #a8701e; }

.full-width { width: 100%; text-align: center; }

/* === TOP BAR === */
.topbar {
  background: var(--green-deep);
  color: var(--tan-light);
  text-align: center;
  padding: 0.6rem 1rem;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

/* === HEADER === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 72px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; flex-shrink: 0; }
.logo-emblem { color: var(--bark); width: 44px; height: 44px; }
.barrel-icon { width: 44px; height: 44px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-main { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; color: var(--charcoal); }
.logo-sub { font-family: var(--font-ui); font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--bark); }
.amp { color: var(--amber); }

/* Nav — Quilt Patch Buttons */
.main-nav { display: flex; align-items: center; gap: 5px; margin: 0 auto; }
.main-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.44rem 0.85rem;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: white;
  border-radius: 5px;
  position: relative;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
  box-shadow: 0 2px 5px rgba(42,36,32,0.25), inset 0 1px 0 rgba(255,255,255,0.18);
  white-space: nowrap;
  text-decoration: none;
}
/* Quilt stitch border */
.main-nav a::before {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1.5px dashed rgba(255,255,255,0.45);
  border-radius: 2px;
  pointer-events: none;
  transition: border-color 0.18s ease;
}
/* Remove old underline */
.main-nav a::after { display: none; }

.main-nav a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(42,36,32,0.3), inset 0 1px 0 rgba(255,255,255,0.22);
  filter: brightness(1.1);
  color: white;
}
.main-nav a.active {
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.25);
  transform: translateY(1px);
  filter: brightness(0.9);
}

/* Quilt patch colors — one per link class */
.nav-shop     { background: var(--amber); }
.nav-fabric   { background: var(--green-mid); }
.nav-barrel   { background: var(--bark);
  background-image: repeating-linear-gradient(90deg, transparent, transparent 3px, rgba(255,255,255,0.04) 3px, rgba(255,255,255,0.04) 6px);
}
.nav-quilt    { background: #7483B0; }
.nav-cardinal { background: var(--cardinal); }
.nav-story    { background: var(--green-deep); }
.nav-contact  { background: var(--tan); color: var(--charcoal) !important; }
.nav-contact::before { border-color: rgba(42,36,32,0.3) !important; }
.nav-contact:hover { color: var(--charcoal) !important; }

.header-actions { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: var(--transition); }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--cream-dark);
  padding: 1rem clamp(1rem, 5vw, 3rem);
  gap: 1rem;
}
.mobile-nav a {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.7rem 1.2rem;
  border-radius: 5px;
  color: white;
  position: relative;
  box-shadow: 0 2px 5px rgba(42,36,32,0.2);
}
.mobile-nav a::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1.5px dashed rgba(255,255,255,0.4);
  border-radius: 3px;
  pointer-events: none;
}
.mobile-nav .nav-contact { color: var(--charcoal) !important; }
.mobile-nav .nav-contact::before { border-color: rgba(42,36,32,0.3) !important; }
.mobile-nav.open { display: flex; }

/* === HERO === */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--cream);
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.quilt-bg-pattern {
  width: 100%;
  height: 100%;
  opacity: 0.6;
}

/* Two-column hero grid */
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding-top: clamp(2rem, 6vw, 5rem);
  padding-bottom: clamp(2rem, 6vw, 5rem);
  width: 100%;
}

.hero-content {
  text-align: left;
}

.hero-photo {
  position: relative;
}
.hero-photo img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 64px rgba(42,36,32,0.25);
  transform: rotate(1.5deg);
  display: block;
  object-fit: cover;
  aspect-ratio: 1/1;
}
/* Subtle decorative border behind the photo */
.hero-photo::before {
  content: '';
  position: absolute;
  inset: -10px;
  border: 3px solid var(--tan);
  border-radius: calc(var(--radius-xl) + 8px);
  transform: rotate(-1deg);
  opacity: 0.5;
}

.hero-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bark);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--tan);
}
.hero-headline {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: var(--charcoal);
}
.hero-headline em { color: var(--green-deep); font-style: italic; }
.hero-desc {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: #5a4a3a;
  max-width: 48ch;
  margin: 0 0 2rem;
  line-height: 1.65;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.hero-badges span {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  padding: 0.35rem 0.9rem;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--tan);
  border-radius: 999px;
  color: var(--bark);
  letter-spacing: 0.03em;
  backdrop-filter: blur(4px);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--bark);
  opacity: 0.6;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  animation: bounce 2s infinite;
}
.hero-scroll-hint svg { width: 1rem; height: 1rem; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* === TRUST STRIP === */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  background: var(--green-deep);
  padding: 1.5rem clamp(1rem, 5vw, 3rem);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 2rem;
  color: var(--cream);
  flex: 1;
  min-width: 200px;
  max-width: 280px;
}
.trust-item svg { width: 1.6rem; height: 1.6rem; flex-shrink: 0; color: var(--amber); }
.trust-item div { display: flex; flex-direction: column; }
.trust-item strong { font-family: var(--font-ui); font-size: 0.875rem; font-weight: 600; }
.trust-item span { font-family: var(--font-ui); font-size: 0.75rem; opacity: 0.75; }

/* === CATEGORIES === */
.categories-section { background: var(--parchment); }
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.category-card {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border-radius: var(--radius-md);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}
.category-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.category-card h3 { font-size: 1.3rem; margin-bottom: 0.6rem; }
.category-card p { font-size: 1rem; line-height: 1.6; flex: 1; margin-bottom: 1.25rem; }
.card-link {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-top: auto;
}
.category-art { margin-bottom: 1.25rem; }
.category-art svg { width: 90px; height: 90px; }

.card-primary  { background: var(--cream); border: 1px solid var(--tan); }
.card-primary .card-link { color: var(--amber); }

.card-secondary { background: #EBF2EF; border: 1px solid #c2d9d1; }
.card-secondary .card-link { color: var(--green-deep); }

.card-tertiary { background: #FDF6F0; border: 1px solid var(--rose); }
.card-tertiary .card-link { color: var(--cardinal); }

.card-dark { background: var(--bark-dark); color: var(--cream); }
.card-dark h3 { color: var(--tan-light); }
.card-dark p { color: var(--tan); }
.card-dark .card-link { color: var(--amber-light); }

/* === PRODUCT GRID === */
.featured-section { background: var(--cream); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.product-image {
  height: 260px;
  position: relative;
  overflow: hidden;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.product-card:hover .product-image img {
  transform: scale(1.04);
}

.product-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--green-deep);
  color: white;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
}
.product-badge.sale { background: var(--cardinal); }

.product-info { padding: 1.25rem; display: flex; flex-direction: column; flex: 1; }
.product-brand { font-family: var(--font-ui); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--bark); margin-bottom: 0.3rem; }
.product-name { font-family: var(--font-display); font-size: 1rem; margin-bottom: 0.4rem; color: var(--charcoal); }
.product-desc { font-size: 0.9rem; color: #6a5a4a; line-height: 1.5; flex: 1; margin-bottom: 1rem; }

.product-footer { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; flex-wrap: wrap; }
.product-pricing { display: flex; flex-direction: column; }
.price-current { font-family: var(--font-ui); font-size: 1.1rem; font-weight: 700; color: var(--green-deep); }
.price-current small { font-size: 0.75rem; font-weight: 400; }
.price-retail { font-family: var(--font-ui); font-size: 0.75rem; color: var(--bark); text-decoration: line-through; }

.btn-add-cart {
  padding: 0.5rem 1rem;
  background: var(--amber);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  transition: background var(--transition);
  white-space: nowrap;
}
.btn-add-cart:hover { background: #a8701e; }

/* === CARDINAL SECTION === */
.cardinal-section { background: var(--parchment); }
.cardinal-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}
.cardinal-art { display: flex; justify-content: center; align-items: center; }
.cardinal-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 380px;
}
.cardinal-photo-wrap::before {
  content: '';
  position: absolute;
  inset: -10px;
  border: 3px solid var(--tan);
  border-radius: calc(var(--radius-lg) + 8px);
  transform: rotate(-2deg);
  opacity: 0.6;
}
.cardinal-photo {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.cardinal-content p { margin-bottom: 1rem; color: #5a4a3a; }
.cardinal-details { display: flex; flex-direction: column; gap: 1rem; margin: 1.5rem 0 2rem; }
.cardinal-detail-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.cardinal-detail-item svg { width: 1.25rem; height: 1.25rem; flex-shrink: 0; color: var(--amber); margin-top: 0.25rem; }
.cardinal-detail-item div { display: flex; flex-direction: column; }
.cardinal-detail-item strong { font-family: var(--font-ui); font-size: 0.875rem; font-weight: 600; }
.cardinal-detail-item span { font-size: 0.9rem; color: var(--bark); }

/* === STORY SECTION === */
.story-section { background: var(--cream); }
.story-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}
.story-content p { margin-bottom: 1rem; color: #5a4a3a; }
.story-quote {
  margin: 2rem 0 0;
  padding: 1.5rem 1.75rem;
  border-left: 4px solid var(--amber);
  background: var(--parchment);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--green-deep);
}
.story-quote em { color: var(--bark); }

.folk-art-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.folk-art-svg { width: 100%; height: auto; display: block; }
.folk-art-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 1.25rem;
  background: linear-gradient(transparent, rgba(42,36,32,0.8));
  color: var(--cream);
  font-family: var(--font-ui);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
}

/* === BARREL SECTION === */
.barrel-section { background: var(--bark-dark); overflow: hidden; }
.barrel-bg-wrap { position: relative; }
.barrel-bg-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 40px,
    rgba(196,168,130,0.04) 40px,
    rgba(196,168,130,0.04) 41px
  );
  pointer-events: none;
}
.barrel-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-top: clamp(3rem, 8vw, 6rem);
  padding-bottom: clamp(3rem, 8vw, 6rem);
}
.light { color: var(--tan-light) !important; }
.light-text { color: var(--tan); margin-bottom: 1rem; }
.barrel-content .section-title { color: var(--cream); }
.barrel-content .section-eyebrow { color: var(--amber-light); }

.barrel-features { display: flex; flex-direction: column; gap: 1rem; margin: 1.5rem 0 2rem; }
.barrel-feature { display: flex; align-items: flex-start; gap: 0.75rem; }
.barrel-feat-icon { font-size: 1.3rem; flex-shrink: 0; }
.barrel-feature div { display: flex; flex-direction: column; }
.barrel-feature strong { font-family: var(--font-ui); font-size: 0.875rem; font-weight: 600; color: var(--tan-light); }
.barrel-feature span { font-family: var(--font-ui); font-size: 0.8rem; color: var(--tan); }

.barrel-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

.barrel-art-wrap { display: flex; justify-content: center; align-items: center; }
.barrel-rings-art svg { width: 100%; max-width: 320px; filter: drop-shadow(0 12px 40px rgba(0,0,0,0.5)); }

/* === NEWSLETTER === */
.newsletter-section { background: var(--parchment); }
.newsletter-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: center;
}
.quilt-block-deco svg { width: 180px; height: 180px; border-radius: var(--radius-sm); box-shadow: var(--shadow-md); }

.newsletter-content p { color: #5a4a3a; margin-bottom: 1.5rem; }

.newsletter-form { display: flex; flex-direction: column; gap: 0.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1.5fr; gap: 0.75rem; }
.newsletter-form input[type="text"],
.newsletter-form input[type="email"] {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--tan);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--white);
  color: var(--charcoal);
  transition: border-color var(--transition);
}
.newsletter-form input:focus { outline: none; border-color: var(--green-deep); }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: #5a4a3a;
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] { margin-top: 0.2rem; accent-color: var(--green-deep); }
.form-note { font-size: 0.8rem; color: var(--bark); text-align: center; font-style: italic; }

/* === TESTIMONIALS === */
.testimonials-section { background: var(--cream); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.testimonial-card .stars { color: var(--amber); font-size: 1rem; letter-spacing: 0.1em; }
.testimonial-card p { font-size: 1rem; color: #5a4a3a; line-height: 1.6; font-style: italic; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial-author div { display: flex; flex-direction: column; }
.testimonial-author strong { font-family: var(--font-ui); font-size: 0.875rem; }
.testimonial-author span { font-size: 0.8rem; color: var(--bark); }

/* === FOOTER === */
.site-footer { background: var(--charcoal); color: var(--cream); }
.footer-top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  padding-top: 4rem;
  padding-bottom: 3rem;
}
.footer-brand .logo-main { color: var(--cream); }
.footer-brand .logo-sub { color: var(--tan); }
.footer-brand p { margin: 1rem 0 1.5rem; font-size: 0.95rem; color: var(--tan); line-height: 1.6; }

.social-links { display: flex; gap: 0.75rem; }
.social-links a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tan);
  transition: background var(--transition), color var(--transition);
}
.social-links a svg { width: 1rem; height: 1rem; }
.social-links a:hover { background: var(--amber); color: white; }

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.footer-col { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col h4 { font-family: var(--font-ui); font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--amber); margin-bottom: 0.5rem; }
.footer-col a { font-size: 0.9rem; color: var(--tan); transition: color var(--transition); }
.footer-col a:hover { color: var(--cream); }
.footer-col p { font-size: 0.9rem; color: var(--tan); line-height: 1.6; }
.footer-hours { margin-top: 0.5rem; font-size: 0.85rem; opacity: 0.7; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-family: var(--font-ui); font-size: 0.8rem; color: var(--bark); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-family: var(--font-ui); font-size: 0.8rem; color: var(--bark); transition: color var(--transition); }
.footer-legal a:hover { color: var(--cream); }

/* === DECORATIVE UTILITIES === */
.quilt-divider {
  display: flex;
  justify-content: center;
  padding: 2rem;
}

/* === FAMILY PHOTO COLLAGE (Story Section) === */
.family-collage {
  position: relative;
  width: 100%;
  height: 460px;
}

.collage-photo {
  position: absolute;
  border: 9px solid var(--white);
  box-shadow: 0 8px 32px rgba(42,36,32,0.22), 0 2px 6px rgba(42,36,32,0.12);
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, z-index 0s;
}

.collage-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collage-photo:hover {
  transform: rotate(0deg) scale(1.04) !important;
  box-shadow: 0 20px 56px rgba(42,36,32,0.3);
  z-index: 10;
}

.collage-photo-1 {
  width: 68%;
  height: 76%;
  top: 0;
  left: 0;
  transform: rotate(-3.5deg);
  z-index: 1;
}

.collage-photo-2 {
  width: 65%;
  height: 72%;
  bottom: 0;
  right: 0;
  transform: rotate(2.5deg);
  z-index: 2;
}

/* === BARREL PRODUCT PHOTOS === */
.barrel-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  width: 100%;
  max-width: 380px;
}

.barrel-photo-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: 0 6px 24px rgba(0,0,0,0.45);
  border: 1px solid rgba(196,168,130,0.18);
  transition: transform var(--transition), box-shadow var(--transition);
}

.barrel-photo-item:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 36px rgba(0,0,0,0.6);
}

.barrel-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .barrel-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .barrel-art-wrap { order: -1; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .header-actions .btn-nav-cta { display: none; }

  /* Hero stacks vertically on mobile — photo below text */
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-photo { order: -1; }
  .hero-photo img { aspect-ratio: 1/1; transform: none; }
  .hero-photo::before { display: none; }
  .hero-content { text-align: center; }
  .hero-eyebrow { justify-content: center; }
  .hero-eyebrow::after { display: none; }
  .hero-desc { margin: 0 auto 2rem; }
  .hero-buttons { justify-content: center; }
  .hero-badges { justify-content: center; }

  .cardinal-inner { grid-template-columns: 1fr; gap: 2rem; }
  .cardinal-photo-wrap { max-width: 320px; margin: 0 auto; }
  .story-grid { grid-template-columns: 1fr; gap: 2rem; }
  .family-collage { height: 340px; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .quilt-block-deco { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .barrel-photo-grid { max-width: 320px; margin: 0 auto; }

  .trust-strip { flex-direction: column; align-items: center; }
  .trust-item { padding: 0.6rem 1rem; max-width: none; width: 100%; justify-content: center; }

  .barrel-rings-art svg { max-width: 220px; }
}

@media (max-width: 520px) {
  .category-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }
}
