:root {
  --wood-dark: #2C1810;
  --wood-medium: #5D4037;
  --wood-light: #8D6E63;
  --accent-gold: #D4AF37;
  --cream: #F5F1E8;
  --sage: #8B9D83;
  --text-dark: #1A1A1A;
  --text-light: #FFFFFF;

  --wa-green: #25D366;
  --fb-blue: #1877F2;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-y: scroll;
}

body {
  font-family: "Crimson Pro", serif;
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
  padding-top: 86px;
}

a { color: inherit; }

/* =========================
   Navigation
========================= */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--wood-dark);
  padding: 1.1rem 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

nav .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

nav .logo {
  font-family: "Bebas Neue", sans-serif;
  color: var(--accent-gold);
  letter-spacing: 2px;
  text-decoration: none;
  position: relative;
  line-height: 1;
  white-space: nowrap;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

nav .logo .company-name {
  display: block;
  font-size: 3.2rem;
  line-height: 1;
  letter-spacing: 3px;
}

nav .logo::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--accent-gold);
  transition: width 0.35s ease;
}

nav .logo:hover::after { width: 100%; }

.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  align-items: center;
  flex: 1 1 auto;
  justify-content: center;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 400;
  transition: color 0.25s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width 0.25s ease;
}

.nav-links a:hover { color: var(--accent-gold); }
.nav-links a:hover::before { width: 100%; }

.nav-links a.active { color: var(--accent-gold); }
.nav-links a.active::before { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
  flex: 0 0 auto;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.1rem;
  background: var(--accent-gold);
  color: var(--wood-dark);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  white-space: nowrap;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  filter: brightness(0.98);
}

.menu-btn {
  display: none;
  background: transparent;
  border: 2px solid rgba(212,175,55,0.65);
  color: var(--accent-gold);
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 2px;
  padding: 0.55rem 0.9rem;
  border-radius: 6px;
  cursor: pointer;
}

/* =========================
   Hero
========================= */
.hero {
  min-height: calc(100vh - 86px);
  background:
    linear-gradient(135deg, rgba(44, 24, 16, 0.55) 0%, rgba(93, 64, 55, 0.55) 100%),
    url("images/hero.jpeg");
  background-size: cover;
  background-position: 60% center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 3px,
      rgba(0,0,0,0.025) 3px,
      rgba(0,0,0,0.025) 6px
    );
  opacity: 0.6;
  pointer-events: none;
}

.hero-content {
  text-align: center;
  color: var(--text-light);
  z-index: 2;
  max-width: 1000px;
  padding: 0 2rem;
}

.hero h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 5rem;
  letter-spacing: 6px;
  margin-bottom: 0.8rem;
  color: var(--accent-gold);
  text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
}

.hero .tagline {
  font-size: 1.7rem;
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 0.9rem;
}

.hero .description {
  font-size: 1.15rem;
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 1.4rem;
  opacity: 0.95;
}

.trust-lines {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto 2.2rem;
  max-width: 920px;
}

.trust-pill {
  border: 1px solid rgba(212,175,55,0.35);
  background: rgba(245,241,232,0.08);
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  font-size: 1rem;
  letter-spacing: 0.5px;
  color: var(--cream);
}

.hero .cta-buttons {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* CTA */
.cta-button {
  display: inline-block;
  padding: 1.15rem 2.7rem;
  background: var(--accent-gold);
  color: var(--wood-dark);
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 2px;
  border-radius: 4px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  position: relative;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  filter: brightness(0.98);
}

.cta-button-secondary {
  background: transparent;
  border: 2px solid var(--accent-gold);
  color: var(--accent-gold);
}

/* Utilities (replacing inline styles) */
.cta-buttons-tight { margin: 0; }
.cta-button-small {
  padding: 0.95rem 1.6rem;
  font-size: 1rem;
  letter-spacing: 1px;
}
.center-cta {
  text-align: center;
  margin-top: 2.5rem;
}
.info-item-tight { margin-top: 1.2rem; }

/* =========================
   Sections Base
========================= */
section {
  padding: 6rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.section-lead {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-top: 1rem;
  max-width: 950px;
}

h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 4rem;
  color: var(--wood-dark);
  margin-bottom: 1.5rem;
  letter-spacing: 4px;
  position: relative;
  display: inline-block;
}

h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60%;
  height: 4px;
  background: var(--accent-gold);
}

/* =========================
   About
========================= */
.about-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: start;
}

.about-text {
  font-size: 1.2rem;
  line-height: 1.85;
  color: var(--text-dark);
}

.about-text p { margin-bottom: 1.2rem; }

.about-image {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0,0,0,0.18);
  height: 520px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================
   Stats
========================= */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.stat-card {
  background: linear-gradient(135deg, var(--wood-medium), var(--wood-light));
  padding: 2rem;
  border-radius: 14px;
  text-align: center;
  color: var(--text-light);
  box-shadow: 0 15px 35px rgba(0,0,0,0.18);
}

.stat-number {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3.2rem;
  color: var(--accent-gold);
  margin-bottom: 0.4rem;
  letter-spacing: 2px;
}

