/* ===== ZYRA EVENTS - DESIGN SYSTEM (White & Gold) ===== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  /* Colors - White & Gold Palette */
  --clr-bg: #ffffff;
  --clr-bg-alt: #f7f5f0;
  --clr-surface: #ffffff;
  --clr-surface-hover: #faf8f4;
  --clr-border: rgba(0, 0, 0, 0.07);
  --clr-border-hover: rgba(180, 148, 76, 0.35);

  --clr-gold: #b4944c;
  --clr-gold-light: #d4b868;
  --clr-gold-dark: #8a7038;
  --clr-gold-glow: rgba(180, 148, 76, 0.1);
  --clr-gold-gradient: linear-gradient(135deg, #b4944c, #d4b868);

  --clr-text: #3a3632;
  --clr-text-muted: #7a756d;
  --clr-text-dim: #b0aaa0;
  --clr-heading: #1a1714;
  --clr-white: #ffffff;
  --clr-dark: #1a1714;

  /* Typography */
  --ff-body: 'Outfit', sans-serif;
  --ff-display: 'Playfair Display', serif;

  /* Spacing */
  --section-pad: 100px 0;
  --container-width: 1200px;

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --transition-fast: 0.25s var(--ease-out);
  --transition-med: 0.45s var(--ease-out);
  --transition-slow: 0.7s var(--ease-out);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Shadows */
  --shadow-card: 0 2px 20px rgba(0, 0, 0, 0.04), 0 0 0 1px rgba(0, 0, 0, 0.03);
  --shadow-card-hover: 0 12px 40px rgba(180, 148, 76, 0.1), 0 0 0 1px rgba(180, 148, 76, 0.15);
  --shadow-elevated: 0 20px 60px rgba(0, 0, 0, 0.08);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--ff-body);
  background-color: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

/* ---------- Utility ---------- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 14px;
  position: relative;
  padding-left: 36px;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 1.5px;
  background: var(--clr-gold);
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--clr-heading);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--clr-text-muted);
  max-width: 560px;
  line-height: 1.7;
}

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

.text-center .section-subtitle {
  margin: 0 auto;
}

.text-center .section-label {
  padding-left: 0;
}

.text-center .section-label::before {
  display: none;
}

/* ---------- Scroll Reveal Animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.33s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.40s; }

.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================
   NAVIGATION
   ================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--transition-fast), padding var(--transition-fast), box-shadow var(--transition-fast);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 12px 0;
  box-shadow: 0 1px 24px rgba(0, 0, 0, 0.06);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-logo img {
  height: 42px;
  width: auto;
}

.nav-logo-text {
  font-family: var(--ff-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--clr-heading);
  letter-spacing: 1px;
}

.nav-logo-text span {
  color: var(--clr-gold);
}

/* In-hero state: white text */
.navbar:not(.scrolled) .nav-logo-text {
  color: var(--clr-white);
}

.navbar:not(.scrolled) .nav-links a {
  color: rgba(255, 255, 255, 0.7);
}

.navbar:not(.scrolled) .nav-links a:hover {
  color: var(--clr-white);
}

.navbar:not(.scrolled) .nav-hamburger span {
  background: var(--clr-white);
}

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

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--clr-text-muted);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--clr-gold);
  transition: width var(--transition-fast);
}

.nav-links a:hover {
  color: var(--clr-gold);
}

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

.nav-cta {
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  color: var(--clr-white) !important;
  background: var(--clr-gold-gradient);
  padding: 10px 26px;
  border-radius: 100px;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(180, 148, 76, 0.35);
  color: var(--clr-white) !important;
}

.navbar:not(.scrolled) .nav-cta {
  color: var(--clr-white) !important;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--clr-heading);
  transition: var(--transition-fast);
  border-radius: 2px;
}

.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) saturate(0.85);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(26, 23, 20, 0.4) 0%,
    rgba(26, 23, 20, 0.15) 35%,
    rgba(26, 23, 20, 0.5) 70%,
    rgba(26, 23, 20, 0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--clr-white);
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  animation: fadeInUp 0.8s var(--ease-out) 0.2s both;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--clr-gold-light);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--clr-white);
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s var(--ease-out) 0.35s both;
}

.hero h1 em {
  font-style: italic;
  color: var(--clr-gold-light);
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 520px;
  animation: fadeInUp 0.8s var(--ease-out) 0.5s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s var(--ease-out) 0.65s both;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 100px;
  cursor: pointer;
  border: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.btn-primary {
  background: var(--clr-gold-gradient);
  color: var(--clr-white);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(180, 148, 76, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--clr-white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: var(--clr-gold-light);
  color: var(--clr-gold-light);
  transform: translateY(-3px);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  animation: fadeInUp 0.8s var(--ease-out) 0.8s both;
}

.hero-stat h3 {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--clr-gold-light);
}

.hero-stat p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ================================================
   ABOUT SECTION
   ================================================ */
.about {
  padding: var(--section-pad);
  background: var(--clr-bg);
}

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

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
}

.about-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform var(--transition-slow);
}

.about-image:hover img {
  transform: scale(1.04);
}

