/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --olive: #4c5223;
  --olive-light: #6b7332;
  --black: #000000;
  --dark: #0a0a0a;
  --white: #ffffff;
  --off-white: #f5f5f5;
  --light-gray: #d9d9d9;
  --body-font: Arial, sans-serif;
  --heading-font: 'freight-big-pro', Georgia, serif;
}

html {
  scroll-behavior: auto; /* Lenis handles smooth scroll */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--body-font);
  background: var(--black);
  color: var(--light-gray);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; background: none; border: none; color: inherit; font-family: inherit; }

/* ===== ANIMATIONS ===== */
[data-animate] {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-animate="fade-right"] {
  transform: translateX(-60px);
}
[data-animate="fade-left"] {
  transform: translateX(60px);
}
[data-animate].is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ===== FLOATING PHONE WIDGET ===== */
.floating-phone-widget {
  position: fixed;
  bottom: 32px;
  left: 32px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.floating-phone {
  width: 56px;
  height: 56px;
  background: var(--olive);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
  position: relative;
  z-index: 2;
}
.floating-phone:hover {
  transform: scale(1.1);
  background: var(--olive-light);
}
.phone-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.phone-actions.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.phone-action-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(76, 82, 35, 0.95);
  color: var(--off-white);
  padding: 10px 18px 10px 14px;
  border-radius: 28px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.3s ease;
  backdrop-filter: blur(10px);
}
.phone-action-btn:hover {
  background: var(--olive-light);
}
.phone-action-btn svg {
  flex-shrink: 0;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 24px 40px;
  transition: background 0.3s ease;
}
.header.scrolled {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
.logo {
  height: 28px;
  width: auto;
}
.menu-toggle {
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--off-white);
  text-transform: uppercase;
}
.menu-toggle:hover { opacity: 0.7; }

/* ===== NAV OVERLAY ===== */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  overflow-y: auto;
  padding: 100px 60px 60px;
}
.nav-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}
.nav-close {
  position: absolute;
  top: 28px;
  right: 40px;
  z-index: 10;
  padding: 8px;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.nav-close:hover { opacity: 1; }
.nav-inner {
  width: 100%;
  max-width: 1040px;
}
.nav-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}
.nav-col {
  display: flex;
  flex-direction: column;
}
.nav-label {
  font-family: var(--body-font);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--off-white);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nav-links a {
  font-family: var(--heading-font);
  font-size: 28px;
  font-weight: 400;
  color: var(--off-white);
  transition: color 0.3s, padding-left 0.3s;
  line-height: 1.4;
  padding: 4px 0;
}
.nav-links a:hover {
  color: var(--olive-light);
  padding-left: 8px;
}
.nav-links a.nav-primary {
  color: var(--white);
  padding-bottom: 6px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--olive);
}
.nav-links a.nav-primary:hover {
  color: var(--olive-light);
  border-color: var(--olive-light);
}
.nav-tertiary {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.nav-tertiary a {
  font-family: var(--body-font);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s;
}
.nav-tertiary a:hover { color: var(--off-white); }

/* ===== PRIMARY BUTTON ===== */
.primary-button {
  display: inline-block;
  padding: 16px 32px;
  border: 1px solid var(--olive);
  color: var(--light-gray);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: var(--body-font);
  transition: background 0.3s ease, color 0.3s ease;
}
.primary-button:hover {
  background: var(--olive);
  color: var(--white);
}

/* ===== HERO SECTION ===== */
.section-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--black);
}
.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.35;
}
.hero-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 40px;
}
.hero-content h1 {
  font-family: var(--heading-font);
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 16px;
}
.hero-subtitle {
  font-family: var(--heading-font);
  font-size: 42px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
}
.hero-subtitle em {
  font-family: var(--heading-font);
  font-style: italic;
}
.hero-body {
  font-size: 16px;
  color: var(--light-gray);
  margin-bottom: 32px;
  font-weight: 300;
}

/* ===== PROCESS SECTION ===== */
.section-process {
  padding: 100px 40px;
  text-align: center;
  background: var(--dark);
}
.process-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.process-heading {
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--off-white);
  margin-bottom: 12px;
}
.process-subhead {
  font-family: var(--heading-font);
  font-size: 36px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 60px;
}
.process-steps {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-bottom: 48px;
}
.step { text-align: center; }
.step-circle {
  width: 64px;
  height: 64px;
  border: 1px solid var(--olive);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--heading-font);
  font-size: 24px;
  color: var(--off-white);
}
.step-text {
  font-size: 14px;
  color: var(--light-gray);
  line-height: 1.6;
}

