:root {
  --lemore-primary: #c28c31;
  --lemore-secondary: #a1a1a1;
  --lemore-accent: #ad1e22;
  --lemore-dark: #0f0f0f;
  --lemore-dark-soft: #1a1a1a;
  --lemore-light: #f8f7f4;
  --lemore-white: #ffffff;
  --lemore-primary-rgb: 194, 140, 49;
  --lemore-accent-rgb: 173, 30, 34;
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans: "Source Sans 3", system-ui, -apple-system, sans-serif;
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.1);
  --transition: 0.3s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--lemore-dark);
  background-color: var(--lemore-white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.display-font {
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.text-primary-brand {
  color: var(--lemore-primary) !important;
}

.text-accent-brand {
  color: var(--lemore-accent) !important;
}

.text-secondary-brand {
  color: var(--lemore-secondary) !important;
}

.bg-primary-brand {
  background-color: var(--lemore-primary) !important;
}

.bg-accent-brand {
  background-color: var(--lemore-accent) !important;
}

.bg-dark-brand {
  background-color: var(--lemore-dark) !important;
}

.bg-light-brand {
  background-color: var(--lemore-light) !important;
}

.btn-lemore-primary {
  --bs-btn-color: var(--lemore-white);
  --bs-btn-bg: var(--lemore-primary);
  --bs-btn-border-color: var(--lemore-primary);
  --bs-btn-hover-color: var(--lemore-white);
  --bs-btn-hover-bg: #a87728;
  --bs-btn-hover-border-color: #a87728;
  --bs-btn-focus-shadow-rgb: var(--lemore-primary-rgb);
  --bs-btn-active-bg: #966d24;
  --bs-btn-active-border-color: #966d24;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.85rem;
  padding: 0.75rem 1.75rem;
  border-radius: 0;
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-lemore-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(var(--lemore-primary-rgb), 0.35);
}

.btn-lemore-outline {
  --bs-btn-color: var(--lemore-white);
  --bs-btn-border-color: var(--lemore-white);
  --bs-btn-hover-color: var(--lemore-dark);
  --bs-btn-hover-bg: var(--lemore-white);
  --bs-btn-hover-border-color: var(--lemore-white);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.85rem;
  padding: 0.75rem 1.75rem;
  border-radius: 0;
  border-width: 2px;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lemore-accent);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--lemore-primary), var(--lemore-accent));
  margin-top: 1rem;
}

.section-title.text-center::after {
  margin-left: auto;
  margin-right: auto;
}

.section-padding {
  padding: 5rem 0;
}

@media (max-width: 767.98px) {
  .section-padding {
    padding: 3.5rem 0;
  }
}

/* Navbar */
.navbar-lemore {
  background: transparent;
  padding: 1.25rem 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.navbar-lemore.scrolled {
  background: rgba(15, 15, 15, 0.97);
  backdrop-filter: blur(12px);
  padding: 0.75rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-lemore .navbar-brand img,
.navbar-lemore .navbar-logo {
  height: 52px;
  width: auto;
  transition: height var(--transition);
}

.navbar-lemore.scrolled .navbar-brand img,
.navbar-lemore.scrolled .navbar-logo {
  height: 44px;
}

.navbar-lemore .nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 1rem !important;
  position: relative;
  transition: color var(--transition);
}

.navbar-lemore .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--lemore-primary);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.navbar-lemore .nav-link:hover,
.navbar-lemore .nav-link.active {
  color: var(--lemore-primary) !important;
}

.navbar-lemore .nav-link:hover::after,
.navbar-lemore .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.3);
  padding: 0.5rem 0.75rem;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(var(--lemore-primary-rgb), 0.35);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991.98px) {
  .navbar-lemore .navbar-collapse {
    background: var(--lemore-dark-soft);
    margin-top: 1rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
}

/* Hero */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--lemore-dark);
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(var(--lemore-primary-rgb), 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(var(--lemore-accent-rgb), 0.08) 0%, transparent 40%),
    linear-gradient(180deg, var(--lemore-dark) 0%, var(--lemore-dark-soft) 100%);
  z-index: 0;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(45deg, var(--lemore-primary) 25%, transparent 25%),
    linear-gradient(-45deg, var(--lemore-primary) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, var(--lemore-primary) 75%),
    linear-gradient(-45deg, transparent 75%, var(--lemore-primary) 75%);
  background-size: 60px 60px;
  background-position: 0 0, 0 30px, 30px -30px, -30px 0;
  z-index: 0;
}

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

.hero-logo {
  max-width: 320px;
  width: 100%;
  height: auto;
}

.hero-tagline {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--lemore-secondary);
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.hero-product-frame {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem;
}

.hero-product-img {
  max-height: 420px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.4));
}

.hero-icon {
  width: 120px;
  height: auto;
  margin-bottom: 2rem;
  filter: drop-shadow(0 8px 24px rgba(var(--lemore-primary-rgb), 0.3));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--lemore-primary);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  font-size: clamp(0.75rem, 2vw, 0.95rem);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--lemore-accent);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--lemore-secondary);
  max-width: 540px;
  margin-bottom: 2.5rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--lemore-secondary);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: color var(--transition);
}

.hero-scroll:hover {
  color: var(--lemore-primary);
}