.stat-label {
  font-size: 1.05rem;
  letter-spacing: 0.6px;
  opacity: 0.95;
}

.stat-note {
  margin-top: 0.6rem;
  font-size: 0.95rem;
  opacity: 0.85;
}

/* =========================
   Services
========================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.2rem;
  margin-top: 2.2rem;
}

.service-card {
  background: var(--text-light);
  padding: 2.6rem;
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.10);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(0,0,0,0.16);
}

.service-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.badge {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 2px;
  font-size: 0.95rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(212,175,55,0.14);
  border: 1px solid rgba(212,175,55,0.35);
  color: var(--wood-dark);
  white-space: nowrap;
}

.service-icon { font-size: 3.2rem; line-height: 1; }

.service-card h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  color: var(--wood-dark);
  letter-spacing: 2px;
  margin-bottom: 0.4rem;
}

.service-card ul { list-style: none; margin-top: 1rem; }

.service-card li {
  padding: 0.45rem 0;
  padding-left: 1.4rem;
  position: relative;
  font-size: 1.02rem;
  color: var(--text-dark);
}

.service-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-weight: bold;
}

.services-mini-cta {
  margin-top: 2.4rem;
  padding: 1.6rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(93,64,55,0.12), rgba(212,175,55,0.10));
  border: 1px solid rgba(93,64,55,0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.services-mini-cta p {
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 820px;
}

/* =========================
   Gallery
========================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.6rem;
  margin-top: 2.2rem;
}

.gallery-item {
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(0,0,0,0.16);
  background: linear-gradient(135deg, var(--sage), var(--wood-light));
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,175,55,0.25), rgba(44,24,16,0.25));
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1rem 0.9rem;
  color: var(--text-light);
  background: linear-gradient(180deg, rgba(0,0,0,0.0), rgba(0,0,0,0.7));
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.25s ease;
}

.gallery-caption .title {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 2px;
  font-size: 1.4rem;
  margin-bottom: 0.2rem;
}

.gallery-caption .details {
  font-size: 0.98rem;
  opacity: 0.95;
  line-height: 1.35;
}

.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* Improve keyboard accessibility on clickable tiles */
.gallery-item:focus-visible {
  outline: 3px solid rgba(212,175,55,0.9);
  outline-offset: 4px;
}

/* =========================
   Lightbox
========================= */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.78);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  z-index: 2000;
}

.lightbox.open { display: flex; }

.lightbox-card {
  width: min(1100px, 96vw);
  background: var(--cream);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  display: grid;
  grid-template-columns: 1.6fr 1fr;
}

.lightbox-media {
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}

.lightbox-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lightbox-info {
  padding: 1.6rem;
  color: var(--text-dark);
}

.lightbox-info h3 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 3px;
  font-size: 2.1rem;
  color: var(--wood-dark);
  margin-bottom: 0.5rem;
}

.lightbox-info p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.lightbox-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.lightbox-close {
  margin-left: auto;
  background: transparent;
  border: 2px solid rgba(44,24,16,0.25);
  padding: 0.6rem 0.9rem;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--wood-dark);
}

.lightbox-close:hover { border-color: rgba(212,175,55,0.6); }

.lightbox-close:focus-visible,
.menu-btn:focus-visible,
.nav-links a:focus-visible,
.nav-cta:focus-visible,
.quick-btn:focus-visible,
.mobile-btn:focus-visible,
.wa-float:focus-visible,
.social-icon:focus-visible {
  outline: 3px solid rgba(212,175,55,0.9);
  outline-offset: 3px;
}

/* =========================
   Contact
========================= */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 2.4rem;
  align-items: start;
}

.contact-actions-card {
  background: var(--text-light);
  border-radius: 14px;
  padding: 2.6rem;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  border: 1px solid rgba(93,64,55,0.14);
}

.contact-actions-card h3 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 3px;
  font-size: 2.5rem;
  color: var(--wood-dark);
  margin-bottom: 0.8rem;
}

.contact-actions-lead {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.4rem;
  opacity: 0.95;
}

.quick-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin-bottom: 1.6rem;
}

.quick-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.95rem 1rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 1px;
  border: 2px solid rgba(93,64,55,0.28);
  color: var(--wood-dark);
  background: rgba(245,241,232,0.6);
  transition: transform 0.2s ease, filter 0.2s ease;
  text-align: center;
}

.quick-btn:hover { transform: translateY(-1px); filter: brightness(0.98); }

.quick-btn.primary {
  background: var(--accent-gold);
  border-color: transparent;
  color: var(--wood-dark);
}

.what-to-send h4 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 2px;
  font-size: 1.6rem;
  color: var(--wood-dark);
  margin-bottom: 0.6rem;
}

.what-to-send ul { list-style: none; padding: 0; margin: 0; }

.what-to-send li {
  padding: 0.5rem 0;
  padding-left: 1.4rem;
  position: relative;
  font-size: 1.05rem;
}

.what-to-send li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-weight: 900;
}

.note {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(93,64,55,0.10), rgba(212,175,55,0.10));
  border: 1px solid rgba(93,64,55,0.16);
  font-weight: 600;
}

