/* ========================================
   MOCKUP 1 — RUSTIC & WARM
   Golden Lion Carving Co.
   Font: Fraunces + Crimson Pro
   ======================================== */

:root {
  --brown-deep: #1a0e08;
  --brown-dark: #3E2723;
  --brown-mid: #5D4037;
  --brown-light: #8D6E63;
  --brown-pale: #BCAAA4;
  --amber: #FF8F00;
  --amber-glow: #FFB300;
  --amber-dark: #E65100;
  --cream: #FFF8E1;
  --cream-mid: #F5E6C8;
  --cream-dark: #E8D5B0;
  --white: #FFFDF7;
  --black: #0d0805;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: 'Crimson Pro', Georgia, serif;
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--brown-dark);
  background: var(--cream);
  overflow-x: hidden;
}

/* Film grain overlay */
.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
}

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

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 600; }

h1 em {
  font-style: italic;
  color: var(--amber);
}

/* Label / eyebrow */
.label {
  display: inline-block;
  font-family: 'Crimson Pro', serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}

.label--light { color: var(--amber-glow); }

/* Chisel divider — three notch marks */
.chisel-divider {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 20px 0 32px;
}

.chisel-divider span {
  display: block;
  background: var(--amber);
  border-radius: 1px;
}

.chisel-divider span:nth-child(1) { width: 40px; height: 3px; }
.chisel-divider span:nth-child(2) { width: 8px; height: 8px; transform: rotate(45deg); }
.chisel-divider span:nth-child(3) { width: 40px; height: 3px; }

.chisel-divider--light span { background: var(--amber-glow); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 36px;
  font-family: 'Fraunces', serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn:hover::before { transform: translateX(100%); }

.btn--primary {
  background: var(--amber);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255, 143, 0, 0.3);
}

.btn--primary:hover {
  background: var(--amber-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 143, 0, 0.4);
}

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(255, 248, 225, 0.4);
}

.btn--ghost:hover {
  border-color: var(--amber);
  color: var(--amber);
  transform: translateY(-3px);
}

.btn--secondary {
  background: transparent;
  color: var(--amber);
  border: 2px solid var(--amber);
}

.btn--secondary:hover {
  background: var(--amber);
  color: var(--white);
  transform: translateY(-3px);
}

.btn--sm { padding: 10px 24px; font-size: 0.85rem; }
.btn--full { width: 100%; }

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.4s ease;
}

.nav.scrolled {
  background: rgba(26, 14, 8, 0.92);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.nav.scrolled .nav__inner {
  height: 50px;
}

.nav__logo {
  position: relative;
  z-index: 101;
  align-self: flex-start;
  top: 0;
  transition: all 0.4s ease;
}

.nav__logo img {
  height: 150px;
  width: auto;
  transition: all 0.4s ease;
  object-fit: contain;
}

.nav.scrolled .nav__logo {
  top: -8px;
}

.nav.scrolled .nav__logo img { height: 65px; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__links a {
  font-family: 'Crimson Pro', serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: var(--cream);
  transition: color 0.3s ease;
  position: relative;
}

.nav__links a:not(.nav__cta)::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--amber);
  transition: width 0.3s ease;
}

.nav__links a:not(.nav__cta):hover { color: var(--amber); }
.nav__links a:not(.nav__cta):hover::after { width: 100%; }

.nav__cta {
  background: var(--amber);
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: 2px;
  font-family: 'Fraunces', serif !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
}

.nav__cta:hover { background: var(--amber-dark) !important; }
.nav__cta::after { display: none !important; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 110;
}

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

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

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 180px;
  padding-bottom: 40px;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(26, 14, 8, 0.75) 0%,
      rgba(62, 39, 35, 0.45) 40%,
      rgba(62, 39, 35, 0.55) 60%,
      rgba(26, 14, 8, 0.85) 100%
    );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 24px;
  max-width: 800px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 143, 0, 0.15);
  border: 1px solid rgba(255, 143, 0, 0.4);
  color: var(--amber-glow);
  padding: 8px 22px;
  border-radius: 2px;
  font-family: 'Crimson Pro', serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero__badge-star { font-size: 1rem; }

.hero__title {
  color: var(--cream);
  margin-bottom: 20px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.hero__sub {
  color: var(--cream-mid);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-style: italic;
  font-weight: 300;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero__scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--brown-pale);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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

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

/* ========================================
   STORY / ABOUT
   ======================================== */
.story {
  position: relative;
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--cream);
  overflow: hidden;
}

