/* =============================================
   HANDCRAFTED NORDIC – Stylesheet
   Aesthetic: Dark premium artisan studio
   Fonts: Libre Baskerville + Inter
   Colours: Near-black + warm cream + bronze
   ============================================= */

:root {
  --ink: #0E0E0C;
  --ink-mid: #1C1C18;
  --ink-light: #2E2E28;
  --cream: #F5F0E8;
  --cream-dark: #EDE8DC;
  --warm-white: #FAF8F3;
  --bronze: #9A7340;
  --bronze-light: #C49A5A;
  --bronze-pale: #E8D4A8;
  --dust: #8A8070;
  --text: #0E0E0C;
  --text-muted: #5A5448;
  --border: #D8D0C0;
  --border-dark: rgba(255,255,255,0.10);
  --shadow: rgba(14,14,12,0.14);
  --shadow-md: rgba(14,14,12,0.24);
  --radius: 4px;
  --radius-lg: 10px;
  --transition: 0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--warm-white); color: var(--text); line-height: 1.65; font-size: 16px; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: 'Libre Baskerville', serif; line-height: 1.2; color: var(--ink); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--ink);
  border-bottom: 1px solid var(--border-dark);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.logo {
  font-family: 'Libre Baskerville', serif; font-size: 1.15rem; font-weight: 400;
  color: rgba(255,255,255,0.9); letter-spacing: 0.02em;
}
.logo em { font-style: italic; color: var(--bronze-light); }

.nav-links { display: flex; list-style: none; gap: 4px; align-items: center; }
.nav-links a { font-size: 0.85rem; font-weight: 400; letter-spacing: 0.04em; color: rgba(255,255,255,0.55); padding: 6px 12px; border-radius: var(--radius); transition: color var(--transition); }
.nav-links a:hover, .nav-links a.active { color: rgba(255,255,255,0.9); }
.nav-cta {
  background: var(--bronze) !important; color: #fff !important;
  padding: 7px 16px !important; border-radius: var(--radius) !important;
  font-weight: 500 !important; color: rgba(255,255,255,0.95) !important;
}
.nav-cta:hover { background: var(--bronze-light) !important; }

.hamburger { display: none; background: none; border: none; font-size: 1.4rem; color: rgba(255,255,255,0.8); cursor: pointer; }
.mobile-menu { display: none; flex-direction: column; background: var(--ink-mid); border-top: 1px solid var(--border-dark); padding: 16px 24px; gap: 4px; }
.mobile-menu a { padding: 10px 0; font-size: 0.9rem; color: rgba(255,255,255,0.6); border-bottom: 1px solid var(--border-dark); }
.mobile-menu a:last-child { border-bottom: none; color: var(--bronze-light); font-weight: 500; }
.mobile-menu.open { display: flex; }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(14,14,12,0.85) 0%, rgba(14,14,12,0.55) 50%, rgba(14,14,12,0.35) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  padding-top: 80px;
}
.hero-eyebrow {
  display: inline-block; font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--bronze-light); margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  color: #fff; font-weight: 400; line-height: 1.05;
  margin-bottom: 24px; max-width: 700px;
}
.hero h1 em { font-style: italic; color: var(--bronze-light); }
.hero p {
  font-size: 1.1rem; color: rgba(255,255,255,0.65);
  max-width: 480px; margin-bottom: 44px; line-height: 1.75;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.35); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  z-index: 1;
}
.scroll-line { width: 1px; height: 48px; background: rgba(255,255,255,0.2); }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 24px; border-radius: var(--radius);
  font-size: 0.85rem; font-weight: 500; font-family: 'Inter', sans-serif;
  letter-spacing: 0.04em; transition: all var(--transition); cursor: pointer; border: 1px solid transparent;
}
.btn-dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-dark:hover { background: var(--ink-light); transform: translateY(-1px); box-shadow: 0 6px 18px var(--shadow); }
.btn-light { background: #fff; color: var(--ink); border-color: #fff; }
.btn-light:hover { background: var(--cream); transform: translateY(-1px); }
.btn-outline-light { background: transparent; color: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.3); }
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }
.btn-bronze { background: var(--bronze); color: #fff; border-color: var(--bronze); }
.btn-bronze:hover { background: var(--bronze-light); }
.btn-lg { padding: 15px 32px; font-size: 0.9rem; }

/* =============================================
   SECTIONS
   ============================================= */
.section { padding: 100px 0; }
.section-tag {
  display: inline-block; font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--bronze); margin-bottom: 14px;
}
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 2.4rem; margin-bottom: 14px; }
.section-header p { color: var(--text-muted); max-width: 480px; margin: 0 auto; }
.section-cta { text-align: center; margin-top: 56px; }

