/* ============================================
   MEMORIES EVENTS — Main Stylesheet
   Theme: Dark luxury with red accents
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&family=Syne:wght@700;800&display=swap');

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --bg:              #060608;
  --surface:         #0d0d12;
  --surface-2:       #14141c;
  --surface-3:       #1c1c28;
  --red:             #c0392b;
  --red-light:       #e74c3c;
  --red-dark:        #96281b;
  --red-glow:        rgba(192, 57, 43, 0.25);
  --red-glow-soft:   rgba(192, 57, 43, 0.08);
  --gold:            #d4af6a;
  --text:            #f0f0f5;
  --text-muted:      #8888a0;
  --text-dim:        #555566;
  --border:          rgba(255,255,255,0.07);
  --border-red:      rgba(192,57,43,0.35);
  --glass:           rgba(13,13,18,0.75);
  --transition:      all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  --radius-sm:       8px;
  --radius-md:       16px;
  --radius-lg:       24px;
  --radius-xl:       40px;
}

/* ============================================================
   RESETS
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--red-dark); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--red); }

/* Selection */
::selection { background: var(--red); color: #fff; }

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

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-tag {
  display: inline-block;
  font-family: 'Syne', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 1.2rem;
}

.section-title {
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  line-height: 1.12;
  margin-bottom: 1.5rem;
}

.text-red { color: var(--red-light); }
.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
}

.section-header.center { text-align: center; margin-bottom: 4rem; }
.section-header.center .section-desc { margin: 0 auto; }

/* ============================================================
   CONTAINER
   ============================================================ */
.container { max-width: 1280px; width: 92%; margin: 0 auto; }

/* ============================================================
   GLOBAL BACKGROUND LAYER
   ============================================================ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 0% 0%, rgba(192,57,43,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(192,57,43,0.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
}

/* ============================================================
   CURSOR GLOW
   ============================================================ */
#cursor-glow {
  position: fixed;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(192,57,43,0.05) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  opacity: 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 2.2rem;
  background: var(--red);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  box-shadow: 0 8px 30px var(--red-glow);
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--red-light);
  transform: translateY(-4px);
  box-shadow: 0 16px 50px var(--red-glow);
}

.btn-primary i { font-size: 0.85rem; transition: transform 0.3s ease; }
.btn-primary:hover i { transform: translateX(4px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.2rem;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  backdrop-filter: blur(10px);
}
.btn-outline:hover {
  border-color: var(--red);
  color: var(--red-light);
  background: var(--red-glow-soft);
  transform: translateY(-4px);
}

.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.6rem 0;
  transition: var(--transition);
}

.nav-active {
  background: rgba(6,6,8,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.logo-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
  transition: var(--transition);
}
.logo-dot { color: var(--red-light); }
.logo-link:hover { color: var(--red-light); }

/* Nav items */
.nav-items .overview {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  position: relative;
  transition: color 0.3s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--red-light);
  transition: width 0.35s ease;
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after { width: 100%; }

/* Nav CTA */
.nav-cta {
  padding: 0.65rem 1.5rem;
  background: var(--red);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--red-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--red-glow);
}

/* Mobile toggle */
.mobile-toggle {
  display: none;
  font-size: 1.4rem;
  color: var(--text);
  cursor: pointer;
  z-index: 1001;
}

