:root {
  --bg: #f8f6f2;
  --text: #1f1f1f;
  --muted: #6b6b6b;
  --accent: #3b521c;
  --accent-dark: #2e4017;
}

/* Base */
body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg);
  color: var(--text);
}

.inner-page {
  padding-top: 90px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
}

.navbar-brand {
  font-family: 'Mrs Saint Delafield', cursive;
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.03em;
}

.hero-title {
  font-family: 'Mrs Saint Delafield', cursive;
  font-size: 5rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}

/* Navbar */
.navbar {
  min-height: auto;
}

.navbar-custom {
  background-color: rgba(248, 246, 242, 0.95);
  backdrop-filter: blur(10px);
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar-scrolled {
  background-color: rgba(248, 246, 242, 0.78);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.navbar-toggler {
  border: none;
  box-shadow: none;
  padding: 0;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Hero */
.hero {
  height: 70vh;
  background: url('../assets/images/hero-woodworking-temp.jpg') center/cover no-repeat;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero .container {
  position: relative;
  z-index: 2;
}

/* Layout */
.product-container {
  max-width: 1150px;
}

/* Product images */
.product-img {
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
  background-color: #f3f3f3;
}

.product-img-large {
  height: 544px;
}

.product-img-small {
  height: 260px;
}

/* Process */
.process-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.process-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 12px;
}

/* Buttons */
.btn {
  padding: 0.6rem 1.4rem;
}

.btn-dark {
  background-color: var(--accent);
  border-color: var(--accent);
}

.btn-dark:hover {
  background-color: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn-outline-dark {
  border-color: var(--accent);
}

.btn-outline-dark:hover,
.btn-outline-light:hover {
  background-color: var(--accent);
  border-color: var(--accent);
  color: white;
}

/* Accordion */
.accordion-button:not(.collapsed) {
  background-color: rgba(59, 82, 28, 0.12);
  color: var(--accent);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(59, 82, 28, 0.25);
}

/* Forms */
.required {
  color: var(--accent);
  font-weight: 600;
}

/* Footer */
footer {
  background-color: var(--bg);
}

footer a:hover {
  opacity: 0.6;
}

/* Mobile */
@media (max-width: 767px) {
  .hero .container {
    padding-top: 4rem;
  }

  .product-img-large,
  .product-img-small {
    height: 280px;
  }

  .process-img {
    height: 260px;
  }

  .mobile-hide {
    display: none;
  }
}

@media (max-width: 375px) {
  .hero {
    height: 78vh;
  }

  .hero h1 {
    font-size: clamp(4rem, 22vw, 5.5rem);
    line-height: 0.95;
  }

  .hero p {
    font-size: 1.15rem;
    padding-inline: 1rem;
  }

  .hero .btn {
    font-size: 1rem;
    padding: 0.75rem 1rem;
  }
}