/* =============================================
   INTRO SECTION
   ============================================= */
.intro-section { background: var(--warm-white); }
.intro-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.intro-text h2 { font-size: 2.2rem; line-height: 1.15; margin-bottom: 24px; }
.intro-text p { color: var(--text-muted); margin-bottom: 18px; line-height: 1.75; font-size: 0.97rem; }
.intro-images { position: relative; }
.intro-img-main { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 24px 64px var(--shadow-md); }
.intro-img-main img { width: 100%; height: 500px; object-fit: cover; }
.intro-img-sub {
  position: absolute; bottom: -24px; right: -24px; width: 200px;
  border-radius: var(--radius); overflow: hidden;
  border: 4px solid var(--warm-white); box-shadow: 0 12px 32px var(--shadow-md);
}
.intro-img-sub img { width: 100%; height: 200px; object-fit: cover; }

/* =============================================
   PRODUCT GRID
   ============================================= */
.collection-section { background: var(--cream); }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.product-card {
  background: var(--warm-white); display: flex; flex-direction: column;
  transition: all var(--transition);
}
.product-card:hover { background: #fff; }
.product-card.featured-product { grid-column: span 2; }
.product-img { position: relative; overflow: hidden; background: var(--cream-dark); }
.product-img img { width: 100%; height: 260px; object-fit: cover; transition: transform 0.6s ease; }
.product-card.featured-product .product-img img { height: 340px; }
.product-card:hover .product-img img { transform: scale(1.04); }
.product-tag {
  position: absolute; top: 12px; left: 12px;
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--ink); color: rgba(255,255,255,0.9);
  padding: 4px 10px; border-radius: 2px;
}
.product-info { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.product-info h3 { font-size: 1rem; margin-bottom: 8px; font-weight: 700; }
.product-info p { font-size: 0.84rem; color: var(--text-muted); flex: 1; margin-bottom: 14px; line-height: 1.6; }
.product-price { font-size: 0.88rem; color: var(--bronze); font-weight: 600; margin-bottom: 8px; }
.price-was { text-decoration: line-through; color: var(--dust); font-weight: 400; margin-left: 6px; }
.product-cta { font-size: 0.8rem; font-weight: 500; letter-spacing: 0.06em; color: var(--ink); margin-top: auto; transition: color var(--transition); }
.product-card:hover .product-cta { color: var(--bronze); }

/* =============================================
   CRAFT SECTION
   ============================================= */
.craft-section { background: var(--ink); }
.craft-section .section-tag { color: var(--bronze-light); }
.craft-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.craft-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,0.5); }
.craft-image img { width: 100%; height: 560px; object-fit: cover; }
.craft-content h2 { font-size: 2.2rem; color: #fff; margin-bottom: 18px; }
.craft-content > p { color: rgba(255,255,255,0.6); margin-bottom: 40px; line-height: 1.75; }
.craft-points { display: flex; flex-direction: column; gap: 24px; margin-bottom: 40px; }
.craft-point { display: flex; gap: 20px; align-items: flex-start; }
.craft-num {
  font-family: 'Libre Baskerville', serif; font-style: italic;
  font-size: 1.4rem; color: var(--bronze); flex-shrink: 0; line-height: 1;
}
.craft-point strong { display: block; color: rgba(255,255,255,0.9); font-size: 0.9rem; margin-bottom: 4px; font-family: 'Inter', sans-serif; font-weight: 600; }
.craft-point p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* =============================================
   GIFT SECTION
   ============================================= */
.gift-section {
  background: var(--cream-dark);
  padding: 80px 0;
}
.gift-inner {
  display: grid; grid-template-columns: 1fr;
  max-width: 680px; margin: 0 auto; text-align: center;
}
.gift-inner .section-tag { display: block; margin-bottom: 14px; }
.gift-inner h2 { font-size: 2rem; margin-bottom: 20px; }
.gift-inner p { color: var(--text-muted); margin-bottom: 32px; line-height: 1.75; font-size: 0.97rem; }

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section { background: var(--ink); padding: 100px 0; }
.cta-inner { text-align: center; max-width: 600px; margin: 0 auto; }
.cta-inner h2 { font-size: 2.8rem; color: #fff; margin-bottom: 20px; line-height: 1.15; }
.cta-inner h2 em { color: var(--bronze-light); }
.cta-inner p { color: rgba(255,255,255,0.55); margin-bottom: 36px; font-size: 1rem; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer { background: var(--ink-mid); color: rgba(255,255,255,0.5); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--border-dark); }
.footer-brand .logo { color: rgba(255,255,255,0.85); margin-bottom: 14px; font-size: 1.05rem; }
.footer-brand p { font-size: 0.84rem; line-height: 1.65; }
.footer-shop { margin-top: 12px; font-size: 0.82rem; }
.footer-shop a { color: var(--bronze-light); }
.footer-links h4 { font-family: 'Libre Baskerville', serif; color: rgba(255,255,255,0.8); font-size: 0.95rem; margin-bottom: 16px; font-weight: 700; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.84rem; color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-links a:hover { color: rgba(255,255,255,0.85); }
.footer-bottom { padding: 20px 0; text-align: center; font-size: 0.76rem; color: rgba(255,255,255,0.25); }
.footer-bottom a { color: rgba(255,255,255,0.4); }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero-dark {
  background: var(--ink); padding: 100px 0 80px; text-align: center;
  border-bottom: 1px solid var(--border-dark);
}
.page-hero-dark .section-tag { color: var(--bronze-light); display: block; margin-bottom: 16px; }
.page-hero-dark h1 { font-size: clamp(2.4rem, 5vw, 4rem); color: #fff; margin-bottom: 18px; }
.page-hero-dark p { color: rgba(255,255,255,0.55); font-size: 1.05rem; max-width: 520px; margin: 0 auto; }

/* =============================================
   COLLECTION PAGE
   ============================================= */
.cat-header {
  display: flex; align-items: baseline; justify-content: space-between;
  margin: 64px 0 24px; padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.cat-header h2 { font-size: 1.8rem; }
.cat-link { font-size: 0.84rem; font-weight: 500; letter-spacing: 0.04em; color: var(--bronze); }

/* =============================================
   CRAFT PAGE
   ============================================= */
.craft-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; margin-bottom: 100px; }
.craft-intro-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 20px 56px var(--shadow-md); }
.craft-intro-img img { width: 100%; height: 500px; object-fit: cover; }
.craft-intro-text .section-tag { display: block; }
.craft-intro-text h2 { font-size: 2rem; margin-bottom: 20px; }
.craft-intro-text p { color: var(--text-muted); margin-bottom: 18px; line-height: 1.75; }

.process-section { margin-bottom: 100px; }
.process-title { font-size: 2rem; margin-bottom: 48px; }
.process-steps { display: flex; flex-direction: column; gap: 72px; }
.process-step { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.process-step.reverse { direction: rtl; }
.process-step.reverse > * { direction: ltr; }
.process-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 16px 40px var(--shadow-md); }
.process-img img { width: 100%; height: 360px; object-fit: cover; }
.process-num { font-family: 'Libre Baskerville', serif; font-style: italic; font-size: 2rem; color: var(--bronze); display: block; margin-bottom: 14px; }
.process-text h3 { font-size: 1.4rem; margin-bottom: 16px; }
.process-text p { color: var(--text-muted); line-height: 1.75; margin-bottom: 14px; }

.materials-section { margin-bottom: 100px; }
.materials-section h2 { font-size: 2rem; margin-bottom: 36px; }
.materials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.material-card { padding: 32px; background: var(--cream); border-radius: var(--radius-lg); border: 1px solid var(--border); }
.material-icon { font-size: 1.8rem; display: block; margin-bottom: 16px; }
.material-card h3 { font-size: 1.1rem; margin-bottom: 12px; }
.material-card p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 12px; }

.why-handmade { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.why-handmade-text .section-tag { display: block; }
.why-handmade-text h2 { font-size: 2rem; margin-bottom: 20px; }
.why-handmade-text p { color: var(--text-muted); line-height: 1.75; margin-bottom: 18px; }
.why-handmade-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 20px 56px var(--shadow-md); }
.why-handmade-img img { width: 100%; height: 480px; object-fit: cover; }

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; margin-bottom: 100px; }
.about-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 20px 56px var(--shadow-md); }
.about-img img { width: 100%; height: 560px; object-fit: cover; }
.about-text .section-tag { display: block; }
.about-text h2 { font-size: 2rem; margin-bottom: 24px; }
.about-text p { color: var(--text-muted); line-height: 1.75; margin-bottom: 18px; }