@media (max-width: 900px) {
  .mobile-toggle { display: block; }
  .nav-cta { display: none; }

  .nav-items {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: var(--surface);
    border-left: 1px solid var(--border);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: right 0.5s cubic-bezier(0.16,1,0.3,1);
    z-index: 999;
  }
  .nav-items.active { right: 0; }
  .nav-items .overview { flex-direction: column; gap: 2.5rem; }
  .nav-link { font-size: 1.1rem; }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-sec {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Background slider */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.slide-2 { background-color: #1a0a08; background-image: linear-gradient(135deg, #1a0a08 0%, #2d0f0a 100%); }
.slide-3 { background-color: #0a0a1a; background-image: linear-gradient(135deg, #0a0a1a 0%, #0f0f2d 100%); }
.slide-4 { background-color: #0a1a0a; background-image: linear-gradient(135deg, #0a1a0a 0%, #0f2d0f 100%); }

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(6,6,8,0.92) 0%, rgba(6,6,8,0.55) 60%, rgba(6,6,8,0.3) 100%),
    linear-gradient(to top, rgba(6,6,8,0.9) 0%, transparent 50%);
  z-index: 1;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 8rem 0 5rem;
  max-width: 750px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.2rem;
  background: rgba(192,57,43,0.12);
  border: 1px solid var(--border-red);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 2rem;
}
.hero-badge i { font-size: 0.65rem; }

.hero-content h1 {
  font-size: clamp(4.5rem, 9vw, 9rem);
  font-weight: 700;
  line-height: 0.95;
  margin-bottom: 1.5rem;
  letter-spacing: -0.04em;
}

.hero-highlight {
  color: var(--red-light);
  font-style: italic;
  position: relative;
  display: inline-block;
}

.hero-tagline {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 2.5rem;
  letter-spacing: 0.05em;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.8rem 2.5rem;
  background: rgba(13,13,18,0.6);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  width: fit-content;
}

.stat-item { text-align: center; }
.stat-item .stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--red-light);
  line-height: 1;
}
.stat-item .stat-suffix {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  color: var(--red-light);
}
.stat-item .stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-top: 0.3rem;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--border);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  right: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
.scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  writing-mode: vertical-rl;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* Hero Swiper pagination */
.hero-pagination {
  position: absolute !important;
  bottom: 2.5rem !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 2 !important;
}

@media (max-width: 768px) {
  .hero-content h1 { font-size: clamp(3.5rem, 12vw, 5rem); }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; padding: 1.5rem; }
  .stat-divider { display: none; }
  .scroll-indicator { display: none; }
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-sec {
  padding: 10rem 0;
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

/* Visual */
.about-visual { position: relative; }

.about-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  max-width: 480px;
}
.about-img-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.about-img-frame:hover img { transform: scale(1.05); }

.about-img-accent {
  position: absolute;
  inset: -12px;
  border: 1.5px solid var(--border-red);
  border-radius: calc(var(--radius-lg) + 8px);
  opacity: 0.4;
  pointer-events: none;
  transition: var(--transition);
}
.about-img-frame:hover + .about-img-accent { opacity: 0.7; }

.about-float-card {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.8rem;
  background: var(--surface-2);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.about-float-card i {
  font-size: 1.8rem;
  color: var(--gold);
}
.about-float-card strong { display: block; font-size: 0.95rem; }
.about-float-card span { color: var(--text-muted); font-size: 0.8rem; }

/* Content */
.about-content p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2.5rem 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.2rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--transition);
}
.feature-item:hover {
  border-color: var(--border-red);
  background: var(--surface-3);
  transform: translateX(4px);
}
.feature-icon {
  width: 36px; height: 36px;
  background: var(--red-glow-soft);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red-light);
  font-size: 0.9rem;
  flex-shrink: 0;
}

@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; gap: 5rem; }
  .about-img-frame { max-width: 100%; aspect-ratio: 16/9; }
  .about-float-card { right: 1rem; }
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-sec {
  padding: 10rem 0;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

.services-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(192,57,43,0.04) 0%, transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(192,57,43,0.03) 0%, transparent 40%);
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  position: relative;
  padding: 2.5rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
  overflow: hidden;
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--red-glow-soft) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.service-card:hover {
  border-color: var(--border-red);
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.service-card:hover::before { opacity: 1; }

.service-card.featured {
  border-color: var(--border-red);
  background: linear-gradient(135deg, rgba(192,57,43,0.08), var(--surface-2));
}

.service-number {
  font-family: 'Syne', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: color 0.3s ease;
}
.service-card:hover .service-number { color: var(--red-glow); }

.service-icon-wrap {
  width: 52px; height: 52px;
  background: var(--red-glow-soft);
  border: 1px solid var(--border-red);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red-light);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}
.service-card:hover .service-icon-wrap {
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 25px var(--red-glow);
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.8rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

.service-line {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(to right, var(--red), transparent);
  transition: width 0.5s ease;
}
.service-card:hover .service-line { width: 100%; }

@media (max-width: 960px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.gallery-sec {
  padding: 10rem 0;
  position: relative;
}

.gallery-tabs {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}

.tab-btn {
  padding: 0.6rem 1.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--text-muted);
  background: transparent;
  transition: var(--transition);
}
.tab-btn:hover, .tab-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  box-shadow: 0 5px 20px var(--red-glow);
}

