/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0B0B0B;
  --black-2: #111111;
  --black-3: #161616;
  --orange: #D65A1F;
  --orange-dark: #b84c18;
  --orange-glow: rgba(214, 90, 31, 0.18);
  --white: #FFFFFF;
  --grey: #888888;
  --grey-light: #CCCCCC;
  --border: rgba(255,255,255,0.08);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --shadow: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-orange: 0 8px 32px rgba(214,90,31,0.3);
  --max-w: 1200px;
  --header-h: 80px;
}

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

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.accent { color: var(--orange); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(214,90,31,0.35);
}
.btn--primary:hover {
  background: var(--orange-dark);
  box-shadow: var(--shadow-orange);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn--outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

.btn--lg { padding: 20px 48px; font-size: 1.08rem; letter-spacing: 0.02em; }
.btn--sm { padding: 10px 22px; font-size: 0.875rem; }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(11,11,11,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(11,11,11,0.97);
  box-shadow: 0 4px 32px rgba(0,0,0,0.5);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.header__logo { display: flex; align-items: center; }
.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: screen; /* makes black bg transparent on dark surfaces */
}
.logo-img--sm { height: 40px; }

.header__nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.header__nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--grey-light);
  transition: color var(--transition);
  position: relative;
}
.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: width var(--transition);
}
.header__nav a:hover { color: var(--white); }
.header__nav a:hover::after { width: 100%; }

.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Language Toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 4px 10px;
}
.lang-btn {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--grey);
  letter-spacing: 0.05em;
  transition: color var(--transition);
  padding: 2px 4px;
  border-radius: 4px;
}
.lang-btn.active { color: var(--orange); }
.lang-btn:hover { color: var(--white); }
.lang-sep { color: var(--border); font-size: 0.8rem; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  width: 32px;
}
.burger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: rgba(11,11,11,0.98);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px 24px 32px;
  border-bottom: 1px solid var(--border);
  z-index: 999;
  transform: translateY(-20px);
  opacity: 0;
  transition: opacity var(--transition), transform var(--transition);
  pointer-events: none;
}
.mobile-nav.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.mobile-nav a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--grey-light);
  padding: 12px 0;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.mobile-nav a:last-child { border-bottom: none; margin-top: 8px; }
.mobile-nav a:hover { color: var(--orange); }
.mobile-nav .btn { width: 100%; justify-content: center; margin-top: 8px; }

/* ===== SECTIONS ===== */
.section { padding: 120px 0; }
.section--dark { background: var(--black-2); }

.section__header {
  text-align: center;
  margin-bottom: 72px;
}
.section__label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.section__header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section__header p {
  font-size: 1.05rem;
  color: var(--grey);
  max-width: 560px;
  margin: 0 auto;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--black-3);
  /* subtle noise texture over solid bg */
  background-image:
    radial-gradient(ellipse at 60% 40%, rgba(214,90,31,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(214,90,31,0.05) 0%, transparent 50%);
  transition: transform 1s ease;
}
.hero:hover .hero__bg { transform: scale(1.02); }

/* If a real image is set via JS, remove the gradient noise */
.hero__bg[style*="url("] {
  background-image: var(--bg-img, none);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(11,11,11,0.96) 0%,
    rgba(11,11,11,0.82) 55%,
    rgba(11,11,11,0.65) 100%
  );
}

/* Decorative orange line accent */
.hero__content::before {
  content: '';
  display: block;
  width: 56px;
  height: 4px;
  background: var(--orange);
  border-radius: 2px;
  margin-bottom: 32px;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 100px 24px 100px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-glow);
  border: 1px solid rgba(214,90,31,0.4);
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 32px;
}
.hero__badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero__title {
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 28px;
  letter-spacing: -0.03em;
}

.hero__sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.72);
  max-width: 580px;
  margin-bottom: 48px;
  line-height: 1.75;
  font-weight: 300;
}

.hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero__scroll span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 12px;
  position: relative;
}
.hero__scroll span::before {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 8px;
  background: var(--orange);
  border-radius: 2px;
  animation: scroll-dot 2s ease infinite;
}
@keyframes scroll-dot {
  0% { top: 6px; opacity: 1; }
  80% { top: 20px; opacity: 0; }
  100% { top: 6px; opacity: 0; }
}

/* ===== SERVICES ===== */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--orange);
  border-radius: 0 0 3px 3px;
  transition: height var(--transition);
}
.service-card:hover { border-color: rgba(214,90,31,0.3); transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card:hover::before { height: 100%; border-radius: 0 0 0 0; }

.service-card__icon {
  width: 48px; height: 48px;
  color: var(--orange);
  margin-bottom: 20px;
}
.service-card__icon svg { width: 100%; height: 100%; }
.service-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; }
.service-card p { color: var(--grey); font-size: 0.93rem; line-height: 1.65; }