.values-section { margin-bottom: 100px; }
.values-section h2 { font-size: 2rem; margin-bottom: 36px; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value-card { padding: 28px 24px; background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.value-icon { font-size: 1.6rem; display: block; margin-bottom: 14px; }
.value-card h3 { font-size: 1rem; margin-bottom: 10px; }
.value-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }

.about-faq h2 { font-size: 2rem; margin-bottom: 28px; }
.faq-list { display: flex; flex-direction: column; gap: 2px; background: var(--border); border: 1px solid var(--border); }
.faq-item { background: var(--warm-white); overflow: hidden; }
.faq-item summary {
  padding: 20px 24px; font-weight: 600; font-size: 0.95rem; color: var(--ink);
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  transition: background var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.2rem; color: var(--bronze); flex-shrink: 0; font-weight: 300; }
.faq-item[open] summary::after { content: '−'; }
.faq-item summary:hover { background: var(--cream); }
.faq-item p { padding: 0 24px 20px; font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; }
.faq-item a { color: var(--bronze); text-decoration: underline; }

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.hero-eyebrow { animation: fadeUp 0.6s ease both; animation-delay: 0.1s; }
.hero h1 { animation: fadeUp 0.6s ease both; animation-delay: 0.25s; }
.hero p { animation: fadeUp 0.6s ease both; animation-delay: 0.4s; }
.hero-actions { animation: fadeUp 0.6s ease both; animation-delay: 0.55s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: 1fr 1fr; }
  .product-card.featured-product { grid-column: span 2; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 960px) {
  .intro-layout { grid-template-columns: 1fr; gap: 40px; }
  .intro-img-sub { display: none; }
  .intro-img-main img { height: 360px; }
  .craft-layout { grid-template-columns: 1fr; gap: 40px; }
  .craft-image img { height: 360px; }
  .craft-intro { grid-template-columns: 1fr; gap: 40px; }
  .process-step { grid-template-columns: 1fr; gap: 28px; }
  .process-step.reverse { direction: ltr; }
  .why-handmade { grid-template-columns: 1fr; gap: 40px; }
  .about-intro { grid-template-columns: 1fr; gap: 40px; }
  .materials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .hero h1 { font-size: 2.4rem; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card.featured-product { grid-column: auto; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .section { padding: 64px 0; }
  .cat-header { flex-direction: column; gap: 8px; }
}

/* =============================================
   OAK & EPOXY BOWLS SECTION
   ============================================= */
.oak-epoxy-section { background: var(--ink); }
.oak-epoxy-section .section-tag { color: var(--bronze-light); }

.oak-epoxy-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 40px; margin-bottom: 48px; flex-wrap: wrap;
}
.oak-epoxy-header h2 { font-size: 2.4rem; color: #fff; margin-bottom: 14px; }
.oak-intro { color: rgba(255,255,255,0.6); line-height: 1.75; max-width: 560px; font-size: 0.97rem; }
.oak-epoxy-header .btn-dark { background: var(--bronze); border-color: var(--bronze); flex-shrink: 0; align-self: center; }
.oak-epoxy-header .btn-dark:hover { background: var(--bronze-light); }

.process-strip {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border-dark);
  border-radius: var(--radius); padding: 20px 28px;
  margin-bottom: 48px; flex-wrap: wrap;
}
.process-step-mini { display: flex; align-items: center; gap: 12px; flex: 1; min-width: 180px; }
.psm-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--bronze); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Libre Baskerville', serif; font-style: italic; font-size: 0.9rem;
  flex-shrink: 0;
}
.process-step-mini p { font-size: 0.83rem; color: rgba(255,255,255,0.55); line-height: 1.5; }
.psm-arrow { color: rgba(255,255,255,0.2); font-size: 1.2rem; flex-shrink: 0; }

