/* ===== ZAZZ INTERIORS – Custom Styles ===== */

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

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Palette – warm, earthy luxury */
  --clr-bg:        #0f0f0f;
  --clr-bg-alt:    #1a1a1a;
  --clr-bg-card:   #1e1e1e;
  --clr-surface:   #252525;
  --clr-border:    rgba(255, 255, 255, 0.06);
  --clr-gold:      #c9a96e;
  --clr-gold-light:#e0c992;
  --clr-gold-dark: #a68b4b;
  --clr-cream:     #f5f0e8;
  --clr-text:      #e8e4df;
  --clr-text-muted:#9e9a94;
  --clr-white:     #ffffff;
  --clr-overlay:   rgba(15, 15, 15, 0.65);

  /* Typography */
  --ff-heading: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'Inter', system-ui, sans-serif;
  --ff-accent:  'Outfit', system-ui, sans-serif;

  /* Spacing */
  --section-py: clamp(5rem, 10vw, 8rem);
  --container-px: clamp(1.25rem, 5vw, 3rem);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.5s var(--ease-out);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--ff-body);
  font-weight: 300;
  color: var(--clr-text);
  background: var(--clr-bg);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul, ol { list-style: none; }

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

.section-label {
  font-family: var(--ff-accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-label::before {
  content: '';
  width: 2.5rem;
  height: 1px;
  background: var(--clr-gold);
}

.section-heading {
  font-family: var(--ff-heading);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 400;
  color: var(--clr-cream);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.section-heading span {
  color: var(--clr-gold);
}

.section-desc {
  max-width: 600px;
  color: var(--clr-text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.gold-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--clr-gold), transparent);
  margin: 2rem 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--ff-accent);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1.05rem 2.4rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

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

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--clr-gold-light), var(--clr-gold-dark));
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(201, 169, 110, 0.3);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-primary .btn-arrow {
  position: relative;
  z-index: 1;
  transition: transform var(--transition-smooth);
}

.btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-outline {
  background: transparent;
  color: var(--clr-cream);
  border: 1px solid rgba(201, 169, 110, 0.4);
}

.btn-outline:hover {
  border-color: var(--clr-gold);
  background: rgba(201, 169, 110, 0.08);
  transform: translateY(-2px);
}

/* ============================== */
/*          1. HEADER             */
/* ============================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: all 0.4s ease;
}

.header.scrolled {
  background: rgba(15, 15, 15, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--clr-border);
  padding: 0.8rem 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(201, 169, 110, 0.3));
  transition: filter var(--transition-smooth);
}

.logo:hover .logo-img {
  filter: drop-shadow(0 0 12px rgba(201, 169, 110, 0.5));
}

.logo-text {
  font-family: var(--ff-heading);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--clr-cream);
}

.logo-text small {
  display: block;
  font-family: var(--ff-accent);
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  color: var(--clr-gold);
  text-transform: uppercase;
}

/* Desktop Nav */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-link {
  font-family: var(--ff-accent);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  padding: 0.5rem 1.25rem;
  position: relative;
  transition: color var(--transition-smooth);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--clr-gold);
  transition: all var(--transition-smooth);
  transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
  color: var(--clr-cream);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 60%;
}

.nav-cta {
  margin-left: 1rem;
  padding: 0.7rem 1.6rem;
  font-size: 0.75rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--clr-cream);
  transition: all 0.3s ease;
  transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

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

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0%   { transform: scale(1.05); }
  100% { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 15, 15, 0.4) 0%,
    rgba(15, 15, 15, 0.6) 40%,
    rgba(15, 15, 15, 0.85) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--container-px);
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--ff-accent);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.3s forwards;
}

.hero-badge::before,
.hero-badge::after {
  content: '';
  width: 3rem;
  height: 1px;
  background: var(--clr-gold);
}

.hero-title {
  font-family: var(--ff-heading);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  color: var(--clr-cream);
  line-height: 1;
  letter-spacing: 0.08em;
  margin-bottom: 0.3em;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.5s forwards;
}

.hero-subtitle {
  font-family: var(--ff-accent);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.7s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.9s forwards;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 1.2s forwards;
}

.hero-scroll-indicator span {
  font-family: var(--ff-accent);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, var(--clr-gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; height: 50px; }
  50%      { opacity: 1;   height: 65px; }
}

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

/* ============================== */
/*          3. ABOUT              */
/* ============================== */
.about {
  padding: var(--section-py) 0;
  background: var(--clr-bg);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.04), transparent 70%);
  pointer-events: none;
}

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

.about-text {
  padding-right: 2rem;
}

.about-text p {
  color: var(--clr-text-muted);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--clr-border);
}

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

.stat-number {
  font-family: var(--ff-heading);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--clr-gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-family: var(--ff-accent);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 280px 200px;
  gap: 1rem;
}

.about-img {
  overflow: hidden;
  position: relative;
}

.about-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.1), transparent);
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.about-img:hover::after {
  opacity: 1;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

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

.about-img:first-child {
  grid-row: 1 / 3;
  border-radius: 0;
}

/* ============================== */
/*         4. SERVICES            */
/* ============================== */
.services {
  padding: var(--section-py) 0;
  background: var(--clr-bg-alt);
  position: relative;
}

.services-header {
  text-align: center;
  margin-bottom: 4rem;
}

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

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

.service-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-smooth);
  group: true;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--clr-gold), transparent);
  transform: scaleX(0);
  transition: transform var(--transition-smooth);
}