/* ---- Photo Grid ---- */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 12px;
}

.photo-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  background: var(--surface-2);
}

.photo-item.photo-wide  { grid-column: span 2; }
.photo-item.photo-tall  { grid-row: span 2; }

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.photo-item:hover img { transform: scale(1.1); }

/* Overlay */
.photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,6,8,0.96) 0%, rgba(6,6,8,0.35) 55%, transparent 100%);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.photo-item:hover .photo-overlay { opacity: 1; }

.photo-overlay h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: #fff;
  line-height: 1.2;
}
.photo-overlay p {
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.4;
}

/* Zoom icon */
.photo-zoom {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 38px;
  height: 38px;
  background: rgba(192,57,43,0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.85rem;
  opacity: 0;
  transform: scale(0.6);
  transition: all 0.35s ease;
}
.photo-item:hover .photo-zoom {
  opacity: 1;
  transform: scale(1);
}

/* Hidden state for filter */
.photo-item.hidden { display: none; }

/* gallery-tag used inside photo-overlay */
.gallery-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-light);
  background: rgba(192,57,43,0.18);
  border: 1px solid var(--border-red);
  border-radius: 50px;
  padding: 0.2rem 0.75rem;
  margin-bottom: 0.5rem;
  width: fit-content;
}

/* ---- Lightbox ---- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4,4,6,0.95);
  backdrop-filter: blur(12px);
  cursor: pointer;
}

.lightbox-container {
  position: relative;
  z-index: 1;
  width: 92vw;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.lightbox-img-wrap {
  width: 100%;
  max-height: 72vh;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
}
.lightbox-img-wrap img {
  width: 100%;
  height: 100%;
  max-height: 72vh;
  object-fit: contain;
  display: block;
  border-radius: var(--radius-lg);
  transition: opacity 0.25s ease;
}

.lightbox-caption { text-align: center; padding: 0 2rem; }
.lightbox-caption h3 { font-size: 1.5rem; color: #fff; margin-bottom: 0.3rem; }
.lightbox-caption p { color: var(--text-muted); font-size: 0.88rem; }
.lightbox-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-light);
  background: rgba(192,57,43,0.18);
  border: 1px solid var(--border-red);
  border-radius: 50px;
  padding: 0.2rem 0.8rem;
  margin-bottom: 0.6rem;
}

.lightbox-counter {
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
}

.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
  z-index: 2;
}
.lightbox-close { top: -3rem; right: 0; width: 44px; height: 44px; font-size: 1.1rem; }
.lightbox-prev  { left: -4rem; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 1rem; }
.lightbox-next  { right: -4rem; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 1rem; }

.lightbox-close:hover { background: var(--red); border-color: var(--red); }
.lightbox-prev:hover  { background: var(--red); border-color: var(--red); transform: translateY(-50%) scale(1.08); }
.lightbox-next:hover  { background: var(--red); border-color: var(--red); transform: translateY(-50%) scale(1.08); }

/* Gallery responsive */
@media (max-width: 1024px) {
  .photo-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 220px; }
}
@media (max-width: 700px) {
  .photo-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; gap: 8px; }
  .photo-item.photo-wide { grid-column: span 2; }
  .photo-item.photo-tall { grid-row: span 1; }
  .lightbox-prev { left: -0.5rem; }
  .lightbox-next { right: -0.5rem; }
}
@media (max-width: 480px) {
  .photo-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .photo-item.photo-wide { grid-column: span 1; }
}

/* Swiper pagination */
.swiper-pagination-bullet {
  background: var(--text-dim) !important;
  opacity: 1 !important;
  width: 8px !important; height: 8px !important;
  transition: all 0.3s ease !important;
}
.swiper-pagination-bullet-active {
  background: var(--red-light) !important;
  width: 24px !important;
  border-radius: 4px !important;
}

/* ============================================================
   WHY US SECTION
   ============================================================ */