.contact-info {
  background: linear-gradient(135deg, var(--wood-dark), var(--wood-medium));
  padding: 2.6rem;
  border-radius: 14px;
  color: var(--text-light);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.contact-info h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5rem;
  color: var(--accent-gold);
  margin-bottom: 1.6rem;
  letter-spacing: 3px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.3rem;
  font-size: 1.1rem;
  line-height: 1.5;
}

.info-icon {
  font-size: 1.7rem;
  margin-right: 1rem;
  color: var(--accent-gold);
  min-width: 30px;
  line-height: 1.2;
}

.info-item a {
  color: var(--cream);
  text-decoration: none;
  transition: color 0.2s ease;
}

.info-item a:hover { color: var(--accent-gold); }

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 10px 22px rgba(0,0,0,0.18);
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
  color: #ffffff;
  overflow: hidden;
}

.social-icon:hover { transform: translateY(-2px); filter: brightness(0.98); }

.social-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  display: block;
}

.social-icon.ig {
  background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-icon.fb { background: var(--fb-blue); }
.social-icon.wa { background: var(--wa-green); }

.info-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.4rem;
  flex-wrap: wrap;
  align-items: center;
}

.info-social .social-icon {
  width: 42px;
  height: 42px;
}

/* =========================
   Footer
========================= */
footer {
  background: var(--wood-dark);
  color: var(--text-light);
  text-align: center;
  padding: 2.7rem 2rem;
  margin-top: 4rem;
}

footer p {
  font-size: 1.05rem;
  letter-spacing: 1px;
  opacity: 0.95;
}

/* =========================
   Sticky mobile bottom bar
========================= */
.mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(44,24,16,0.96);
  border-top: 1px solid rgba(212,175,55,0.22);
  padding: 0.75rem 0.9rem;
  display: none;
  z-index: 1500;
  backdrop-filter: blur(8px);
}

.mobile-bar .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.mobile-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.9rem 0.9rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 1.05rem;
  border: 2px solid transparent;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.mobile-btn:active { transform: translateY(1px); }

.mobile-btn.call {
  background: var(--accent-gold);
  color: var(--wood-dark);
}

.mobile-btn.quote {
  background: transparent;
  border-color: rgba(212,175,55,0.6);
  color: var(--accent-gold);
}

/* =========================
   WhatsApp floating button
========================= */
.wa-float {
  position: fixed;
  right: 18px;
  bottom: 96px;
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background: var(--wa-green);
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
  z-index: 1600;
  border: 1px solid rgba(255,255,255,0.22);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.wa-float:hover { transform: translateY(-2px); filter: brightness(0.98); }

.wa-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
  display: block;
}

/* =========================
   Reveal
========================= */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   Hero background zoom
========================= */
@keyframes heroZoom {
  from { background-size: 105%; }
  to { background-size: 110%; }
}

/* =========================
   Reduced motion
========================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero { animation: none !important; }
}

/* =========================
   Responsive
========================= */
@media (max-width: 980px) {
  .nav-cta { display: none; }
}

@media (max-width: 860px) {
  nav .container { padding: 0 1.25rem; }
  .menu-btn { display: inline-flex; }

  .nav-links {
    position: absolute;
    top: 86px;
    left: 0;
    right: 0;
    background: rgba(44,24,16,0.98);
    border-top: 1px solid rgba(212,175,55,0.22);
    padding: 1rem 1.25rem 1.25rem;
    flex-direction: column;
    gap: 0.6rem;
    display: none;
    justify-content: flex-start;
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    width: 100%;
    padding: 0.9rem 0.6rem;
    border-radius: 10px;
    background: rgba(245,241,232,0.06);
  }

  .hero h1 { font-size: 3rem; }
  .hero .tagline { font-size: 1.25rem; }

  h2 { font-size: 2.6rem; }

  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-image { min-height: 320px; height: auto; }

  .stats { grid-template-columns: 1fr; }

  .lightbox-card { grid-template-columns: 1fr; }
  .lightbox-info { padding: 1.2rem; }

  .mobile-bar { display: block; }
  body { padding-bottom: 82px; }

  .hero {
    min-height: calc(100vh - 86px - 82px);
    animation: none;
  }

  .quick-buttons { grid-template-columns: 1fr; }
  .wa-float { bottom: 170px; }
}

/* =========================
   Portfolio page only
========================= */
.page-portfolio section {
  padding-top: 4rem;
}

.page-portfolio .gallery-item {
  cursor: pointer;
}

/* Hide homepage style captions on portfolio tiles */
.page-portfolio .gallery-caption {
  display: none;
}

/* Portfolio lightbox layout */
.page-portfolio .lightbox-card {
  grid-template-columns: 1fr;
  width: min(1100px, 96vw);
  position: relative;
}

.page-portfolio .lightbox-info {
  display: none;
}

.page-portfolio .lightbox-media {
  min-height: 0;
}

.page-portfolio .lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  background: rgba(245, 241, 232, 0.95);
  border-color: rgba(44, 24, 16, 0.25);
}