.service-card:hover {
  border-color: rgba(201, 169, 110, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

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

.service-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--clr-gold);
  border: 1px solid rgba(201, 169, 110, 0.2);
  transition: all var(--transition-smooth);
}

.service-card:hover .service-icon {
  background: rgba(201, 169, 110, 0.1);
  border-color: var(--clr-gold);
}

.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-title {
  font-family: var(--ff-heading);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--clr-cream);
  margin-bottom: 0.85rem;
  letter-spacing: 0.02em;
}

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

.service-number {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  font-family: var(--ff-heading);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  transition: color var(--transition-smooth);
}

.service-card:hover .service-number {
  color: rgba(201, 169, 110, 0.08);
}

/* ============================== */
/*         5. PORTFOLIO           */
/* ============================== */
.portfolio {
  padding: var(--section-py) 0;
  background: var(--clr-bg);
  position: relative;
}

.portfolio-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3.5rem;
}

.portfolio-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 350px 300px;
  gap: 1.25rem;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.portfolio-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(15, 15, 15, 0.85) 100%
  );
  z-index: 1;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.portfolio-item:hover::before {
  opacity: 1;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

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

.portfolio-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  z-index: 2;
  transform: translateY(20px);
  opacity: 0;
  transition: all var(--transition-smooth);
}

.portfolio-item:hover .portfolio-info {
  transform: translateY(0);
  opacity: 1;
}

.portfolio-info h3 {
  font-family: var(--ff-heading);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--clr-cream);
  margin-bottom: 0.3rem;
}

.portfolio-info p {
  font-family: var(--ff-accent);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-gold);
}

.portfolio-item:nth-child(1) {
  grid-row: 1 / 3;
}

.portfolio-cta {
  text-align: center;
  margin-top: 3.5rem;
}

/* ============================== */
/*         6. CONTACT             */
/* ============================== */
.contact {
  padding: var(--section-py) 0;
  background: var(--clr-bg-alt);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}

.contact-info {
  padding-right: 2rem;
}

.contact-details {
  margin-top: 2rem;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--clr-border);
}

.contact-detail-item:last-child {
  border-bottom: none;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 169, 110, 0.2);
  color: var(--clr-gold);
}

.contact-detail-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.contact-detail-text h4 {
  font-family: var(--ff-accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 0.4rem;
}

.contact-detail-text p,
.contact-detail-text a {
  color: var(--clr-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  transition: color 0.3s ease;
}

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

/* Contact Form */
.contact-form-wrapper {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  padding: 3rem;
}

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

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

.form-group label {
  display: block;
  font-family: var(--ff-accent);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: 0.6rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  color: var(--clr-text);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(158, 154, 148, 0.5);
}

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

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

.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}

/* ============================== */
/*          7. FOOTER             */
/* ============================== */
.footer {
  background: var(--clr-bg);
  border-top: 1px solid var(--clr-border);
  padding: 4rem 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--clr-border);
}

.footer-brand p {
  color: var(--clr-text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-top: 1.25rem;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--clr-border);
  color: var(--clr-text-muted);
  transition: all 0.3s ease;
}

.social-link:hover {
  border-color: var(--clr-gold);
  color: var(--clr-gold);
  background: rgba(201, 169, 110, 0.06);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-col h4 {
  font-family: var(--ff-accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--clr-cream);
  margin-bottom: 1.5rem;
}

.footer-col ul li {
  margin-bottom: 0.85rem;
}

.footer-col ul li a {
  color: var(--clr-text-muted);
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
}

.footer-col ul li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--clr-gold);
  transition: width 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--clr-gold);
}

.footer-col ul li a:hover::after {
  width: 100%;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-size: 0.82rem;
  color: var(--clr-text-muted);
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: var(--clr-text-muted);
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--clr-gold);
}

/* ============================== */
/*    SCROLL REVEAL ANIMATIONS    */
/* ============================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }
.reveal-delay-7 { transition-delay: 0.7s; }
.reveal-delay-8 { transition-delay: 0.8s; }

/* ============================== */
/*        MOBILE OVERLAY NAV      */
/* ============================== */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 15, 0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-menu {
  text-align: center;
}

.mobile-nav-menu a {
  display: block;
  font-family: var(--ff-heading);
  font-size: 2rem;
  font-weight: 400;
  color: var(--clr-cream);
  padding: 0.75rem 0;
  letter-spacing: 0.08em;
  transition: color 0.3s ease;
}

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

/* ============================== */
/*         RESPONSIVE             */
/* ============================== */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .nav-menu { display: none; }
  .nav-cta.desktop-only { display: none; }
  .menu-toggle { display: flex; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-text { padding-right: 0; }

  .about-images {
    grid-template-rows: 220px 180px;
  }

  .portfolio-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 240px 240px;
  }

  .portfolio-item:nth-child(1) {
    grid-row: auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-info { padding-right: 0; }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }

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

  .about-images {
    grid-template-columns: 1fr;
    grid-template-rows: 250px 200px 200px;
  }

  .about-img:first-child {
    grid-row: auto;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .portfolio-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 260px);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }

  .contact-form-wrapper {
    padding: 2rem 1.5rem;
  }
}

/* ============================== */
/*    LIGHTBOX                    */
/* ============================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  cursor: zoom-out;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  border: 1px solid var(--clr-border);
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--clr-cream);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.lightbox-close:hover {
  border-color: var(--clr-gold);
  color: var(--clr-gold);
}

/* ============================== */
/*    CUSTOM CURSOR GLOW          */
/* ============================== */
.cursor-glow {
  position: fixed;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.04), transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: left 0.3s ease, top 0.3s ease;
}