/* ===== SERVICES SECTION ===== */
.section-services {
  padding: 0;
  background: var(--dark);
}
.services-inner {
  display: flex;
  align-items: flex-start;
}
.services-left {
  flex: 1;
  padding: 80px 60px;
}
.services-heading {
  font-family: var(--heading-font);
  font-size: 42px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 40px;
}
.service-item { padding: 24px 0; }
.service-name {
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--off-white);
  margin-bottom: 12px;
}
.service-desc {
  font-size: 14px;
  color: var(--light-gray);
  line-height: 1.7;
  max-width: 500px;
}
.service-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
}
.services-buttons {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}
.services-right {
  flex: 1;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.services-bg-image {
  position: absolute;
  inset: 0;
}
.services-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== GALLERY SECTION ===== */
.section-gallery {
  padding: 100px 0;
  background: var(--dark);
}
.gallery-inner {
  max-width: 100%;
}
.gallery-heading {
  font-family: var(--heading-font);
  font-size: 42px;
  font-weight: 400;
  color: var(--white);
  text-align: center;
  margin-bottom: 32px;
}
.gallery-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  max-width: 900px;
  margin: 0 auto 24px;
}
.gallery-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  padding: 0 20px;
}
.filter-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--off-white);
}
.filter-btn {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--light-gray);
  text-transform: uppercase;
  transition: color 0.3s;
  text-decoration: none;
}
.filter-btn:hover, .filter-btn.active {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.filter-sep {
  color: rgba(255, 255, 255, 0.3);
  font-size: 14px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 40px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}
.gallery-item.hidden {
  display: none;
}
.gallery-pair {
  width: 100%;
  height: 100%;
}
.gallery-pair img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-item:hover .gallery-pair img {
  transform: scale(1.05);
}
.gallery-expand {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-expand {
  opacity: 1;
}
.gallery-expand img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

/* ===== GALLERY MODAL ===== */
.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.gallery-modal.is-open {
  opacity: 1;
  pointer-events: all;
}
.modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}
.modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--off-white);
}
.modal-image {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
}

/* ===== TESTIMONIALS SECTION ===== */
.section-testimonials {
  padding: 100px 40px;
  background: var(--dark);
  overflow: hidden;
}
.testimonials-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.testimonial-slider {
  position: relative;
  overflow: hidden;
}
.testimonial-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.testimonial-slide {
  min-width: 100%;
  text-align: center;
  padding: 0 60px;
}
.stars {
  margin-bottom: 32px;
}
.stars img {
  margin: 0 auto;
  height: 20px;
}
.testimonial-quote {
  font-family: var(--heading-font);
  font-size: 40px;
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 32px;
}
.testimonial-body {
  font-size: 14px;
  color: var(--light-gray);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.testimonial-author {
  font-size: 14px;
  font-weight: 500;
  color: var(--off-white);
  letter-spacing: 1px;
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  padding: 16px;
  transition: opacity 0.3s;
  border: 1px solid rgba(245, 245, 245, 0.4);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-arrow:hover { opacity: 0.6; }
.slider-prev { left: -20px; }
.slider-next { right: -20px; }
.slider-arrow svg {
  width: 24px;
  height: 12px;
}

/* ===== CTA SECTION ===== */
.section-cta {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.cta-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 40px;
}
.cta-heading {
  font-family: var(--heading-font);
  font-size: 48px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 32px;
}

/* ===== NEWSLETTER SECTION ===== */
.section-newsletter {
  padding: 80px 40px;
  background: var(--black);
  text-align: center;
}
.newsletter-inner {
  max-width: 600px;
  margin: 0 auto;
}
.newsletter-heading {
  font-family: var(--heading-font);
  font-size: 36px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
}
.newsletter-heading em {
  font-style: italic;
}
.newsletter-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--light-gray);
  margin-bottom: 24px;
  text-transform: uppercase;
}
.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 450px;
  margin: 0 auto;
}
.newsletter-input {
  flex: 1;
  padding: 14px 16px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-family: var(--body-font);
  font-size: 13px;
  outline: none;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-input:focus { border-color: var(--olive); }
.newsletter-submit {
  padding: 14px 24px;
  background: var(--olive);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  font-family: var(--body-font);
  border: 1px solid var(--olive);
  transition: background 0.3s;
}
.newsletter-submit:hover { background: var(--olive-light); }

/* ===== FOOTER ===== */
.footer {
  padding: 80px 40px 32px;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
}
.footer-left { flex: 1; }
.footer-right { flex: 1; }

.footer-info {
  display: flex;
  gap: 80px;
  margin-bottom: 48px;
}
.footer-section-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--off-white);
  margin-bottom: 16px;
}
.footer-location p {
  font-size: 14px;
  color: var(--light-gray);
  line-height: 1.7;
  margin-bottom: 8px;
}
.footer-phone {
  display: block;
  font-size: 14px;
  color: var(--light-gray);
  margin-bottom: 4px;
  transition: color 0.3s;
}
.footer-phone:hover { color: var(--olive-light); }

