* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1a1a1a;
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===================== ANIMATIONS ===================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes slideRight {
  from { width: 0; }
  to { width: 40px; }
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(3deg); }
}

@keyframes float2 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(-2deg); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}

@keyframes scrollDown {
  0% { transform: translateY(0); opacity: 0; }
  30% { opacity: 1; }
  60% { opacity: 1; }
  100% { transform: translateY(24px); opacity: 0; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.animate-fade-up {
  animation: fadeUp 0.8s ease-out both;
}

.animate-fade-down {
  animation: fadeDown 0.6s ease-out both;
}

.animate-fade-up-delay {
  animation: fadeUp 0.8s ease-out 0.2s both;
}

.animate-fade-up-delay2 {
  animation: fadeUp 0.8s ease-out 0.4s both;
}

.animate-fade-up-delay3 {
  animation: fadeUp 0.8s ease-out 0.6s both;
}

/* Scroll-triggered fade-in */
.fade-in-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== HEADER ===================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.97);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  transition: transform 0.3s;
}

.logo:hover {
  transform: scale(1.03);
}

.logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 6px;
  color: #1a1a1a;
}

.logo-sub {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 4px;
  color: #888;
  margin-top: 2px;
}

.nav {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #555;
  transition: color 0.3s;
  text-transform: uppercase;
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #1a1a1a;
  transition: width 0.3s ease;
}

.nav a:hover {
  color: #1a1a1a;
}

.nav a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1a1a1a;
  margin: 5px 0;
  transition: 0.3s;
}

/* ===================== HERO ===================== */
.hero {
  padding-top: 72px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  display: none;
}

.hero.hero-with-bg {
  background: #111;
}

.hero.hero-with-bg .hero-overlay {
  display: block;
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 0;
}

.hero.hero-with-bg .hero-badge {
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
}

.hero.hero-with-bg .hero-title {
  color: #fff;
}

.hero.hero-with-bg .hero-title span {
  color: rgba(255,255,255,0.5);
}

.hero.hero-with-bg .hero-desc {
  color: rgba(255,255,255,0.7);
}

.hero.hero-with-bg .btn-primary {
  background: #fff;
  color: #1a1a1a;
}

.hero.hero-with-bg .btn-primary:hover {
  box-shadow: 0 8px 30px rgba(255,255,255,0.2);
}

.hero.hero-with-bg .btn-secondary {
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}

.hero.hero-with-bg .btn-secondary:hover {
  border-color: #fff;
  box-shadow: 0 8px 25px rgba(255,255,255,0.1);
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 28px;
  padding: 10px 20px;
  border: 1px solid #e0e0e0;
  border-radius: 100px;
  background: rgba(250, 250, 250, 0.8);
  backdrop-filter: blur(4px);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 7vw, 80px);
  font-weight: 700;
  line-height: 1.08;
  color: #1a1a1a;
  margin-bottom: 28px;
}

.hero-title span {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: clamp(13px, 1.8vw, 16px);
  font-weight: 400;
  letter-spacing: 3px;
  color: #aaa;
  margin-top: 20px;
  text-transform: uppercase;
}

