/* ABEBE MULUGETA — Premium Coffee Export Brand */
:root {
  --green-dark: #013220;
  --green-mid: #024a35;
  --green-light: #0a5c42;
  --gold: #D4AF37;
  --gold-light: #e8c96a;
  --gold-dark: #b8942e;
  --cream: #f8f5ef;
  --text-light: rgba(255, 255, 255, 0.92);
  --text-muted: rgba(255, 255, 255, 0.65);
  --glass: rgba(1, 50, 32, 0.55);
  --glass-border: rgba(212, 175, 55, 0.25);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius: 16px;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Outfit', system-ui, sans-serif;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font-sans);
  background: var(--green-dark);
  color: var(--text-light);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, .section-title, .hero-title {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: 0.02em;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 9999;
  padding: 0.5rem 1rem;
  background: var(--gold);
  color: var(--green-dark);
}
.skip-link:focus { top: 1rem; }

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.site-header.scrolled {
  background: rgba(1, 50, 32, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid var(--glass-border);
}

.navbar { padding: 0.75rem 0; }

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gold) !important;
}

.brand-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.nav-link {
  color: var(--text-light) !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 1rem !important;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition), left var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 60%;
  left: 20%;
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--green-dark) !important;
  border-radius: 50px;
  padding: 0.5rem 1.25rem !important;
  margin-left: 0.5rem;
}

.nav-cta::after { display: none; }
.nav-cta:hover { color: var(--green-dark) !important; opacity: 0.9; }

.navbar-toggler {
  border-color: var(--gold);
  padding: 0.35rem 0.6rem;
}

.navbar-toggler-icon {
  filter: invert(1) sepia(1) saturate(5) hue-rotate(5deg);
}

@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(1, 50, 32, 0.98);
    margin-top: 1rem;
    padding: 1rem;
    border-radius: var(--radius);
    border: 1px solid var(--glass-border);
  }
  .nav-cta { margin: 0.5rem 0 0; display: inline-block; }
}

/* Buttons */
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--green-dark);
  border: none;
  padding: 0.85rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-gold:hover {
  color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.35);
}

.btn-outline-gold {
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  background: transparent;
  transition: all var(--transition);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--green-dark);
}

/* Glass card */
.glass-card {
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(1, 50, 32, 0.92) 0%,
    rgba(1, 50, 32, 0.75) 45%,
    rgba(1, 50, 32, 0.88) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-logo {
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.4));
}

.hero-eyebrow {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  line-height: 1.15;
  margin-bottom: 1rem;
  color: #fff;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-stats { padding: 1.75rem; }

.stat-item { padding: 0.5rem; }

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold);
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
  z-index: 2;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Sections */
.section {
  padding: 6rem 0;
  position: relative;
}

.section:nth-child(even) {
  background: linear-gradient(180deg, transparent, rgba(2, 74, 53, 0.35), transparent);
}

.section-tag {
  display: inline-block;
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  color: #fff;
}

.section-lead {
  max-width: 640px;
  margin: 0 auto 3rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* About */
.about-collage {
  position: relative;
  min-height: 420px;
}

.collage-main {
  width: 75%;
  border-radius: var(--radius);
  border: 2px solid var(--gold);
  box-shadow: var(--shadow);
}

.collage-secondary {
  position: absolute;
  right: 0;
  top: 15%;
  width: 45%;
  border-radius: var(--radius);
  border: 2px solid var(--glass-border);
  box-shadow: var(--shadow);
}

.collage-accent {
  position: absolute;
  left: 10%;
  bottom: 0;
  width: 40%;
  border-radius: var(--radius);
  border: 2px solid var(--gold);
}

.about-content { padding: 2rem; }

.about-highlights {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.about-highlights li {
  padding: 0.4rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.about-highlights i { color: var(--gold); flex-shrink: 0; margin-top: 0.2rem; }

/* Feature cards */
.feature-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  height: 100%;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--gold);
  font-size: 1.5rem;
  color: var(--gold);
}

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--gold);
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* Product cards */
.product-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4);
  border-color: var(--gold);
}

.product-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-card-img img {
  transform: scale(1.08);
}

.product-card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: var(--green-dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  letter-spacing: 0.05em;
}

.product-card-body { padding: 1.5rem; }

.product-card-body h3 {
  font-size: 1.35rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.product-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.product-card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.product-card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), transparent);
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
  padding-left: 2rem;
}