.services__note {
  text-align: center;
  margin-top: 48px;
  font-size: 0.88rem;
  color: var(--grey);
  background: rgba(214,90,31,0.08);
  border: 1px solid rgba(214,90,31,0.2);
  border-radius: var(--radius-sm);
  padding: 14px 24px;
  display: inline-block;
  width: 100%;
}

/* ===== PROJECTS ===== */
.projects__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.project-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--black-3);
  cursor: pointer;
}
.project-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.project-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,11,11,0.8) 0%, transparent 60%);
  opacity: 0.7;
  transition: opacity var(--transition);
}
.project-item:hover img { transform: scale(1.07); }
.project-item:hover::after { opacity: 0.9; }
.project-item__label {
  position: absolute;
  bottom: 20px; left: 20px;
  z-index: 2;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}
.project-item:hover .project-item__label { opacity: 1; transform: translateY(0); }

/* Placeholder project items */
.project-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--grey);
  font-size: 0.88rem;
  border: 1px dashed var(--border);
}
.project-placeholder svg { width: 40px; height: 40px; color: var(--grey); opacity: 0.4; }

/* ===== IN PROGRESS ===== */
.inprogress__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
}
.inprogress__list li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
  color: var(--grey-light);
  transition: color var(--transition);
}
.inprogress__list li:last-child { border-bottom: none; }
.inprogress__list li:hover { color: var(--white); }

.inprogress__dot {
  width: 10px; height: 10px;
  min-width: 10px;
  border-radius: 50%;
  background: var(--orange);
  margin-top: 7px;
  box-shadow: 0 0 0 4px var(--orange-glow);
  animation: pulse-dot 2.4s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px var(--orange-glow); }
  50% { box-shadow: 0 0 0 8px transparent; }
}

/* ===== WHY CHOOSE US ===== */
.why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.why__card {
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: var(--transition);
}
.why__card:hover { border-color: rgba(214,90,31,0.3); transform: translateY(-4px); box-shadow: var(--shadow); }

.why__num {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--orange-glow);
  color: rgba(214,90,31,0.15);
  line-height: 1;
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}
.why__card:hover .why__num { color: rgba(214,90,31,0.3); }
.why__card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; }
.why__card p { color: var(--grey); font-size: 0.93rem; line-height: 1.65; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--orange) 0%, #b84c18 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 240px; height: 240px;
  background: rgba(0,0,0,0.1);
  border-radius: 50%;
}

.cta-section__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-section__text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
}
.cta-section__text p {
  font-size: 1rem;
  opacity: 0.85;
  max-width: 480px;
}

.cta-section__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  flex-shrink: 0;
}
.cta-section .btn--primary {
  background: var(--white);
  color: var(--orange);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.cta-section .btn--primary:hover { background: rgba(255,255,255,0.9); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
.cta-section .btn--outline {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.cta-section .btn--outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); color: var(--white); }

/* ===== CONTACT ===== */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact__item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.contact__item:last-child { border-bottom: none; }
.contact__icon {
  width: 40px; height: 40px;
  min-width: 40px;
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}
.contact__icon svg { width: 20px; height: 20px; }
.contact__item strong { display: block; font-weight: 600; margin-bottom: 4px; font-size: 0.9rem; color: var(--grey); text-transform: uppercase; letter-spacing: 0.05em; }
.contact__item a, .contact__item p { color: var(--white); font-size: 0.97rem; transition: color var(--transition); }
.contact__item a:hover { color: var(--orange); }

.contact__cta-box {
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact__cta-box h3 { font-size: 1.5rem; font-weight: 800; }
.contact__cta-box p { color: var(--grey); font-size: 0.95rem; line-height: 1.65; }
.contact__cta-box .btn { width: 100%; justify-content: center; }

/* Contact form box */
.contact__form-box {
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}
.contact__form-box h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 4px; }
.contact__form-box > p { color: var(--grey); font-size: 0.9rem; margin-bottom: 20px; }

/* Shared form field styles */
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cf-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.cf-field:last-child { margin-bottom: 0; }
.cf-field label {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.cf-field input[type="text"],
.cf-field input[type="email"],
.cf-field input[type="tel"],
.cf-field select,
.cf-field textarea {
  background: var(--black);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: inherit;
  font-size: 0.9rem;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus { border-color: var(--orange); }
.cf-field select option { background: var(--black-2); color: var(--white); }
.cf-field textarea { resize: vertical; min-height: 100px; }
.cf-note { font-size: 0.8rem; color: var(--grey); margin-top: 10px; }
.cf-note a { color: var(--orange); }
@media (max-width: 520px) { .cf-row { grid-template-columns: 1fr; } }

/* ===== FOOTER ===== */
.footer {
  background: var(--black-2);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer__brand p {
  color: var(--grey);
  font-size: 0.93rem;
  margin-top: 16px;
  max-width: 320px;
  line-height: 1.65;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__links strong {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 4px;
}
.footer__links a {
  color: var(--grey-light);
  font-size: 0.93rem;
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--orange); }

.footer__bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__bottom p { color: var(--grey); font-size: 0.85rem; }
.footer__admin {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.15);
  transition: color var(--transition);
}
.footer__admin:hover { color: var(--grey); }

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: var(--transition);
  color: white;
}
.wa-float svg { width: 30px; height: 30px; }
.wa-float:hover { transform: scale(1.12) translateY(-3px); box-shadow: 0 12px 36px rgba(37,211,102,0.55); }
.wa-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37,211,102,0.4);
  animation: wa-pulse 2.5s ease infinite;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.8; }
  70% { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.services__grid .reveal:nth-child(1) { transition-delay: 0.05s; }
.services__grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.services__grid .reveal:nth-child(3) { transition-delay: 0.15s; }
.services__grid .reveal:nth-child(4) { transition-delay: 0.2s; }
.services__grid .reveal:nth-child(5) { transition-delay: 0.25s; }
.services__grid .reveal:nth-child(6) { transition-delay: 0.3s; }
.why__grid .reveal:nth-child(1) { transition-delay: 0.05s; }
.why__grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.why__grid .reveal:nth-child(3) { transition-delay: 0.15s; }
.why__grid .reveal:nth-child(4) { transition-delay: 0.2s; }
.why__grid .reveal:nth-child(5) { transition-delay: 0.25s; }
.why__grid .reveal:nth-child(6) { transition-delay: 0.3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .header__nav { display: none; }
  .burger { display: flex; }
  .mobile-nav { display: flex; }

  .contact__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }

  .cta-section__inner { flex-direction: column; text-align: center; }
  .cta-section__btns { justify-content: center; }
}