.hero-desc {
  font-size: 18px;
  color: #777;
  max-width: 500px;
  margin-bottom: 44px;
  line-height: 1.8;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: #1a1a1a;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
  background: #444;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 40px;
  background: transparent;
  color: #1a1a1a;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1.5px solid #ddd;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary:hover {
  border-color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* ===================== SECTIONS ===================== */
.section {
  padding: 120px 0;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #bbb;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-desc {
  font-size: 16px;
  color: #888;
  max-width: 520px;
  line-height: 1.8;
  font-weight: 300;
}

/* ===================== PRODUCTS ===================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.product-card {
  background: #fafafa;
  padding: 52px 36px 44px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #1a1a1a;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover {
  background: #fff;
  border-color: #f0f0f0;
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.product-card:hover::before {
  width: 60px;
}

.product-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 16px;
  transition: all 0.4s;
  border: 1px solid #f0f0f0;
}

.product-card:hover .product-icon {
  background: #1a1a1a;
  border-color: #1a1a1a;
  transform: scale(1.05);
}

.product-card:hover .product-icon svg {
  stroke: #fff;
}

.product-icon svg {
  width: 28px;
  height: 28px;
  stroke: #1a1a1a;
  stroke-width: 1.5;
  fill: none;
  transition: stroke 0.4s;
}

.product-card h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.product-card p {
  font-size: 14px;
  color: #999;
  line-height: 1.7;
  font-weight: 300;
}

.product-card-line {
  width: 0;
  height: 1px;
  background: #e0e0e0;
  margin: 24px auto 0;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-card-line {
  width: 40px;
}

/* ===================== GALLERY ===================== */
.gallery-section {
  background: #f8f8f8;
}

.gallery-header {
  text-align: center;
  margin-bottom: 64px;
}

.gallery-header .section-desc {
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #e8e8e8;
  cursor: pointer;
  border-radius: 4px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 40%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 24px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay-text {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
}

.gallery-zoom-icon {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease 0.1s;
}

.gallery-item:hover .gallery-zoom-icon {
  opacity: 1;
  transform: scale(1);
}

.gallery-loading,
.gallery-error {
  text-align: center;
  padding: 80px 0;
  color: #999;
  font-size: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.loading-spinner {
  width: 32px;
  height: 32px;
  border: 2px solid #eee;
  border-top-color: #1a1a1a;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.gallery-toggle {
  text-align: center;
  margin-top: 48px;
}

.gallery-toggle .btn-secondary {
  margin: 0 auto;
}

/* ===================== GALLERY PAGE ===================== */
.gallery-page {
  min-height: 100vh;
  background: #fafafa;
}

.gallery-page-hero {
  position: relative;
  height: 50vh;
  min-height: 360px;
  padding-top: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #222;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.gallery-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.7) 100%);
}

.gallery-page-hero-content {
  position: relative;
  z-index: 1;
  padding: 0 24px;
}

.gallery-page-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.gallery-page-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.1;
}

.gallery-page-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  letter-spacing: 1px;
  max-width: 400px;
  margin: 0 auto;
}

.gallery-page-count {
  display: inline-block;
  margin-top: 24px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 8px 20px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
}

.gallery-page-body {
  padding: 48px 0 80px;
}

/* Masonry-style grid */
.gallery-masonry {
  columns: 3;
  column-gap: 16px;
}

.gallery-masonry > * {
  break-inside: avoid;
  margin-bottom: 16px;
}

.gallery-masonry-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  background: #e8e8e8;
}

.gallery-masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-masonry-item:hover img {
  transform: scale(1.05);
}

.gallery-masonry-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-masonry-item:hover .gallery-masonry-overlay {
  opacity: 1;
}

/* ===================== ABOUT ===================== */
.about-section {
  background: #fff;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text p {
  font-size: 16px;
  color: #777;
  line-height: 1.9;
  margin-top: 20px;
  font-weight: 300;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stat-item {
  text-align: center;
  padding: 44px 24px;
  border: 1px solid #f0f0f0;
  background: #fafafa;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.stat-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #1a1a1a;
  transition: width 0.4s;
}

.stat-item:hover {
  border-color: #e8e8e8;
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
}

.stat-item:hover::after {
  width: 40px;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #bbb;
}

/* ===================== CONTACT ===================== */
.contact-section {
  background: #f8f8f8;
}

.contact-center {
  text-align: center;
}

.contact-center .section-desc {
  margin: 0 auto 48px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-card {
  background: #fff;
  padding: 48px 32px;
  text-align: center;
  border: 1px solid #f0f0f0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: default;
}

a.contact-card {
  cursor: pointer;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
  border-color: transparent;
}

.contact-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f8f8;
  border-radius: 50%;
  margin-bottom: 8px;
  transition: all 0.4s;
}

.contact-card:hover .contact-card-icon {
  background: #1a1a1a;
}

.contact-card:hover .contact-card-icon svg {
  stroke: #fff;
}

.contact-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: #1a1a1a;
  stroke-width: 1.5;
  fill: none;
  transition: stroke 0.4s;
}