.timeline-marker {
  position: absolute;
  left: -2rem;
  top: 1.25rem;
  width: 40px;
  height: 40px;
  transform: translateX(-50%);
  background: var(--green-dark);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  z-index: 1;
}

.timeline-content { padding: 1.5rem 2rem; }

.timeline-content h3 {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.facility-stat { padding: 1.5rem; }

.facility-stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 700;
}

.facility-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.rounded-facility {
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
}

/* World map */
.world-map-wrap { padding: 2rem; overflow: hidden; }

.world-map { width: 100%; height: auto; }

.map-land { fill: var(--gold); }

.map-marker {
  cursor: pointer;
  animation: pulse 2s ease-in-out infinite;
}

.map-marker circle {
  fill: url(#glow);
  stroke: var(--gold);
  stroke-width: 1;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.country-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.country-tag {
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--glass-border);
  color: var(--gold);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  font-size: 0.85rem;
  transition: background var(--transition);
}

.country-tag:hover { background: rgba(212, 175, 55, 0.3); }

.export-countries { padding: 2rem; }

.export-countries h3 {
  color: var(--gold);
  margin-bottom: 1rem;
}

.export-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.export-metric-val {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 700;
  display: block;
}

.export-metric-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* Cert cards */
.cert-card {
  padding: 2rem;
  text-align: center;
  height: 100%;
  transition: transform var(--transition), border-color var(--transition);
}

.cert-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}

.cert-card i {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.cert-card h3 {
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.cert-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* Premium Gallery */
.section-gallery {
  background: linear-gradient(180deg, rgba(2, 74, 53, 0.2) 0%, transparent 50%, rgba(2, 74, 53, 0.15) 100%);
}

.premium-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 1140px;
  margin: 0 auto;
}

@media (min-width: 576px) {
  .premium-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.35rem;
  }
}

@media (min-width: 992px) {
  .premium-gallery {
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
  }

  .gallery-card:nth-child(1) { grid-column: span 7; }
  .gallery-card:nth-child(2) { grid-column: span 5; }
  .gallery-card:nth-child(3) { grid-column: span 4; }
  .gallery-card:nth-child(4) { grid-column: span 4; }
  .gallery-card:nth-child(5) { grid-column: span 4; }
  .gallery-card:nth-child(6) { grid-column: span 6; }
  .gallery-card:nth-child(7) { grid-column: span 6; }
}

.gallery-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--glass-border);
  background: rgba(1, 50, 32, 0.4);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  min-height: 220px;
}

.gallery-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(212, 175, 55, 0.15);
}

.gallery-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.gallery-card-media {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 220px;
  overflow: hidden;
}

@media (min-width: 992px) {
  .gallery-card:nth-child(1) .gallery-card-media,
  .gallery-card:nth-child(2) .gallery-card-media {
    min-height: 300px;
  }
}

.gallery-card-media img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.gallery-card:hover .gallery-card-media img {
  transform: scale(1.08);
}

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.35rem 1.5rem;
  background: linear-gradient(
    180deg,
    rgba(1, 50, 32, 0) 35%,
    rgba(1, 50, 32, 0.75) 75%,
    rgba(1, 50, 32, 0.95) 100%
  );
  opacity: 0.85;
  transition: opacity var(--transition), background var(--transition);
}

.gallery-card:hover .gallery-card-overlay {
  opacity: 1;
  background: linear-gradient(
    180deg,
    rgba(1, 50, 32, 0.15) 0%,
    rgba(1, 50, 32, 0.85) 60%,
    rgba(1, 50, 32, 0.98) 100%
  );
}

.gallery-card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.gallery-card-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: #fff;
  margin: 0;
  line-height: 1.3;
}

.gallery-card-zoom {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
}

.gallery-card:hover .gallery-card-zoom {
  opacity: 1;
  transform: scale(1);
}

.gallery-card:hover .gallery-card-zoom {
  background: var(--gold);
  color: var(--green-dark);
}

/* Testimonials */
.testimonial-slider { padding: 2.5rem; overflow: hidden; }

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 1rem;
  text-align: center;
}

.testimonial-slide blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #fff;
}

.testimonial-author {
  color: var(--gold);
  font-weight: 600;
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.testimonial-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.testimonial-btn:hover {
  background: var(--gold);
  color: var(--green-dark);
}

.testimonial-dots {
  display: flex;
  gap: 0.5rem;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.25);
  padding: 0;
  cursor: pointer;
  transition: background var(--transition);
}

.testimonial-dot.active { background: var(--gold); }