.story__texture {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, var(--cream), var(--cream-mid));
  opacity: 0.5;
}

.story__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  position: relative;
}

.story__image { position: relative; }

.story__image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.story__image-frame img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.story__image:hover .story__image-frame img {
  transform: scale(1.03);
}

.story__image-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 60%;
  height: 60%;
  border: 3px solid var(--amber);
  border-radius: 4px;
  z-index: -1;
}

.story__lead {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--brown-mid);
  line-height: 1.8;
}

.story__text p {
  margin-bottom: 16px;
  color: var(--brown-dark);
}

.story__text .btn { margin-top: 12px; }

/* ========================================
   CRAFT / SERVICES
   ======================================== */
.craft {
  position: relative;
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--brown-dark);
  color: var(--cream);
  overflow: hidden;
}

.craft__bg {
  position: absolute;
  inset: 0;
}

.craft__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.08;
}

.craft__header {
  text-align: center;
  position: relative;
  z-index: 1;
  margin-bottom: 60px;
}

.craft__header h2 { color: var(--cream); }

.craft__header .chisel-divider { justify-content: center; }

.craft__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.craft-card {
  background: rgba(255, 248, 225, 0.04);
  border: 1px solid rgba(255, 248, 225, 0.08);
  border-radius: 4px;
  padding: 40px 28px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.craft-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.craft-card:hover {
  background: rgba(255, 248, 225, 0.08);
  border-color: rgba(255, 143, 0, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

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

.craft-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: var(--amber);
}

.craft-card__icon svg {
  width: 100%;
  height: 100%;
}

.craft-card h3 {
  color: var(--cream);
  margin-bottom: 12px;
}

.craft-card p {
  color: var(--brown-pale);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ========================================
   GALLERY / CAROUSEL
   ======================================== */
.gallery {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--cream);
}

.gallery__header {
  text-align: center;
  margin-bottom: 50px;
}

.gallery__header .chisel-divider { justify-content: center; }

.carousel { position: relative; }

.carousel__viewport {
  overflow: hidden;
  border-radius: 6px;
}

.carousel__track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.carousel__slide {
  min-width: 100%;
  position: relative;
}

.carousel__slide img {
  width: 100%;
  height: clamp(350px, 50vw, 580px);
  object-fit: cover;
}

.carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 28px;
}

.carousel__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--brown-light);
  background: transparent;
  color: var(--brown-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.carousel__btn:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--white);
}

.carousel__btn svg { width: 20px; height: 20px; }

.carousel__dots {
  display: flex;
  gap: 8px;
}

.carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid var(--brown-light);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel__dot.active {
  background: var(--amber);
  border-color: var(--amber);
  transform: scale(1.3);
}

.carousel__counter {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(26, 14, 8, 0.7);
  backdrop-filter: blur(8px);
  color: var(--cream);
  padding: 8px 16px;
  border-radius: 2px;
  font-family: 'Fraunces', serif;
  font-size: 0.85rem;
  z-index: 5;
}

.carousel__counter-sep {
  color: var(--amber);
  margin: 0 4px;
}

/* ========================================
   PRODUCTS
   ======================================== */
.products {
  position: relative;
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--brown-mid);
  overflow: hidden;
}

.products__texture {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 14, 8, 0.3), transparent);
}

.products__header {
  text-align: center;
  position: relative;
  z-index: 1;
  margin-bottom: 50px;
}

.products__header .label { color: var(--amber-glow); }
.products__header h2 { color: var(--cream); }
.products__header .chisel-divider { justify-content: center; }
.products__header .chisel-divider span { background: var(--amber-glow); }

.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  position: relative;
  z-index: 1;
}

.product {
  background: var(--cream);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.product:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.3);
}

.product__image {
  position: relative;
  overflow: hidden;
}

.product__image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product:hover .product__image img { transform: scale(1.08); }

.product__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 14, 8, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product:hover .product__overlay { opacity: 1; }

.product__info {
  padding: 24px;
  text-align: center;
}

.product__info h3 {
  color: var(--brown-dark);
  margin-bottom: 4px;
}

.product__info p {
  color: var(--brown-light);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.product__price {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--amber);
}

.products__cta {
  text-align: center;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

.products__cta .btn--secondary {
  color: var(--cream);
  border-color: var(--cream-mid);
}

.products__cta .btn--secondary:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--white);
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.words {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--cream);
}

.words__header {
  text-align: center;
  margin-bottom: 50px;
}