.hero-scroll i {
  animation: bounce 2s infinite;
}

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

/* About */
.about-image-wrapper {
  position: relative;
  padding: 2rem;
}

.about-image-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 80%;
  border: 3px solid var(--lemore-primary);
  z-index: 0;
}

.about-image-wrapper img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 320px;
  display: block;
  margin: 0 auto;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (max-width: 575.98px) {
  .about-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.stat-item {
  text-align: center;
  padding: 1.25rem;
  background: var(--lemore-white);
  border-left: 3px solid var(--lemore-primary);
  box-shadow: var(--shadow-sm);
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--lemore-primary);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--lemore-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--lemore-dark);
}

.about-feature-item i {
  color: var(--lemore-primary);
  font-size: 1.1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.quality-quote {
  border-left: 4px solid var(--lemore-accent);
  padding: 1rem 1.25rem;
  margin: 0;
  background: var(--lemore-white);
  font-style: italic;
  color: var(--lemore-dark);
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
}

.cert-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: var(--lemore-dark);
  color: var(--lemore-primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(var(--lemore-primary-rgb), 0.35);
}

/* Products */
.product-card {
  background: var(--lemore-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(var(--lemore-primary-rgb), 0.3);
}

.product-card-image {
  background: var(--lemore-white);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  border-bottom: 3px solid var(--lemore-primary);
}

.product-card-image img {
  max-height: 160px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.product-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
  flex-grow: 1;
}

.product-card-body h3 {
  font-size: 1rem;
  font-family: var(--font-sans);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--lemore-dark);
  margin-bottom: 0.5rem;
}

.product-card-body p {
  color: var(--lemore-secondary);
  font-size: 0.9rem;
  margin: 0;
}

.cuts-diagram-img {
  max-width: 280px;
  width: 100%;
  height: auto;
}

.farm-photo {
  width: 100%;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-lemore .footer-logo {
  height: 56px;
  width: auto;
  margin-bottom: 1rem;
}

/* Services */
.service-card {
  padding: 2rem;
  background: var(--lemore-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  height: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  border-color: var(--lemore-primary);
  box-shadow: var(--shadow-sm);
}

.service-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--lemore-primary), #d4a84a);
  color: var(--lemore-white);
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--lemore-secondary);
  font-size: 0.95rem;
  margin: 0;
}

/* Contact */
.contact-section {
  background: var(--lemore-dark);
  color: var(--lemore-white);
}

.contact-section .section-title {
  color: var(--lemore-white);
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--lemore-primary-rgb), 0.15);
  color: var(--lemore-primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-item h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--lemore-secondary);
  margin-bottom: 0.25rem;
  font-family: var(--font-sans);
  font-weight: 600;
}

.contact-info-item p,
.contact-info-item a {
  color: var(--lemore-white);
  margin: 0;
  text-decoration: none;
  transition: color var(--transition);
}

.contact-info-item a:hover {
  color: var(--lemore-primary);
}

.contact-form-card {
  background: var(--lemore-white);
  padding: 2.5rem;
  color: var(--lemore-dark);
}

@media (max-width: 575.98px) {
  .contact-form-card {
    padding: 1.5rem;
  }
}

.form-control-lemore {
  border: 1px solid #ddd;
  border-radius: 0;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-control-lemore:focus {
  border-color: var(--lemore-primary);
  box-shadow: 0 0 0 0.2rem rgba(var(--lemore-primary-rgb), 0.15);
}

.form-label-lemore {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lemore-dark);
  margin-bottom: 0.5rem;
}

.btn-lemore-accent {
  --bs-btn-color: var(--lemore-white);
  --bs-btn-bg: var(--lemore-accent);
  --bs-btn-border-color: var(--lemore-accent);
  --bs-btn-hover-color: var(--lemore-white);
  --bs-btn-hover-bg: #8f181c;
  --bs-btn-hover-border-color: #8f181c;
  --bs-btn-focus-shadow-rgb: var(--lemore-accent-rgb);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.85rem;
  padding: 0.85rem 2rem;
  border-radius: 0;
  width: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-lemore-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(var(--lemore-accent-rgb), 0.35);
}

.btn-lemore-accent:disabled {
  opacity: 0.7;
  transform: none;
  box-shadow: none;
}

.form-alert {
  border-radius: 0;
  font-size: 0.9rem;
  display: none;
}

.form-alert.show {
  display: block;
}

/* Footer */
.footer-lemore {
  background: var(--lemore-dark-soft);
  color: var(--lemore-secondary);
  padding: 3rem 0 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-lemore img:not(.footer-logo) {
  height: 56px;
  margin-bottom: 1rem;
}

.footer-lemore h5 {
  color: var(--lemore-primary);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-family: var(--font-sans);
  font-weight: 700;
}

.footer-lemore a {
  color: var(--lemore-secondary);
  text-decoration: none;
  transition: color var(--transition);
  font-size: 0.9rem;
}

.footer-lemore a:hover {
  color: var(--lemore-primary);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 2rem;
  padding-top: 1.5rem;
  font-size: 0.85rem;
  text-align: center;
}

/* Utilities */
.diamond-divider {
  width: 12px;
  height: 12px;
  background: var(--lemore-primary);
  transform: rotate(45deg);
  margin: 0 auto 1.5rem;
}