.about-image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.about-image-badge .badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--clr-gold-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gold);
  font-size: 1.1rem;
}

.about-image-badge .badge-text h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-heading);
}

.about-image-badge .badge-text p {
  font-size: 0.75rem;
  color: var(--clr-text-muted);
}

.about-text .section-subtitle {
  margin-bottom: 32px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--clr-text);
}

.about-feature .check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--clr-gold-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gold);
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ================================================
   SERVICES SECTION
   ================================================ */
.services {
  padding: var(--section-pad);
  background: var(--clr-bg-alt);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}

.service-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: transform var(--transition-med), border-color var(--transition-med), box-shadow var(--transition-med);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--clr-gold-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-med);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--clr-border-hover);
  box-shadow: var(--shadow-card-hover);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--clr-gold-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--clr-gold);
  margin-bottom: 22px;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.service-card:hover .service-icon {
  background: var(--clr-gold);
  color: var(--clr-white);
}

.service-card h3 {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--clr-heading);
  margin-bottom: 10px;
}

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

/* ================================================
   GALLERY / PORTFOLIO SECTION
   ================================================ */
.gallery {
  padding: var(--section-pad);
  background: var(--clr-bg);
}

.gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}

.gallery-filters {
  display: flex;
  gap: 8px;
}

.gallery-filter-btn {
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 100px;
  background: transparent;
  color: var(--clr-text-muted);
  border: 1px solid var(--clr-border);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: var(--clr-gold);
  color: var(--clr-white);
  border-color: var(--clr-gold);
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-card);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow), filter var(--transition-med);
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  background: linear-gradient(180deg, transparent 40%, rgba(26, 23, 20, 0.85) 100%);
  opacity: 0;
  transition: opacity var(--transition-med);
}

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

.gallery-item-overlay h4 {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  color: var(--clr-white);
  transform: translateY(10px);
  transition: transform var(--transition-med);
}

.gallery-item:hover .gallery-item-overlay h4 {
  transform: translateY(0);
}

.gallery-item-overlay p {
  font-size: 0.8rem;
  color: var(--clr-gold-light);
  margin-top: 4px;
  transform: translateY(10px);
  transition: transform var(--transition-med) 0.05s;
}

.gallery-item:hover .gallery-item-overlay p {
  transform: translateY(0);
}

/* Featured large item */
.gallery-item.featured {
  grid-column: span 2;
  grid-row: span 3;
  aspect-ratio: auto;
}

/* Mobile tap-to-reveal: same visual as hover */
.gallery-item.mobile-active img {
  transform: scale(1.08);
  filter: brightness(0.55);
}

.gallery-item.mobile-active .gallery-item-overlay {
  opacity: 1;
}

.gallery-item.mobile-active .gallery-item-overlay h4,
.gallery-item.mobile-active .gallery-item-overlay p {
  transform: translateY(0);
}

/* ================================================
   CAROUSEL SECTION
   ================================================ */
.carousel-section {
  padding: 80px 0;
  background: var(--clr-bg-alt);
  overflow: hidden;
}

.carousel-wrapper {
  position: relative;
  margin-top: 48px;
}

.carousel-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 16px;
  cursor: grab;

  /* Hide scrollbar but keep scroll functionality */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-track:active {
  cursor: grabbing;
}

.carousel-slide {
  flex: 0 0 calc(30% - 16px);
  min-width: 280px;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-card);
  scroll-snap-align: start;
  cursor: pointer;
  transition: transform var(--transition-med), box-shadow var(--transition-med);
}

.carousel-slide:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.carousel-slide:hover img {
  transform: scale(1.06);
}

/* Carousel overlay always visible */
.carousel-slide-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 22px;
  background: linear-gradient(transparent, rgba(26, 23, 20, 0.88));
}

.carousel-slide-info h4 {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  color: var(--clr-white);
}

.carousel-slide-info p {
  font-size: 0.78rem;
  color: var(--clr-gold-light);
  margin-top: 4px;
}

/* ================================================
   PROCESS / HOW WE WORK
   ================================================ */
.process {
  padding: var(--section-pad);
  background: var(--clr-bg);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 52px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-border), var(--clr-border), transparent);
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--clr-bg-alt);
  border: 2px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-gold);
  position: relative;
  z-index: 1;
  transition: all var(--transition-fast);
}

.process-step:hover .process-step-num {
  background: var(--clr-gold);
  color: var(--clr-white);
  border-color: var(--clr-gold);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(180, 148, 76, 0.3);
}

.process-step h4 {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  color: var(--clr-heading);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

/* ================================================
   TESTIMONIALS
   ================================================ */
.testimonials {
  padding: var(--section-pad);
  background: var(--clr-bg-alt);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}

.testimonial-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform var(--transition-med), border-color var(--transition-med), box-shadow var(--transition-med);
  box-shadow: var(--shadow-card);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--clr-border-hover);
  box-shadow: var(--shadow-card-hover);
}

.testimonial-stars {
  color: var(--clr-gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--clr-text);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--clr-gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--clr-white);
  font-size: 0.9rem;
}