/* Contact */
.contact-info { padding: 2rem; }

.contact-info h3 {
  color: var(--gold);
  font-size: 1.5rem;
}

.contact-info p {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.contact-info i { color: var(--gold); }

.contact-form { padding: 2rem; }

.contact-form .form-label {
  color: var(--gold);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-form .form-control {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--glass-border);
  color: #fff;
  border-radius: 8px;
  padding: 0.75rem 1rem;
}

.contact-form .form-control:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold);
  color: #fff;
  box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.2);
}

.form-feedback { font-size: 0.9rem; }
.form-feedback.success { color: #7dcea0; }
.form-feedback.error { color: #e74c3c; }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.map-wrap iframe { display: block; filter: grayscale(30%) contrast(1.1); }

.contact-social a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  margin-right: 0.5rem;
  font-size: 1.1rem;
  transition: all var(--transition);
}

.contact-social a:hover {
  background: var(--gold);
  color: var(--green-dark);
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, var(--green-mid), #001a10);
  border-top: 2px solid var(--gold-dark);
  padding: 4rem 0 0;
}

.footer-logo { margin-bottom: 1rem; }

.footer-about {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 280px;
}

.site-footer h4 {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li { margin-bottom: 0.4rem; }

.footer-links a,
.footer-contact a { color: var(--text-muted); font-size: 0.9rem; }
.footer-links a:hover { color: var(--gold); }

.footer-social {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  color: var(--gold);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--green-dark);
}

.footer-bottom {
  margin-top: 3rem;
  padding: 1.5rem 0 2rem;
  border-top: 1px solid var(--glass-border);
}

.footer-copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-copyright-text {
  flex: 1;
  min-width: 240px;
}

.footer-copyright-text p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.7;
  text-align: left;
}

.footer-copyright-text a {
  color: var(--gold);
  font-weight: 500;
  transition: color var(--transition);
}

.footer-copyright-text a:hover {
  color: var(--gold-light);
}

.footer-copyright-logo {
  flex-shrink: 0;
}

.footer-copyright-logo a {
  display: inline-block;
  opacity: 0.95;
  transition: opacity var(--transition), transform var(--transition);
}

.footer-copyright-logo a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.footer-copyright-logo img {
  display: block;
  width: 120px;
  height: auto;
  filter: brightness(1.05);
}

@media (max-width: 575px) {
  .footer-copyright {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-copyright-logo {
    align-self: flex-end;
  }
}

/* Floating actions */
.floating-actions {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1020;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: transform var(--transition);
}

.float-btn:hover {
  transform: scale(1.1);
  color: #fff;
}

.float-btn.whatsapp { background: #25d366; }
.float-btn.email { background: var(--gold); color: var(--green-dark); }
.float-btn.contact { background: var(--green-light); border: 1px solid var(--gold); }

/* Modal */
.modal-content {
  background: var(--green-dark);
  border: 1px solid var(--glass-border);
  color: var(--text-light);
}

.modal-title { color: var(--gold); font-family: var(--font-serif); }

.modal-product-img {
  border-radius: var(--radius);
  margin-bottom: 1rem;
  border: 1px solid var(--glass-border);
}

.modal-detail-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.95rem;
}

.modal-detail-row span:first-child { color: var(--text-muted); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(1, 20, 14, 0.94);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.lightbox[hidden] { display: none; }

.lightbox-stage {
  position: relative;
  max-width: min(960px, 92vw);
  width: 100%;
  text-align: center;
}

.lightbox-stage img {
  max-height: 72vh;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  border: 2px solid var(--gold);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  margin-top: 1.25rem;
  padding: 0 1rem;
}

.lightbox-caption-tag {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.lightbox-caption-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: #fff;
  margin: 0 0 0.5rem;
}

.lightbox-counter {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

.lightbox-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 2001;
  background: transparent;
  border: none;
  color: var(--gold);
  font-size: 1.5rem;
  cursor: pointer;
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2001;
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid var(--gold);
  color: var(--gold);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
}

.lightbox-nav:hover { background: var(--gold); color: var(--green-dark); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

/* Reveal animations — content visible by default; GSAP enhances when available */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 1;
  transform: none;
}

/* Before JS runs, everything stays visible */
html:not(.js-ready) .reveal-up,
html:not(.js-ready) .reveal-left,
html:not(.js-ready) .reveal-right {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .scroll-indicator { animation: none; }
  .map-marker { animation: none; }
}