.words__header .chisel-divider { justify-content: center; }

.words__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial {
  background: var(--white);
  border-radius: 4px;
  padding: 36px 28px;
  position: relative;
  border: none;
  box-shadow: 0 4px 24px rgba(62, 39, 35, 0.08);
  transition: transform 0.3s ease;
}

.testimonial::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--amber), var(--amber-glow));
  border-radius: 4px 4px 0 0;
}

.testimonial:hover { transform: translateY(-4px); }

.testimonial__stars {
  color: var(--amber);
  font-size: 1.1rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.testimonial p {
  font-style: italic;
  color: var(--brown-mid);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.testimonial footer { border-top: 1px solid var(--cream-dark); padding-top: 16px; }

.testimonial strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  color: var(--brown-dark);
}

.testimonial cite {
  font-style: normal;
  font-size: 0.8rem;
  color: var(--brown-light);
  letter-spacing: 0.05em;
}

/* ========================================
   CONTACT
   ======================================== */
.connect {
  position: relative;
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--brown-dark);
  color: var(--cream);
  overflow: hidden;
}

.connect__bg {
  position: absolute;
  inset: 0;
}

.connect__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.06;
}

.connect__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  position: relative;
  z-index: 1;
}

.connect__info h2 { color: var(--cream); }

.connect__info p {
  color: var(--cream-mid);
  margin-bottom: 32px;
}

.connect__detail { margin-bottom: 24px; }

.connect__detail-label {
  display: block;
  font-family: 'Crimson Pro', serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 6px;
}

.connect__detail a {
  text-decoration: none;
  color: var(--cream);
  transition: color 0.3s ease;
}

.connect__detail a:hover { color: var(--amber); }

.connect__social {
  display: flex;
  gap: 16px;
}

.connect__social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--cream);
  padding: 8px 18px;
  border: 1px solid rgba(255, 248, 225, 0.15);
  border-radius: 2px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.connect__social a:hover {
  border-color: var(--amber);
  color: var(--amber);
  background: rgba(255, 143, 0, 0.08);
}

/* Form */
.connect__form-wrap {
  background: rgba(255, 248, 225, 0.04);
  border: 1px solid rgba(255, 248, 225, 0.08);
  border-radius: 4px;
  padding: 40px;
}

.form-field {
  position: relative;
  margin-bottom: 24px;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 14px 0;
  font-family: 'Crimson Pro', serif;
  font-size: 1rem;
  color: var(--cream);
  background: transparent;
  border: none;
  border-bottom: 1.5px solid rgba(255, 248, 225, 0.2);
  outline: none;
  transition: border-color 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--amber);
}

.form-field label {
  position: absolute;
  top: 14px;
  left: 0;
  font-family: 'Crimson Pro', serif;
  font-size: 0.9rem;
  color: var(--brown-pale);
  pointer-events: none;
  transition: all 0.3s ease;
}

.form-field input:focus ~ label,
.form-field input:not(:placeholder-shown) ~ label,
.form-field textarea:focus ~ label,
.form-field textarea:not(:placeholder-shown) ~ label {
  top: -10px;
  font-size: 0.72rem;
  color: var(--amber);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-field select { cursor: pointer; }

.form-field select option {
  background: var(--brown-dark);
  color: var(--cream);
}

.form-field textarea { resize: vertical; min-height: 100px; }

/* ========================================
   FOOTER
   ======================================== */
.footer {
  padding: 50px 0 30px;
  background: var(--brown-deep);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 248, 225, 0.08);
  margin-bottom: 20px;
}

.footer__logo {
  width: 56px;
  height: auto;
  opacity: 0.85;
  filter: invert(1);
}

.footer__tagline {
  color: var(--amber);
  font-family: 'Fraunces', serif;
  font-size: 0.85rem;
  margin-top: 8px;
}

.footer__links {
  display: flex;
  gap: 28px;
}

.footer__links a {
  text-decoration: none;
  color: rgba(255, 248, 225, 0.4);
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer__links a:hover { color: var(--amber); }

.footer__social {
  display: flex;
  gap: 16px;
}

.footer__social a {
  color: rgba(255, 248, 225, 0.4);
  transition: color 0.3s ease;
}

.footer__social a:hover { color: var(--amber); }

.footer__bottom {
  text-align: center;
}

.footer__bottom p,
.footer__bottom small {
  color: rgba(255, 248, 225, 0.55);
  font-size: 0.8rem;
}

.footer__bottom small a {
  color: rgba(255, 248, 225, 0.75);
  font-size: 0.8rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__bottom small a:hover {
  color: var(--amber);
}

/* ========================================
   PARALLAX SECTIONS
   ======================================== */
.parallax {
  position: relative;
  height: 45vh;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.parallax::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 14, 8, 0.6);
  z-index: 1;
}

.parallax--workshop {
  background-image: url('images/parallax-workshop.webp');
}

.parallax--workbench {
  background-image: url('images/parallax-workbench.webp');
}

.parallax__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 clamp(20px, 4vw, 40px);
}