.contact-card h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #bbb;
}

.contact-card-value {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: #1a1a1a;
}

.contact-card-cta {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #999;
  text-transform: uppercase;
  padding-top: 8px;
  border-top: 1px solid #f0f0f0;
  width: 100%;
}

/* ===================== FOOTER ===================== */
.footer {
  background: #111;
  color: #fff;
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .logo-main {
  color: #fff;
}

.footer-brand .logo-sub {
  color: #555;
}

.footer-brand p {
  color: #666;
  font-size: 14px;
  line-height: 1.9;
  margin-top: 20px;
  max-width: 360px;
  font-weight: 300;
}

.footer h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a,
.footer-links span {
  font-size: 14px;
  color: #666;
  transition: all 0.3s;
  font-weight: 300;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 32px;
  text-align: center;
  font-size: 12px;
  color: #555;
  letter-spacing: 1px;
}

/* ===================== LIGHTBOX ===================== */
@keyframes lightboxFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes lightboxSlideLeft {
  0% { opacity: 1; transform: translateX(0) scale(1); }
  100% { opacity: 0; transform: translateX(-60px) scale(0.95); }
}

@keyframes lightboxSlideRight {
  0% { opacity: 1; transform: translateX(0) scale(1); }
  100% { opacity: 0; transform: translateX(60px) scale(0.95); }
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.96);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  cursor: pointer;
  animation: lightboxFadeIn 0.3s ease-out;
}

.lightbox-img-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 90vw;
  max-height: 85vh;
  cursor: default;
}

.lightbox-img-wrapper img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  animation: scaleIn 0.4s ease-out;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.lightbox-anim-left img {
  animation: lightboxSlideLeft 0.25s ease-out forwards;
}

.lightbox-anim-right img {
  animation: lightboxSlideRight 0.25s ease-out forwards;
}

.lightbox-anim-none img {
  animation: scaleIn 0.3s ease-out;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.18);
  transform: rotate(90deg);
  border-color: rgba(255,255,255,0.2);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox-nav:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-nav.prev {
  left: 24px;
}

.lightbox-nav.prev:hover {
  transform: translateY(-50%) scale(1.1) translateX(-3px);
}

.lightbox-nav.next {
  right: 24px;
}

.lightbox-nav.next:hover {
  transform: translateY(-50%) scale(1.1) translateX(3px);
}

.lightbox-counter {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  letter-spacing: 4px;
  font-weight: 300;
  padding: 8px 20px;
  background: rgba(255,255,255,0.05);
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* ===================== FIXED SOCIAL ICONS ===================== */
.social-fixed {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-fixed-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.social-fixed-btn:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

.social-whatsapp {
  background: #25D366;
}

.social-whatsapp:hover {
  background: #1ebe5d;
}

.social-instagram {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-instagram:hover {
  background: linear-gradient(135deg, #e6683c, #dc2743, #cc2366, #bc1888, #f09433);
}

/* Footer social icons */
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  color: #888;
  transition: all 0.3s;
}

.footer-socials a:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
  transform: translateY(-2px);
}

/* ===================== MOBILE NAV ===================== */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #1a1a1a;
  transition: color 0.3s;
}

.mobile-nav a:hover {
  color: #888;
}

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: #1a1a1a;
  line-height: 1;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 968px) {
  .nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-title {
    font-size: clamp(34px, 6vw, 56px);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-masonry {
    columns: 2;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-masonry {
    columns: 1;
  }

  .gallery-page-hero {
    height: 40vh;
    min-height: 280px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 80px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 80px;
  }

  .lightbox-nav {
    width: 44px;
    height: 44px;
  }

  .lightbox-nav.prev {
    left: 12px;
  }

  .lightbox-nav.next {
    right: 12px;
  }

  .lightbox-nav svg {
    width: 20px;
    height: 20px;
  }
}
