/* =============================================
   NOMADS MEATS - Premium Landing Page Styles
   Color Palette:
     Deep Green  #1a3328
     Forest      #2d5a3f
     Emerald     #3d7a56
     Gold        #c8a96e
     Cream       #f5f0e8
     Charcoal    #1a1a1a
     Off-white   #faf8f4
   ============================================= */

:root {
  --green-deep: #1a3328;
  --green-forest: #2d5a3f;
  --green-emerald: #3d7a56;
  --green-light: #4a9168;
  --gold: #c8a96e;
  --gold-light: #dbc292;
  --cream: #f5f0e8;
  --off-white: #faf8f4;
  --charcoal: #1a1a1a;
  --gray-dark: #333333;
  --gray-mid: #666666;
  --gray-light: #999999;
  --white: #ffffff;

  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --nav-height: 80px;
  --section-padding: 120px;
  --container-width: 1200px;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---- RESET & BASE ---- */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background-color: var(--off-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- REVEAL ANIMATION ---- */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.4s; }
.reveal:nth-child(6) { transition-delay: 0.5s; }

/* ---- SECTION LABELS & TITLES ---- */

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.section-title em {
  font-style: italic;
  color: var(--green-forest);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header.light .section-title {
  color: var(--off-white);
}

.section-header.light .section-title em {
  color: var(--gold);
}

.section-header.light .section-label {
  color: var(--gold-light);
}

/* ---- BUTTONS ---- */

.btn {
  display: inline-block;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 0;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold);
  color: var(--charcoal);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 169, 110, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--off-white);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
}

/* ===========================
   NAVIGATION
   =========================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: all 0.4s var(--ease-out-expo);
}

.navbar.scrolled {
  background: rgba(26, 51, 40, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.15);
}

.nav-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}

.logo-icon {
  color: var(--gold);
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--off-white);
}

.logo-accent {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease-out-expo);
}

.nav-links a:hover {
  color: var(--off-white);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-coming-soon {
  display: flex !important;
  align-items: center;
  gap: 8px;
}

.coming-soon-tag {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--green-deep);
  padding: 2px 7px;
  line-height: 1.4;
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--charcoal) !important;
  padding: 10px 24px !important;
  font-weight: 500 !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
}

.nav-cta::after {
  display: none !important;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--off-white);
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -5px);
}

/* ===========================
   HERO
   =========================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-deep);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('images/hero-bg.jpg') center center / cover no-repeat;
  opacity: 0.15;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(61, 122, 86, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(200, 169, 110, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, rgba(26, 51, 40, 0.4) 0%, rgba(26, 51, 40, 0.9) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  border: 1px solid rgba(200, 169, 110, 0.08);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(200, 169, 110, 0.06);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 800px;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--off-white);
  margin-bottom: 28px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.7);
  line-height: 1.8;
  margin-bottom: 48px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.hero-scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.4);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ===========================
   ABOUT
   =========================== */

.about {
  padding: var(--section-padding) 0;
  background: var(--off-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60%;
  height: 60%;
  border: 1px solid var(--gold);
  opacity: 0.3;
  z-index: -1;
}

.about-text {
  padding-right: 20px;
}

.about-description {
  font-size: 1rem;
  color: var(--gray-mid);
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--green-forest);
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(0, 0, 0, 0.1);
}

/* ===========================
   PRODUCTS
   =========================== */

.products {
  padding: var(--section-padding) 0;
  background: var(--cream);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--white);
  padding: 48px 36px;
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out-expo);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-card.featured {
  background: var(--green-deep);
  color: var(--off-white);
}

.product-card.featured::before {
  background: var(--gold);
}

.product-card.featured .product-desc {
  color: rgba(245, 240, 232, 0.65);
}

.product-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  color: var(--green-forest);
}

.product-card.featured .product-icon {
  color: var(--gold);
}

.product-icon svg {
  width: 100%;
  height: 100%;
}

.product-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.product-desc {
  font-size: 0.9rem;
  color: var(--gray-mid);
  line-height: 1.7;
}

/* ===========================
   WHY US
   =========================== */

.why-us {
  padding: var(--section-padding) 0;
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
}

.why-us-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(61, 122, 86, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(200, 169, 110, 0.08) 0%, transparent 50%);
}

.why-us .container {
  position: relative;
  z-index: 2;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.why-card {
  padding: 48px 40px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.5s var(--ease-out-expo);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(200, 169, 110, 0.25);
  transform: translateY(-4px);
}

.why-number {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--off-white);
  margin-bottom: 16px;
  font-weight: 600;
}

.why-card p {
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.55);
  line-height: 1.8;
}

/* ===========================
   GALLERY
   =========================== */

.gallery {
  padding: var(--section-padding) 0;
  background: var(--off-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
}

.gallery-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-wide {
  grid-column: span 2;
}

.gallery-item {
  overflow: hidden;
  position: relative;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out-expo);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 51, 40, 0.9) 0%,
    rgba(26, 51, 40, 0.3) 35%,
    transparent 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 28px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-caption {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--off-white);
  letter-spacing: 0.5px;
  transform: translateY(10px);
  transition: transform 0.4s var(--ease-out-expo);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

.gallery-item:hover .gallery-img {
  transform: scale(1.06);
}

/* ===========================
   REVIEWS
   =========================== */

.reviews {
  padding: var(--section-padding) 0;
  background: var(--cream);
  overflow: hidden;
}

.reviews-carousel-wrapper {
  position: relative;
  margin: 0 -24px;
  padding: 0 24px;
}