.why-sec {
  padding: 10rem 0;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.why-content p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.why-list { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
}
.why-item:last-child { border-bottom: none; }

.why-check {
  width: 28px; height: 28px; flex-shrink: 0;
  background: var(--red-glow-soft);
  border: 1px solid var(--border-red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--red-light);
  font-size: 0.7rem;
}

/* Visual cards */
.why-visual { position: relative; }

.why-card-stack { position: relative; }

.why-big-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5/6;
  position: relative;
}
.why-big-card img { width: 100%; height: 100%; object-fit: cover; }

.why-card-label {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.8rem 1.4rem;
  background: rgba(6,6,8,0.8);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-red);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--red-light);
}

.why-small-card {
  position: absolute;
  top: 2rem;
  right: -2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.6rem;
  background: var(--surface-2);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.why-small-card i {
  font-size: 1.8rem;
  color: var(--red-light);
}
.why-small-card strong { display: block; font-size: 1.3rem; color: var(--text); }
.why-small-card span { color: var(--text-muted); font-size: 0.78rem; }

@media (max-width: 960px) {
  .why-grid { grid-template-columns: 1fr; gap: 4rem; }
  .why-small-card { right: 1rem; }
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials-sec {
  padding: 10rem 0;
  position: relative;
}

.testimonials-swiper { padding-bottom: 60px !important; }

.testimonial-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  margin: 0 0.5rem;
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover {
  border-color: var(--border-red);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.testimonial-quote {
  font-size: 2.5rem;
  color: var(--red);
  opacity: 0.4;
  margin-bottom: 1.2rem;
  line-height: 1;
}

.testimonial-card > p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.testimonial-author strong { display: block; font-size: 0.95rem; }
.testimonial-author > div:nth-child(2) span { color: var(--text-muted); font-size: 0.8rem; }

.stars {
  margin-left: auto;
  color: var(--gold);
  font-size: 0.85rem;
  display: flex;
  gap: 2px;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-sec {
  padding: 10rem 0;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

.contact-sec::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--border-red), transparent);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
}

.contact-info p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.contact-items { display: flex; flex-direction: column; gap: 1.2rem; margin-bottom: 2.5rem; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem 1.5rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.contact-item:hover {
  border-color: var(--border-red);
  background: var(--surface-3);
  transform: translateX(6px);
}

.contact-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--red-glow-soft);
  border: 1px solid var(--border-red);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red-light);
  font-size: 1.1rem;
}

.contact-text span { display: block; font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.2rem; }
.contact-text strong { font-size: 0.95rem; }

.contact-social { display: flex; gap: 1rem; }

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.3rem;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
}
.social-pill:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px var(--red-glow);
}

/* Form */
.form-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
}

.form-card h3 {
  font-size: 1.7rem;
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-group { margin-bottom: 1.2rem; }

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--surface-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.1rem;
  color: var(--text);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(192,57,43,0.12);
}
.form-group textarea { height: 130px; resize: vertical; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }

.form-group select option { background: var(--surface-3); }

@media (max-width: 960px) {
  .contact-grid { grid-template-columns: 1fr; gap: 4rem; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  padding: 7rem 0 3rem;
  border-top: 1px solid var(--border);
  background: linear-gradient(to bottom, var(--bg), #030305);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1.5fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  display: block;
  margin-bottom: 1.2rem;
  letter-spacing: -0.03em;
}
.footer-logo span { color: var(--red-light); }

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 1.8rem;
}

.social-icons { display: flex; gap: 0.8rem; }
.social-icons a {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 1rem;
  transition: var(--transition);
}
.social-icons a:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px var(--red-glow);
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
  font-family: 'Syne', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text);
  margin-bottom: 1.6rem;
}

.footer-links ul li,
.footer-services ul li {
  margin-bottom: 0.8rem;
}
.footer-links ul li a,
.footer-services ul li a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-links ul li a:hover,
.footer-services ul li a:hover {
  color: var(--red-light);
  padding-left: 5px;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.9rem;
}
.footer-contact i { color: var(--red-light); width: 16px; }

.footer-bottom {
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p { color: var(--text-dim); font-size: 0.85rem; }

.dev-credit { display: flex; align-items: center; gap: 0.4rem; }
.dev-credit a {
  color: var(--red-light);
  font-weight: 600;
  transition: color 0.3s ease;
}
.dev-credit a:hover { color: var(--red); }

@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   GALLERY PLACEHOLDERS (shown before real images are added)
   ============================================================ */
.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255,255,255,0.25);
  position: relative;
}

