:root {
  --bg: #0C0C0C;
  --bg-elevated: #161616;
  --bg-card: #1A1A1A;
  --fg: #E8E4DF;
  --fg-muted: #8A8580;
  --fg-dim: #5A5550;
  --accent: #D4A853;
  --accent-dim: rgba(212, 168, 83, 0.15);
  --border: #2A2825;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === HERO === */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 10vw 80px;
  position: relative;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(212, 168, 83, 0.06) 0%, transparent 60%),
    var(--bg);
}

.hero-badge {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 40px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 32px;
}

.hero-sub {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.7;
}

.hero-line {
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin-top: 48px;
}

/* === SECTION LABELS === */
.section-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--fg-dim);
  margin-bottom: 48px;
  padding-left: 10vw;
}

/* === SERVICES === */
.services {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  margin: 0 10vw;
}

.service-card {
  background: var(--bg);
  padding: 48px 40px;
  position: relative;
  transition: background 0.3s ease;
}

.service-card:hover {
  background: var(--bg-elevated);
}

.service-number {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

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

/* === PROCESS === */
.process {
  padding: 100px 10vw;
  border-top: 1px solid var(--border);
}

.process .section-label {
  padding-left: 0;
}

.process-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.process-statement h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  position: sticky;
  top: 120px;
}

.process-step {
  display: flex;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.process-step:first-child {
  border-top: 1px solid var(--border);
}

.step-marker {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 8px;
  flex-shrink: 0;
}

.step-text {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

.step-text strong {
  color: var(--fg);
  font-weight: 500;
}

/* === AREA === */
.area {
  padding: 100px 10vw;
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
}

.area .section-label {
  padding-left: 0;
}

.area-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.area-content > p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 36px;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-tags span {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
  transition: all 0.25s ease;
}

.area-tags span:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* === CLOSING === */
.closing {
  padding: 120px 10vw;
  border-top: 1px solid var(--border);
  background: 
    radial-gradient(ellipse at 80% 50%, rgba(212, 168, 83, 0.04) 0%, transparent 50%),
    var(--bg);
}

.closing-content {
  max-width: 640px;
}

.closing-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.closing-content p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* === FOOTER === */
.site-footer {
  padding: 48px 10vw;
  border-top: 1px solid var(--border);
}

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

.footer-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--fg-dim);
}

.footer-location {
  font-size: 0.85rem;
  color: var(--fg-dim);
}

/* === MOBILE === */
@media (max-width: 768px) {
  .hero {
    padding: 100px 6vw 60px;
    min-height: 80vh;
  }

  .section-label {
    padding-left: 6vw;
  }

  .services-grid {
    grid-template-columns: 1fr;
    margin: 0 6vw;
  }

  .service-card {
    padding: 36px 28px;
  }

  .process {
    padding: 80px 6vw;
  }

  .process .section-label {
    padding-left: 0;
  }

  .process-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .process-statement h2 {
    position: static;
  }

  .area {
    padding: 80px 6vw;
  }

  .area .section-label {
    padding-left: 0;
  }

  .closing {
    padding: 80px 6vw;
  }

  .footer-content {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.8rem;
  }

  .service-card h3 {
    font-size: 1.25rem;
  }
}

/* === NAV === */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 10vw;
  background: rgba(12, 12, 12, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.01em;
}

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

.nav-links a {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

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

.nav-links .nav-cta {
  background: var(--accent);
  color: #0C0C0C;
  padding: 9px 20px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.nav-links .nav-cta:hover {
  background: #e0b55f;
  color: #0C0C0C;
}

/* Nav pushes hero down */
.hero {
  padding-top: 180px !important;
}

/* === BUTTONS === */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #0C0C0C;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 14px 32px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease;
}

.btn-primary:hover {
  background: #e0b55f;
}

.btn-outline {
  display: inline-block;
  border: 1px solid var(--border);
  color: var(--fg-muted);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 12px 28px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-top: 24px;
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Hero CTA */
.hero-cta {
  display: inline-block;
  margin-top: 40px;
  background: var(--accent);
  color: #0C0C0C;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.hero-cta:hover {
  background: #e0b55f;
}

/* === CONTACT PAGE === */
.contact-hero {
  padding: 160px 10vw 80px;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(212, 168, 83, 0.06) 0%, transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--border);
}

.contact-hero-inner {
  max-width: 560px;
}

.contact-body {
  padding: 80px 10vw;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 80px;
  align-items: start;
}

/* Form */
.quote-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-group label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--fg-dim);
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s ease;
  -webkit-appearance: none;
}

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

.form-group select option {
  background: var(--bg-elevated);
  color: var(--fg);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

.form-group textarea {
  resize: vertical;
  line-height: 1.6;
}

.form-error {
  background: rgba(180, 60, 60, 0.15);
  border: 1px solid rgba(180, 60, 60, 0.3);
  color: #e08080;
  padding: 14px 20px;
  border-radius: 4px;
  font-size: 0.9rem;
}

.form-success {
  padding: 60px 0;
  text-align: left;
}

.form-success-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-dim);
  border: 1px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 24px;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.form-success p {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 420px;
}

/* Sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 8px;
}

.sidebar-block {
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.sidebar-label {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--fg-dim);
  margin-bottom: 10px;
}

.sidebar-value {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--fg);
}

.sidebar-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sidebar-services span {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--fg-muted);
}

/* Contact page mobile */
@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-sidebar {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
  }

  .sidebar-block {
    flex: 1 1 140px;
  }
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-hero {
    padding: 140px 6vw 60px;
  }

  .contact-body {
    padding: 48px 6vw;
  }
}

/* === NAV DROPDOWN === */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-trigger {
  background: none;
  border: none;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease;
  padding: 0;
}
.nav-dropdown-trigger:hover { color: var(--fg); }
.nav-dropdown-arrow { font-size: 0.65rem; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 0;
  min-width: 160px;
  z-index: 200;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.nav-dropdown-menu a {
  display: block;
  padding: 8px 20px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: all 0.15s ease;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover { color: var(--accent); background: var(--accent-dim); }
.nav-dropdown:hover .nav-dropdown-menu { display: block; }

/* Nav mobile */
@media (max-width: 640px) {
  .site-nav {
    padding: 16px 6vw;
  }

  .nav-links {
    gap: 20px;
  }

  .nav-links a:not(.nav-cta):not(.nav-dropdown) {
    display: none;
  }

  .nav-dropdown-menu {
    left: auto;
    right: 0;
    transform: none;
  }
}

/* === ACTIVE NAV LINK === */
.nav-active {
  color: var(--accent) !important;
}

/* === PROJECTS PAGE === */
.projects-hero {
  padding: 160px 10vw 80px;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(212, 168, 83, 0.05) 0%, transparent 55%),
    var(--bg);
  border-bottom: 1px solid var(--border);
}

.projects-hero-inner {
  max-width: 640px;
}

.projects-hero .hero-badge {
  margin-bottom: 28px;
}

.projects-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 20px;
}

/* Gallery section */
.projects-gallery-section {
  padding: 80px 10vw;
}

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

/* Project card */
.project-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.project-card:hover {
  border-color: rgba(212, 168, 83, 0.4);
  transform: translateY(-2px);
}

/* Before/after comparison */
.ba-comparison {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-card);
}

.ba-label {
  position: absolute;
  top: 14px;
  z-index: 3;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  padding: 5px 12px;
  border-radius: 3px;
  backdrop-filter: blur(8px);
}

.ba-label--before {
  left: 14px;
  background: rgba(12, 12, 12, 0.75);
  color: var(--fg-muted);
  border: 1px solid var(--border);
}

.ba-label--after {
  right: 14px;
  background: rgba(212, 168, 83, 0.85);
  color: #0C0C0C;
  border: 1px solid var(--accent);
}

.ba-images {
  position: absolute;
  inset: 0;
}

.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-toggle {
  position: absolute;
  bottom: 14px;
  right: 14px;
  z-index: 4;
  background: rgba(12, 12, 12, 0.8);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--fg-muted);
  transition: all 0.2s ease;
  backdrop-filter: blur(8px);
}

.ba-toggle:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Project meta */
.project-meta {
  padding: 28px 28px 24px;
}

.project-type-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(212, 168, 83, 0.25);
  padding: 4px 12px;
  border-radius: 3px;
  margin-bottom: 12px;
}

.project-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.project-description {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.project-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.project-year {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--fg-dim);
}

.project-cta-link {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.project-cta-link:hover {
  color: #e0b55f;
}

/* CTA section */
.projects-cta {
  padding: 100px 10vw;
  border-top: 1px solid var(--border);
  background:
    radial-gradient(ellipse at 50% 50%, rgba(212, 168, 83, 0.04) 0%, transparent 55%),
    var(--bg);
  text-align: center;
}

.projects-cta-inner {
  max-width: 520px;
  margin: 0 auto;
}

.cta-label {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--fg-dim);
  margin-bottom: 28px;
}

.projects-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 16px;
}

.projects-cta p {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 32px;
}

/* === LIGHTBOX === */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(8, 8, 8, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

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

.lightbox-content {
  width: 100%;
  max-width: 1000px;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.lightbox-meta {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--accent);
  text-transform: uppercase;
}

.lightbox-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
}

.lightbox-image-wrap {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}

.lightbox-image-label {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  background: rgba(12, 12, 12, 0.8);
  color: var(--fg-muted);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 3px;
  z-index: 2;
  backdrop-filter: blur(6px);
}

.lightbox-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.lightbox-description {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.65;
  text-align: center;
  max-width: 600px;
}

.lightbox-counter {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--fg-dim);
  letter-spacing: 0.1em;
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 20px;
  background: rgba(20, 20, 20, 0.9);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--fg-muted);
  transition: all 0.2s ease;
  z-index: 1001;
  backdrop-filter: blur(8px);
}

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

.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(20, 20, 20, 0.9);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--fg-muted);
  transition: all 0.2s ease;
  z-index: 1001;
  backdrop-filter: blur(8px);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover,
.lightbox-next:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Mobile gallery */
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .lightbox-images {
    grid-template-columns: 1fr;
  }

  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

@media (max-width: 640px) {
  .projects-hero {
    padding: 140px 6vw 60px;
  }

  .projects-gallery-section {
    padding: 48px 6vw;
  }

  .projects-cta {
    padding: 80px 6vw;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
  }

  .lightbox-prev { left: 6px; }
  .lightbox-next { right: 6px; }
}