.reviews-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px 0 24px;
  cursor: grab;
}

.reviews-carousel:active {
  cursor: grabbing;
}

.reviews-carousel::-webkit-scrollbar {
  display: none;
}

.review-card {
  background: var(--white);
  padding: 40px 36px;
  min-width: 360px;
  max-width: 400px;
  flex-shrink: 0;
  scroll-snap-align: start;
  transition: all 0.5s var(--ease-out-expo);
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.review-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.review-text {
  font-size: 0.95rem;
  color: var(--gray-mid);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 28px;
  flex-grow: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  background: var(--green-deep);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  flex-shrink: 0;
}

.review-name {
  display: block;
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--charcoal);
}

.review-source {
  font-size: 0.75rem;
  color: var(--gray-light);
}

/* Carousel Arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  background: var(--green-deep);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  opacity: 0.9;
}

.carousel-arrow svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

.carousel-arrow:hover {
  background: var(--green-forest);
  opacity: 1;
  transform: translateY(-50%) scale(1.05);
}

.carousel-arrow-left {
  left: 0;
}

.carousel-arrow-right {
  right: 0;
}

/* Carousel Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.12);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ===========================
   CONTACT
   =========================== */

.contact {
  padding: var(--section-padding) 0;
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-desc {
  font-size: 1rem;
  color: var(--gray-mid);
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 24px;
  height: 24px;
  color: var(--green-forest);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-icon svg {
  width: 100%;
  height: 100%;
}

.contact-item strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 0.9rem;
  color: var(--gray-mid);
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-mid);
  transition: all 0.3s ease;
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.social-link:hover {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: var(--gold);
  transform: translateY(-3px);
}

.contact-phone-link {
  color: var(--green-forest);
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-phone-link:hover {
  color: var(--gold);
}

.contact-call-btn {
  margin-top: 32px;
}

.footer-call-link {
  position: relative;
}

.footer-call-link::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 6px;
  vertical-align: middle;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c8a96e' stroke-width='2'%3E%3Cpath d='M22 16.92v3a2 2 0 01-2.18 2 19.79 19.79 0 01-8.63-3.07 19.5 19.5 0 01-6-6 19.79 19.79 0 01-3.07-8.67A2 2 0 014.11 2h3a2 2 0 012 1.72 12.84 12.84 0 00.7 2.81 2 2 0 01-.45 2.11L8.09 9.91a16 16 0 006 6l1.27-1.27a2 2 0 012.11-.45 12.84 12.84 0 002.81.7A2 2 0 0122 16.92z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.contact-map {
  width: 100%;
  height: 100%;
  min-height: 480px;
}

/* ===========================
   ORDER ONLINE
   =========================== */

.order-online {
  padding: var(--section-padding) 0;
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.order-online::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(200, 169, 110, 0.06);
  pointer-events: none;
}

.order-content {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.order-content .section-title {
  color: var(--off-white);
}

.order-content .section-title em {
  color: var(--gold);
}

.order-badge {
  display: inline-block;
  padding: 8px 24px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-deep);
  background: var(--gold);
  margin-bottom: 32px;
}

.order-desc {
  font-size: 1.05rem;
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.8;
  margin-bottom: 48px;
}

.order-notify {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.order-notify-text {
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.4);
}

/* ===========================
   FOOTER
   =========================== */

.footer {
  background: var(--charcoal);
  padding: 60px 0 40px;
}

.footer-content {
  text-align: center;
}

.footer-brand {
  margin-bottom: 28px;
}

.footer-brand .logo-icon {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  display: inline-block;
  vertical-align: middle;
}

.footer-brand .logo-text {
  font-size: 0.9rem;
}

.footer-tagline {
  font-size: 0.8rem;
  color: rgba(245, 240, 232, 0.35);
  margin-top: 10px;
  letter-spacing: 1px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 40px;
}

.footer-links a {
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.45);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(245, 240, 232, 0.25);
  letter-spacing: 0.5px;
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
  }

  .about-grid {
    gap: 48px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-auto-rows: 220px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 64px;
    --nav-height: 64px;
  }

  /* Mobile nav */
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--green-deep);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    transition: right 0.5s var(--ease-out-expo);
    z-index: 1000;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1rem;
    letter-spacing: 3px;
  }

  /* Sections */
  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }

  .hero-subtitle br {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-text {
    padding-right: 0;
  }

  .about-stats {
    flex-wrap: wrap;
    gap: 24px;
  }

  .stat-divider {
    display: none;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }

  .gallery-large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery-wide {
    grid-column: span 2;
  }

  .gallery-overlay {
    padding: 20px;
  }

  .gallery-caption {
    font-size: 1rem;
  }

  .review-card {
    min-width: 280px;
    max-width: 320px;
    padding: 32px 28px;
  }

  .carousel-arrow {
    width: 40px;
    height: 40px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-map {
    min-height: 300px;
  }

  .contact-map iframe {
    min-height: 300px !important;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 16px 24px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
    gap: 10px;
  }

  .gallery-large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery-wide {
    grid-column: span 2;
  }

  .gallery-overlay {
    opacity: 1;
    background: linear-gradient(
      to top,
      rgba(26, 51, 40, 0.7) 0%,
      transparent 50%
    );
    padding: 12px;
  }

  .gallery-caption {
    font-size: 0.8rem;
    transform: translateY(0);
  }

  .about-stats {
    flex-direction: column;
    align-items: flex-start;
  }
}