.parallax__quote {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
  max-width: 700px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

@media (max-width: 1024px) {
  .parallax {
    background-attachment: scroll;
  }
}

/* ========================================
   HOW IT WORKS / PROCESS
   ======================================== */
.process {
  padding: clamp(60px, 10vw, 120px) 0;
  background: var(--cream);
}

.process__header {
  text-align: center;
  margin-bottom: 60px;
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.process__step {
  text-align: center;
  position: relative;
}

.process__number {
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--amber);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 16px;
}

.process__step h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--brown-deep);
  margin-bottom: 12px;
}

.process__step p {
  font-size: 0.95rem;
  color: var(--brown-mid);
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .process__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
  }
}

@media (max-width: 768px) {
  .process__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

/* ========================================
   MATERIALS SHOWCASE
   ======================================== */
.materials {
  position: relative;
  padding: clamp(60px, 10vw, 120px) 0;
  background: var(--brown-deep);
  color: var(--cream);
  overflow: hidden;
}

.materials__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.materials__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.08;
}

.materials .wrap {
  position: relative;
  z-index: 1;
}

.materials__header {
  text-align: center;
  margin-bottom: 60px;
}

.materials__intro {
  max-width: 600px;
  margin: 20px auto 0;
  color: rgba(255, 248, 225, 0.7);
  font-size: 1.05rem;
  line-height: 1.7;
}

.materials__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.material-card {
  background: rgba(255, 248, 225, 0.05);
  border: 1px solid rgba(255, 248, 225, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.material-card:hover {
  transform: translateY(-4px);
  border-color: var(--amber);
}

.material-card__image {
  aspect-ratio: 1;
  overflow: hidden;
}

.material-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.material-card:hover .material-card__image img {
  transform: scale(1.05);
}

.material-card__info {
  padding: 20px;
}

.material-card__info h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 8px;
}

.material-card__info p {
  font-size: 0.85rem;
  color: rgba(255, 248, 225, 0.6);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .materials__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .materials__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

/* ========================================
   FAQ
   ======================================== */
.faq {
  padding: clamp(60px, 10vw, 120px) 0;
  background: var(--cream);
}

.faq__header {
  text-align: center;
  margin-bottom: 50px;
}

.faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--brown-pale);
  overflow: hidden;
}

.faq__item summary {
  padding: 22px 40px 22px 0;
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--brown-deep);
  cursor: pointer;
  position: relative;
  list-style: none;
  transition: color 0.3s ease;
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--amber-dark);
  transition: transform 0.3s ease;
}

.faq__item[open] summary::after {
  content: '\2212';
}

.faq__item summary:hover {
  color: var(--amber-dark);
}

.faq__item p {
  padding: 0 0 22px 0;
  color: var(--brown-mid);
  line-height: 1.7;
}

.faq__item p a {
  color: var(--amber-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq__item p a:hover {
  color: var(--brown-deep);
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.reveal--delay-1 { transition-delay: 0.15s; }
.reveal--delay-2 { transition-delay: 0.3s; }
.reveal--delay-3 { transition-delay: 0.45s; }
.reveal--delay-4 { transition-delay: 0.6s; }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .hero { padding-top: 120px; }
  .nav__logo img { height: 75px; }
  .nav.scrolled .nav__logo img { height: 58px; }
  .nav__toggle { display: flex; }

  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--brown-deep);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    z-index: 105;
  }

  .nav__links.open { right: 0; }

  .nav__links a {
    font-size: 1.1rem;
  }

  .story__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story__image-frame img { height: 400px; }

  .craft__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .connect__grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .craft__grid,
  .products__grid,
  .words__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__sub br { display: none; }

  .hero__actions { flex-direction: column; align-items: center; }

  .footer__inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .footer__links { flex-wrap: wrap; justify-content: center; }

  .connect__form-wrap { padding: 28px 20px; }

  .connect__social { flex-direction: column; gap: 10px; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .products__grid,
  .words__grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: none;
  }
}