.bowl-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.08); }
.bowl-card { background: var(--ink-mid); display: flex; flex-direction: column; transition: background var(--transition); }
.bowl-card:hover { background: rgba(50,50,44,0.9); }
.bowl-card.featured-bowl { grid-column: span 2; flex-direction: row; }
.bowl-card.featured-bowl .bowl-img { flex: 1; }
.bowl-card.featured-bowl .bowl-img img { height: 100%; min-height: 380px; }
.bowl-card.featured-bowl .bowl-info { flex: 1; padding: 40px; }
.bowl-card.featured-bowl .bowl-info h3 { font-size: 1.4rem; }

.bowl-img { position: relative; overflow: hidden; background: var(--ink-light); }
.bowl-img img { width: 100%; height: 280px; object-fit: cover; transition: transform 0.6s ease; }
.bowl-card:hover .bowl-img img { transform: scale(1.04); }
.bowl-badge {
  position: absolute; top: 14px; left: 14px;
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--bronze); color: #fff; padding: 4px 12px; border-radius: 2px;
}

.bowl-info { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.bowl-info h3 { font-size: 1.05rem; color: rgba(255,255,255,0.9); margin-bottom: 10px; }
.bowl-info p { font-size: 0.85rem; color: rgba(255,255,255,0.5); flex: 1; margin-bottom: 16px; line-height: 1.65; }
.bowl-specs { display: flex; flex-direction: column; gap: 4px; margin-bottom: 16px; }
.bowl-specs span { font-size: 0.75rem; color: rgba(255,255,255,0.35); letter-spacing: 0.06em; }
.bowl-price { font-size: 1.15rem; font-weight: 600; color: var(--bronze-light); font-family: 'Libre Baskerville', serif; margin-bottom: 10px; }
.bowl-cta { font-size: 0.82rem; font-weight: 500; color: rgba(255,255,255,0.55); letter-spacing: 0.06em; transition: color var(--transition); margin-top: auto; }
.bowl-card:hover .bowl-cta { color: var(--bronze-light); }

/* Responsive for bowl grid */
@media (max-width: 960px) {
  .oak-epoxy-header { flex-direction: column; gap: 24px; }
  .bowl-grid { grid-template-columns: 1fr; }
  .bowl-card.featured-bowl { grid-column: auto; flex-direction: column; }
  .bowl-card.featured-bowl .bowl-img img { min-height: 280px; height: 280px; }
  .bowl-card.featured-bowl .bowl-info { padding: 24px; }
  .process-strip { gap: 12px; }
  .psm-arrow { display: none; }
}

/* =============================================
   OAK & EPOXY BOWL PROCESS (craft page)
   ============================================= */
.bowl-process-section {
  background: var(--ink); padding: 64px; border-radius: var(--radius-lg);
  margin-bottom: 80px;
}
.bowl-process-section .section-tag { color: var(--bronze-light); }
.bowl-process-section h2 { font-size: 2rem; color: #fff; margin-bottom: 16px; }
.bowl-process-section > p { color: rgba(255,255,255,0.6); max-width: 560px; margin-bottom: 40px; line-height: 1.75; }

.bowl-process-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; margin-bottom: 40px; }
.bpg-img { border-radius: var(--radius); overflow: hidden; box-shadow: 0 16px 40px rgba(0,0,0,0.5); }
.bpg-img img { width: 100%; height: 360px; object-fit: cover; }
.bpg-steps { display: flex; flex-direction: column; gap: 24px; }
.bpg-step { display: flex; gap: 16px; align-items: flex-start; }
.bpg-num {
  font-family: 'Libre Baskerville', serif; font-style: italic;
  font-size: 1.3rem; color: var(--bronze); flex-shrink: 0; line-height: 1; margin-top: 2px;
}
.bpg-step h4 { font-size: 0.92rem; color: rgba(255,255,255,0.85); margin-bottom: 6px; font-family: 'Inter', sans-serif; font-weight: 600; }
.bpg-step p { font-size: 0.84rem; color: rgba(255,255,255,0.5); line-height: 1.65; }

.bowl-cta-strip {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 20px 24px; background: rgba(255,255,255,0.06); border-radius: var(--radius);
  flex-wrap: wrap;
}
.bowl-cta-strip strong { display: block; color: rgba(255,255,255,0.85); font-size: 0.9rem; margin-bottom: 4px; }
.bowl-cta-strip span { font-size: 0.8rem; color: rgba(255,255,255,0.4); }

@media (max-width: 960px) {
  .bowl-process-section { padding: 32px 24px; }
  .bowl-process-grid { grid-template-columns: 1fr; gap: 28px; }
  .bpg-img img { height: 260px; }
  .bowl-cta-strip { flex-direction: column; text-align: center; }
  .oak-epoxy-header { flex-direction: column; }
}

/* =============================================
   BOWL SEE-ALL STRIP
   ============================================= */
.bowl-see-all {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  margin-top: 28px; padding: 22px 28px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); flex-wrap: wrap;
}
.bowl-see-all strong { display: block; color: rgba(255,255,255,0.85); font-size: 0.9rem; margin-bottom: 4px; font-family: 'Inter', sans-serif; }
.bowl-see-all span { font-size: 0.78rem; color: rgba(255,255,255,0.4); letter-spacing: 0.04em; }
.bowl-see-all .btn-light { flex-shrink: 0; }