/* Unique gradient per slide */
.gp-1 { background: linear-gradient(135deg, #1a0508 0%, #4a0e10 40%, #8b1a1a 100%); }
.gp-2 { background: linear-gradient(135deg, #0d1118 0%, #1a2a4a 40%, #1a3a6b 100%); }
.gp-3 { background: linear-gradient(135deg, #0d1a0d 0%, #1a3a1a 40%, #2d5a2d 100%); }
.gp-4 { background: linear-gradient(135deg, #1a1500 0%, #3a2e00 40%, #7a5e00 100%); }
.gp-5 { background: linear-gradient(135deg, #1a0d18 0%, #3a1a36 40%, #6b2a5a 100%); }
.gp-6 { background: linear-gradient(135deg, #001a1a 0%, #003a3a 40%, #006b6b 100%); }
.gp-7 { background: linear-gradient(135deg, #1a0a00 0%, #3a1e00 40%, #7a3c00 100%); }
.gp-8 { background: linear-gradient(135deg, #0d0818 0%, #1e1040 40%, #3a1a7a 100%); }

/* Make gallery overlay always visible when .show class is added */
.gallery-overlay.show {
  opacity: 1;
  background: linear-gradient(to top, rgba(6,6,8,0.9) 0%, rgba(6,6,8,0.4) 60%, transparent 100%);
}

/* Why Us Event Placeholder */
.why-event-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #140205 0%, #3a0810 40%, #c0392b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.why-event-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(255,255,255,0.04) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(255,255,255,0.03) 0%, transparent 40%);
}

.placeholder-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.placeholder-inner i {
  font-size: 5rem;
  color: rgba(255,255,255,0.2);
  display: block;
  margin-bottom: 1rem;
}

.placeholder-inner span {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(255,255,255,0.7);
  letter-spacing: -0.03em;
}

.placeholder-inner small {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}

/* ============================================================
   AOS OVERRIDE
   ============================================================ */
[data-aos] { transition-duration: 800ms !important; }

/* ============================================================
   RESPONSIVE — TABLET  (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {

  /* ---- Global ---- */
  .container { width: 94%; }

  .section-title { font-size: clamp(1.9rem, 7vw, 2.6rem); line-height: 1.15; }
  .section-desc  { font-size: 0.95rem; }
  .section-header.center { margin-bottom: 2.8rem; }

  /* ---- Sections vertical padding ---- */
  .about-sec,
  .services-sec,
  .gallery-sec,
  .why-sec,
  .testimonials-sec,
  .contact-sec { padding: 5rem 0; }

  footer { padding: 5rem 0 2.5rem; }

  /* ---- NAV ---- */
  nav { padding: 1.2rem 0; }

  /* ---- HERO ---- */
  .hero-content { padding: 7rem 0 4rem; max-width: 100%; }
  .hero-content h1 { font-size: clamp(3rem, 11vw, 5rem); line-height: 1; }
  .hero-tagline { font-size: 0.95rem; margin-bottom: 2rem; }
  .hero-badge { font-size: 0.68rem; padding: 0.4rem 1rem; }
  .hero-actions { gap: 0.9rem; margin-bottom: 3rem; }
  .hero-stats {
    flex-wrap: wrap;
    gap: 1.2rem;
    padding: 1.2rem 1.5rem;
    width: 100%;
    justify-content: center;
  }
  .stat-divider { display: none; }
  .stat-item .stat-num { font-size: 1.8rem; }
  .scroll-indicator { display: none; }

  /* ---- ABOUT ---- */
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-frame { max-width: 100%; aspect-ratio: 16/9; }
  .about-float-card { right: 1rem; bottom: -1rem; padding: 0.9rem 1.3rem; }
  .about-float-card i { font-size: 1.4rem; }
  .about-img-accent { display: none; }
  .about-features { grid-template-columns: 1fr 1fr; gap: 0.8rem; margin: 1.8rem 0; }
  .feature-item { padding: 0.8rem 1rem; font-size: 0.82rem; }

  /* ---- SERVICES ---- */
  .services-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .service-card { padding: 1.8rem; }
  .service-number { font-size: 2.5rem; margin-bottom: 1rem; }

  /* ---- GALLERY ---- */
  .gallery-tabs { gap: 0.5rem; margin-bottom: 2rem; }
  .tab-btn { padding: 0.5rem 1rem; font-size: 0.75rem; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 190px; gap: 8px; }
  .photo-item.photo-wide { grid-column: span 2; }
  .photo-item.photo-tall { grid-row: span 1; }
  .photo-overlay { padding: 1rem; }
  .photo-overlay h3 { font-size: 0.95rem; }
  .photo-overlay p { font-size: 0.72rem; }

  /* Lightbox */
  .lightbox-container { width: 96vw; gap: 0.8rem; }
  .lightbox-prev { left: 0.3rem; width: 40px; height: 40px; font-size: 0.85rem; }
  .lightbox-next { right: 0.3rem; width: 40px; height: 40px; font-size: 0.85rem; }
  .lightbox-close { top: -2.5rem; width: 38px; height: 38px; font-size: 1rem; }
  .lightbox-caption h3 { font-size: 1.15rem; }
  .lightbox-caption p { font-size: 0.8rem; }
  .lightbox-caption { padding: 0 0.5rem; }

  /* ---- WHY US ---- */
  .why-grid { grid-template-columns: 1fr; gap: 3rem; }
  .why-small-card { right: 1rem; top: 1.5rem; padding: 0.9rem 1.2rem; }
  .why-small-card strong { font-size: 1.1rem; }
  .why-big-card { aspect-ratio: 16/9; }

  /* ---- TESTIMONIALS ---- */
  .testimonial-card { padding: 2rem 1.5rem; }
  .testimonial-card > p { font-size: 0.92rem; margin-bottom: 1.5rem; }
  .stars { display: none; }

  /* ---- CONTACT ---- */
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-info p { font-size: 0.93rem; margin-bottom: 1.8rem; }
  .contact-item { padding: 1rem 1.2rem; }
  .contact-icon { width: 42px; height: 42px; font-size: 1rem; }
  .contact-social { flex-wrap: wrap; gap: 0.7rem; }
  .form-card { padding: 2rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  /* ---- FOOTER ---- */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand p { max-width: 100%; font-size: 0.85rem; }
  .footer-logo { font-size: 1.6rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.6rem; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {

  /* ---- Global ---- */
  .container { width: 95%; }
  .section-title { font-size: clamp(1.7rem, 8vw, 2.2rem); }
  .btn-primary, .btn-outline { padding: 0.85rem 1.6rem; font-size: 0.85rem; }

  /* ---- HERO ---- */
  .hero-content { padding: 6.5rem 0 3rem; }
  .hero-content h1 { font-size: clamp(2.5rem, 12vw, 3.8rem); line-height: 1.0; margin-bottom: 1rem; }
  .hero-tagline { font-size: 0.88rem; margin-bottom: 1.6rem; }
  .hero-badge { font-size: 0.62rem; letter-spacing: 0.06em; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 0.8rem; margin-bottom: 2.5rem; }
  .hero-actions a { width: 100%; justify-content: center; }
  .hero-stats { padding: 1rem 1.2rem; gap: 1rem; }
  .stat-item .stat-num { font-size: 1.6rem; }
  .stat-item .stat-suffix { font-size: 1.1rem; }
  .stat-item .stat-label { font-size: 0.65rem; }

  /* ---- ABOUT ---- */
  .about-sec { padding: 4rem 0; }
  .about-float-card { position: static; margin-top: 1.5rem; border-radius: var(--radius-md); width: fit-content; }
  .about-features { grid-template-columns: 1fr; gap: 0.6rem; margin: 1.4rem 0; }
  .feature-item { font-size: 0.8rem; padding: 0.75rem 1rem; }

  /* ---- SERVICES ---- */
  .services-sec { padding: 4rem 0; }
  .services-grid { grid-template-columns: 1fr; gap: 1rem; }
  .service-card { padding: 1.5rem; }
  .service-number { font-size: 2rem; margin-bottom: 0.8rem; }
  .service-card h3 { font-size: 1.15rem; }
  .service-card p { font-size: 0.85rem; }

  /* ---- GALLERY ---- */
  .gallery-sec { padding: 4rem 0; }
  .gallery-tabs { gap: 0.4rem; }
  .tab-btn { padding: 0.45rem 0.8rem; font-size: 0.7rem; letter-spacing: 0.04em; }
  .photo-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; gap: 6px; }
  .photo-item.photo-wide { grid-column: span 2; }
  .photo-item.photo-tall { grid-row: span 1; }
  /* Always show overlay on mobile (no hover) */
  .photo-overlay { opacity: 0.95; background: linear-gradient(to top, rgba(6,6,8,0.9) 0%, transparent 70%); padding: 0.8rem; }
  .photo-zoom { opacity: 1; transform: scale(1); width: 30px; height: 30px; font-size: 0.7rem; top: 0.5rem; right: 0.5rem; }
  .photo-overlay h3 { font-size: 0.8rem; }
  .photo-overlay p { display: none; }

  /* Lightbox mobile */
  .lightbox-img-wrap { max-height: 55vh; }
  .lightbox-img-wrap img { max-height: 55vh; }
  .lightbox-prev { left: 0.2rem; width: 36px; height: 36px; font-size: 0.75rem; }
  .lightbox-next { right: 0.2rem; width: 36px; height: 36px; font-size: 0.75rem; }
  .lightbox-caption h3 { font-size: 1rem; }

  /* ---- WHY US ---- */
  .why-sec { padding: 4rem 0; }
  .why-small-card { position: static; margin-top: 1.2rem; width: fit-content; }
  .why-big-card { aspect-ratio: 4/3; }

  /* ---- TESTIMONIALS ---- */
  .testimonials-sec { padding: 4rem 0; }
  .testimonial-card { padding: 1.5rem 1.2rem; margin: 0; }
  .testimonial-card > p { font-size: 0.88rem; line-height: 1.7; }
  .testimonial-author { flex-wrap: wrap; gap: 0.8rem; }
  .author-avatar { width: 40px; height: 40px; font-size: 0.9rem; }

  /* ---- CONTACT ---- */
  .contact-sec { padding: 4rem 0; }
  .contact-item { flex-direction: row; align-items: center; padding: 0.9rem 1rem; }
  .contact-icon { width: 38px; height: 38px; font-size: 0.9rem; border-radius: 10px; }
  .contact-text strong { font-size: 0.85rem; }
  .contact-text span { font-size: 0.68rem; }
  .contact-social { flex-wrap: wrap; gap: 0.6rem; }
  .social-pill { padding: 0.55rem 1rem; font-size: 0.75rem; }
  .form-card { padding: 1.5rem 1.2rem; }
  .form-card h3 { font-size: 1.35rem; margin-bottom: 1.5rem; }
  .form-group input,
  .form-group textarea,
  .form-group select { padding: 0.8rem 0.9rem; font-size: 0.88rem; }
  .form-group textarea { height: 110px; }

  /* ---- FOOTER ---- */
  footer { padding: 4rem 0 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; margin-bottom: 2rem; }
  .footer-brand { grid-column: auto; }
  .footer-logo { font-size: 1.4rem; }
  .footer-links h4,
  .footer-services h4,
  .footer-contact h4 { margin-bottom: 1rem; }
  .footer-links ul li,
  .footer-services ul li { margin-bottom: 0.6rem; }
  .footer-links ul li a,
  .footer-services ul li a { font-size: 0.85rem; }
  .footer-contact p { font-size: 0.85rem; margin-bottom: 0.7rem; }
  .footer-bottom { padding-top: 1.8rem; }
  .footer-bottom p { font-size: 0.78rem; }
  .social-icons a { width: 36px; height: 36px; font-size: 0.9rem; }
}

/* ============================================================
   RESPONSIVE — VERY SMALL (≤ 360px)
   ============================================================ */
@media (max-width: 360px) {
  .hero-content h1 { font-size: 2.2rem; }
  .photo-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .photo-item.photo-wide { grid-column: span 1; }
  .services-grid { grid-template-columns: 1fr; }
  .tab-btn { padding: 0.4rem 0.65rem; font-size: 0.65rem; }
  .contact-social { flex-direction: column; }
  .footer-bottom { gap: 0.4rem; }
}