@media (max-width: 640px) {
  :root { --header-h: 64px; }
  .section { padding: 72px 0; }
  .hero__content { padding: 60px 24px; }
  .hero__btns { flex-direction: column; align-items: stretch; }
  .hero__btns .btn { width: 100%; justify-content: center; padding: 18px 32px; font-size: 1rem; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .services__grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .contact__cta-box { padding: 28px 24px; }
  .wa-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
  .wa-float svg { width: 26px; height: 26px; }
  .logo-img { height: 36px; }
}

/* ===== INSTAGRAM SECTION ===== */
.instagram__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}
@media (max-width: 700px) { .instagram__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .instagram__grid { grid-template-columns: 1fr; } }

.ig-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--black-3);
  display: block;
  border: 1px solid var(--border);
  text-decoration: none;
}
.ig-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.ig-item:hover img { transform: scale(1.08); }
.ig-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,11,11,0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity var(--transition);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 500;
  text-align: center;
  padding: 12px;
}
.ig-item:hover .ig-overlay { opacity: 1; }

.ig-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--grey);
  border-radius: var(--radius);
}

.instagram__cta {
  text-align: center;
  padding-top: 8px;
}

/* ===== EDIT BAR ===== */
.edit-bar {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1100;
  background: #1a0a00;
  border-bottom: 2px solid var(--orange);
  padding: 8px 24px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}
.edit-bar span { letter-spacing: 0.05em; text-transform: uppercase; font-size: 0.75rem; color: var(--orange); }

#edit-toggle {
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 6px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition);
}
#edit-toggle:hover { background: var(--orange-dark); }
#edit-toggle.active { background: var(--white); color: var(--orange); }

.edit-bar__link, #edit-logout {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: color var(--transition);
  background: none; border: none; font-family: inherit;
}
.edit-bar__link:hover, #edit-logout:hover { color: var(--white); }

/* When edit bar is visible, push header down */
body:has(#edit-bar[style*="flex"]) .header { top: 41px; }

/* ===== EDIT MODE ===== */
.edit-mode [data-editable] {
  outline: 2px dashed rgba(214,90,31,0.5);
  outline-offset: 3px;
  cursor: pointer;
  border-radius: 4px;
  transition: outline-color var(--transition);
}
.edit-mode [data-editable]:hover {
  outline-color: var(--orange);
  background: rgba(214,90,31,0.05);
}

/* ===== EDIT POPOVER ===== */
.edit-popover {
  position: fixed;
  z-index: 2000;
  width: 332px;
  background: #1C1C1C;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
  overflow: hidden;
}
.edit-popover__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8rem;
  color: #888;
}
.edit-popover__header strong { color: var(--orange); }
.edit-popover__close {
  background: none; border: none; cursor: pointer;
  color: #555; font-size: 1rem; line-height: 1;
  transition: color var(--transition);
}
.edit-popover__close:hover { color: var(--white); }
.edit-popover__body {
  padding: 14px 16px;
  display: flex; flex-direction: column; gap: 8px;
}
.edit-popover__body label {
  font-size: 0.72rem; font-weight: 700;
  color: #666; text-transform: uppercase; letter-spacing: 0.08em;
}
.edit-popover__body textarea {
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: inherit; font-size: 0.88rem;
  padding: 10px 12px; resize: vertical; outline: none; width: 100%;
  transition: border-color var(--transition);
}
.edit-popover__body textarea:focus { border-color: var(--orange); }
.edit-popover__footer {
  padding: 10px 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; gap: 8px;
}