/* =============================================
   WOOD CRAFTED PRODUCTS SECTION
   ============================================= */
.wood-section { background: var(--cream); }
.wood-section .section-header h2 { font-size: 2.2rem; }

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

.wood-card {
  background: var(--warm-white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: all var(--transition);
}
.wood-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px var(--shadow-md); border-color: var(--bronze-pale); }

.wood-img { position: relative; overflow: hidden; background: var(--cream-dark); }
.wood-img img { width: 100%; height: 240px; object-fit: cover; transition: transform 0.5s ease; }
.wood-card:hover .wood-img img { transform: scale(1.05); }

.wood-badge {
  position: absolute; top: 12px; left: 12px;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--bronze); color: #fff; padding: 3px 10px; border-radius: 2px;
}

.wood-info { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.wood-info h3 { font-size: 1rem; margin-bottom: 8px; }
.wood-info p { font-size: 0.85rem; color: var(--text-muted); flex: 1; margin-bottom: 12px; line-height: 1.6; }
.wood-price { font-size: 1.05rem; font-weight: 600; color: var(--ink); font-family: 'Libre Baskerville', serif; margin-bottom: 8px; }
.wood-cta { font-size: 0.82rem; font-weight: 500; color: var(--bronze); margin-top: auto; transition: color var(--transition); }
.wood-card:hover .wood-cta { color: var(--ink); }

/* oak-intro second paragraph */
.oak-intro { color: rgba(255,255,255,0.6); line-height: 1.75; max-width: 680px; font-size: 0.97rem; }

@media (max-width: 960px) {
  .wood-grid { grid-template-columns: 1fr 1fr; }
  .bowl-see-all { flex-direction: column; text-align: center; }
}
@media (max-width: 640px) {
  .wood-grid { grid-template-columns: 1fr 1fr; }
}