.testimonial-author-info h5 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--clr-heading);
}

.testimonial-author-info p {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
}

/* ================================================
   CONTACT SECTION
   ================================================ */
.contact {
  padding: var(--section-pad);
  background: var(--clr-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  margin-top: 52px;
}

.contact-info-card {
  background: var(--clr-heading);
  border: none;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-elevated);
}

.contact-info-card h3 {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  color: var(--clr-white);
  margin-bottom: 8px;
}

.contact-info-card > p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(180, 148, 76, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gold-light);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail-text h5 {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 4px;
}

.contact-detail-text p {
  font-size: 0.95rem;
  color: var(--clr-white);
}

.contact-detail-text a {
  color: var(--clr-gold-light);
  transition: color var(--transition-fast);
}

.contact-detail-text a:hover {
  color: var(--clr-white);
}

/* Contact Form */
.contact-form {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-card);
}

.contact-form h3 {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  color: var(--clr-heading);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: var(--clr-bg-alt);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  color: var(--clr-text);
  font-family: var(--ff-body);
  font-size: 0.9rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--clr-gold);
  box-shadow: 0 0 0 3px var(--clr-gold-glow);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--clr-text-dim);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  appearance: none;
  cursor: pointer;
}

.form-submit {
  width: 100%;
  padding: 14px;
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 600;
  background: var(--clr-gold-gradient);
  color: var(--clr-white);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(180, 148, 76, 0.35);
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--clr-heading);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer .nav-logo-text {
  font-size: 1.3rem;
  margin-bottom: 14px;
  color: var(--clr-white);
}

.footer .nav-logo-text span {
  color: var(--clr-gold-light);
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--clr-white);
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 10px;
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.footer-col a:hover {
  color: var(--clr-gold-light);
  padding-left: 6px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.footer-social-link:hover {
  background: var(--clr-gold);
  color: var(--clr-white);
  border-color: var(--clr-gold);
  transform: translateY(-2px);
}

/* ================================================
   LIGHTBOX
   ================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-med);
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 85vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  transform: scale(0.92);
  transition: transform var(--transition-med);
}

.lightbox.active img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--clr-white);
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.featured { grid-column: span 2; grid-row: span 1; aspect-ratio: 16 / 9; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .carousel-slide { flex: 0 0 calc(50% - 12px); }
}

@media (max-width: 768px) {
  :root { --section-pad: 72px 0; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--clr-bg);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 80px 32px 32px;
    gap: 24px;
    transition: right var(--transition-med);
    border-left: 1px solid var(--clr-border);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.08);
  }

  .nav-links.active {
    right: 0;
  }

  /* Force dark text in mobile menu since it's on white bg */
  .nav-links a {
    color: var(--clr-text-muted) !important;
  }

  .nav-links a:hover {
    color: var(--clr-gold) !important;
  }

  .nav-hamburger {
    display: flex;
  }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .gallery-filters { flex-wrap: wrap; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 24px; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }

  /* ---- Hero Mobile Fix ---- */
  .hero {
    min-height: 100vh;
    align-items: flex-end;
    padding-bottom: 0;
  }

  .hero .container {
    padding-bottom: 24px;
  }

  .hero-badge {
    font-size: 0.65rem;
    padding: 6px 14px;
    letter-spacing: 1px;
    margin-bottom: 20px;
  }

  .hero h1 {
    font-size: 2.2rem;
    margin-bottom: 16px;
  }

  .hero-desc {
    font-size: 0.92rem;
    margin-bottom: 28px;
    line-height: 1.7;
  }

  .hero-actions {
    gap: 12px;
  }

  .hero-actions .btn {
    padding: 12px 24px;
    font-size: 0.82rem;
  }

  .hero-stats {
    gap: 24px;
    margin-top: 36px;
    padding-top: 24px;
    flex-wrap: wrap;
  }

  .hero-stat h3 {
    font-size: 1.5rem;
  }

  .hero-stat p {
    font-size: 0.7rem;
  }

  /* ---- Pinterest Masonry Gallery ---- */
  .gallery-grid {
    display: block;
    columns: 2;
    column-gap: 12px;
  }

  .gallery-item {
    break-inside: avoid;
    margin-bottom: 12px;
    aspect-ratio: auto;
    display: inline-block;
    width: 100%;
  }

  .gallery-item img {
    height: auto;
  }

  .gallery-item.featured {
    grid-column: unset;
    grid-row: unset;
  }

  /* Gallery: tap-to-reveal overlay (mobile-active via JS) */
  .gallery-item.mobile-active img {
    transform: scale(1.08);
    filter: brightness(0.55);
  }

  .gallery-item.mobile-active .gallery-item-overlay {
    opacity: 1;
  }

  .gallery-item.mobile-active .gallery-item-overlay h4,
  .gallery-item.mobile-active .gallery-item-overlay p {
    transform: translateY(0);
  }

  /* ---- Carousel Mobile ---- */
  .carousel-slide {
    flex: 0 0 80%;
    min-width: 260px;
    border-radius: var(--radius-lg);
  }
}