.hours-table {
  border-collapse: collapse;
}
.hours-table td {
  font-size: 13px;
  color: var(--light-gray);
  padding: 3px 0;
}
.hours-table td:first-child {
  padding-right: 24px;
  font-weight: 500;
  color: var(--off-white);
}

.footer-instagram { margin-bottom: 32px; }
.footer-ig-heading {
  font-family: var(--heading-font);
  font-size: 28px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-ig-heading em { font-style: italic; }
.ig-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  text-decoration: none;
}
.ig-thumb {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}
.ig-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.ig-grid:hover .ig-thumb img {
  opacity: 0.7;
}
.ig-thumb:hover img {
  transform: scale(1.05);
  opacity: 1 !important;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.footer-social a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--off-white);
  transition: color 0.3s;
}
.footer-social a:hover { color: var(--olive-light); }

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}
.footer-nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--off-white);
  transition: color 0.3s;
  text-align: right;
}
.footer-nav a:hover { color: var(--olive-light); }

.footer-map {
  border-radius: 4px;
  overflow: hidden;
}
.footer-map iframe {
  display: block;
}

.footer-bottom {
  max-width: 1400px;
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1px;
}
.footer-bottom a {
  color: rgba(255,255,255,0.4);
  transition: color 0.3s;
}
.footer-bottom a:hover { color: var(--off-white); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-inner { flex-direction: column; }
  .services-right { position: relative; height: 500px; }
  .footer-inner { flex-direction: column; gap: 48px; }
  .footer-nav a { text-align: left; }
  .process-steps { gap: 40px; }
  .nav-overlay { padding: 80px 40px 40px; }
  .nav-grid { gap: 40px; }
  .nav-links a { font-size: 24px; }
  .hero-bg-image img { object-position: calc(100% + 100px) center; }
}

@media (max-width: 768px) {
  .hero-content h1 { font-size: 32px; }
  .hero-subtitle { font-size: 30px; }
  .hero-bg-image img { object-position: calc(100% + 100px) center; }
  .process-steps { flex-direction: column; gap: 40px; align-items: center; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-heading { font-size: 30px; padding: 0 20px; }
  .services-heading { font-size: 32px; }
  .services-left { padding: 60px 24px; }
  .services-buttons { flex-direction: column; }
  .testimonial-quote { font-size: 28px; }
  .testimonial-slide { padding: 0 40px; }
  .slider-prev { left: -8px; }
  .slider-next { right: -8px; }
  .cta-heading { font-size: 32px; }
  .gallery-filters { gap: 12px; }
  .footer-info { flex-direction: column; gap: 32px; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
  .header { padding: 16px 20px; }
  .footer { padding: 48px 20px 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .nav-overlay { padding: 70px 24px 40px; }
  .nav-grid { grid-template-columns: 1fr; gap: 32px; }
  .nav-links a { font-size: 20px; }
  .nav-label { font-size: 10px; margin-bottom: 12px; }
  .nav-tertiary { margin-top: 16px; padding-top: 16px; }
  .nav-close { top: 16px; right: 20px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 26px; }
  .hero-subtitle { font-size: 24px; }
  .hero-bg-image img { object-position: calc(100% + 100px) center; }
  .nav-links a { font-size: 20px; }
}


/* Menu overlay logo */
.nav-logo{display:inline-block;margin-bottom:48px;opacity:.95;transition:opacity .3s ease}
.nav-logo:hover{opacity:1}
.nav-logo img{height:36px;width:auto;display:block}
@media (max-width:768px){
  .nav-logo{margin-bottom:32px}
  .nav-logo img{height:30px}
}


/* Product page wholesale CTA */
.wholesale-link {
  display: block;
  margin-top: -4px;
  margin-bottom: 16px;
  padding: 14px 18px;
  background: rgba(76,82,35,0.08);
  border: 1px solid rgba(76,82,35,0.4);
  border-radius: 4px;
  font-size: 12px;
  color: var(--light-gray);
  text-align: center;
  transition: background 0.3s, border-color 0.3s;
}
.wholesale-link span {
  display: inline-block;
  color: var(--olive-light);
  letter-spacing: 1px;
  font-weight: 600;
  text-transform: uppercase;
  margin-left: 4px;
  border-bottom: 1px solid var(--olive);
  padding-bottom: 1px;
}
.wholesale-link:hover {
  background: rgba(76,82,35,0.16);
  border-color: var(--olive);
}
.wholesale-link:hover span {
  color: var(--white);
  border-color: var(--white);
}
