/*
Theme Name: Victory Garage
Theme URI: http://www.rgvictorygarage.com
Author: nlinksolution
Author URI: https://www.nlinksolution.com
Description: A premium, fully-customizable WordPress theme for Ross Godber's Victory Garage. Every section is editable from Appearance → Customize. Services are managed as a Custom Post Type. Includes AJAX inquiry form with Google reCAPTCHA v3.
Version: 2.0.0
Text Domain: victory-garage
*/

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

:root {
  --orange: #F47C20;
  --orange-dark: #D4640A;
  --blue: #4BB8E8;
  --blue-dark: #2A9AC8;
  --dark: #1A1A2E;
  --charcoal: #2D2D2D;
  --mid: #555;
  --light-bg: #F5F5F5;
  --white: #ffffff;
  --section-pad: 80px 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--charcoal);
  line-height: 1.6;
  background: var(--white);
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(26,26,46,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--orange);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 120px;
}

.nav-logo {
  display: flex; align-items: center; text-decoration: none;
  height: 100%;
  z-index: 1010;
}
.nav-logo img {
  height: 104px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
  border: 2px solid var(--orange);
  background: #1A1A2E;
  box-shadow: 0 4px 15px rgba(0,0,0,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-logo:hover img {
  transform: scale(1.04);
  box-shadow: 0 6px 20px rgba(244,124,32,0.45);
}

.nav-links {
  display: flex; align-items: center; gap: 32px; list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.85); text-decoration: none;
  font-size: 0.88rem; font-weight: 500; letter-spacing: 0.5px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--orange); }

.nav-cta {
  background: var(--orange); color: var(--white) !important;
  padding: 9px 20px; border-radius: 4px; font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--orange-dark) !important; color: var(--white) !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--white); transition: all 0.3s;
}

.mobile-menu {
  display: none; position: fixed; top: 120px; left: 0; right: 0;
  background: var(--dark); z-index: 999;
  padding: 24px 5%; flex-direction: column; gap: 0;
  border-bottom: 2px solid var(--orange);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,0.85); text-decoration: none;
  font-size: 1rem; font-weight: 500; padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--orange); }

/* ── HERO ── */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding-top: 120px;
}

.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.35);
}

.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(244,124,32,0.18) 0%, transparent 55%, rgba(75,184,232,0.12) 100%);
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 40px 20px;
  max-width: 860px;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(244,124,32,0.15); border: 1px solid rgba(244,124,32,0.4);
  color: var(--orange); padding: 6px 16px; border-radius: 2px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem; letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.2rem, 9vw, 7rem);
  line-height: 0.95; color: var(--white);
  letter-spacing: 2px; margin-bottom: 8px;
}

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

.hero-tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--blue); letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-sub {
  color: rgba(255,255,255,0.78); font-size: 1.05rem;
  max-width: 560px; margin: 0 auto 36px;
}

.hero-btns {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

.btn-primary {
  background: var(--orange); color: var(--white);
  padding: 14px 32px; border-radius: 3px;
  font-weight: 700; font-size: 0.95rem; letter-spacing: 0.5px;
  text-decoration: none; transition: all 0.25s;
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark); border-color: var(--orange-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent; color: var(--white);
  padding: 14px 32px; border-radius: 3px;
  font-weight: 600; font-size: 0.95rem; letter-spacing: 0.5px;
  text-decoration: none; transition: all 0.25s;
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  border-color: var(--blue); color: var(--blue);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: rgba(255,255,255,0.4);
  font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll i { animation: bounce 1.8s infinite; }
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* ── TRUST BAR ── */
#trust {
  background: var(--dark);
  padding: 20px 5%;
  display: flex; flex-wrap: wrap;
  justify-content: center; align-items: center; gap: 0;
}

.trust-item {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.trust-item:last-child { border-right: none; }
.trust-item i { color: var(--orange); font-size: 1.1rem; }
.trust-item span {
  color: rgba(255,255,255,0.82); font-size: 0.88rem;
  font-weight: 500; letter-spacing: 0.3px;
}

/* ── SECTION SHARED ── */
section { padding: var(--section-pad); }

.container { max-width: 1140px; margin: 0 auto; padding: 0 5%; }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 12px;
}
.section-label::before {
  content: ''; display: block; width: 20px; height: 2px;
  background: var(--orange);
}

.section-h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: 1.5px; line-height: 1; color: var(--dark);
  margin-bottom: 14px;
}
.section-h2 .hl { color: var(--orange); }

.section-sub {
  color: var(--mid); font-size: 1.02rem;
  max-width: 560px; line-height: 1.7;
}

/* ── DIAGONAL STRIPE DIVIDER ── */
.stripe-divider {
  height: 56px; width: 100%; overflow: hidden;
  position: relative;
}
.stripe-divider svg { display: block; width: 100%; height: 100%; }

/* ── SERVICES ── */
#services { background: var(--light-bg); }

.services-intro { margin-bottom: 52px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}

.service-card {
  background: var(--white); border-radius: 4px;
  padding: 32px 28px;
  border-top: 3px solid transparent;
  box-shadow: 0 2px 18px rgba(0,0,0,0.06);
  transition: all 0.3s; cursor: default;
  opacity: 0; transform: translateY(24px);
}
.service-card.visible { opacity: 1; transform: translateY(0); }
.service-card:hover {
  border-top-color: var(--orange);
  box-shadow: 0 8px 32px rgba(244,124,32,0.15);
  transform: translateY(-4px);
}

.service-icon {
  width: 52px; height: 52px; border-radius: 3px;
  background: rgba(244,124,32,0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.service-icon i { color: var(--orange); font-size: 1.4rem; }

.service-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25rem; font-weight: 700; letter-spacing: 0.5px;
  color: var(--dark); margin-bottom: 8px;
}
.service-card p { font-size: 0.92rem; color: var(--mid); line-height: 1.65; }

/* ── ABOUT ── */
#about { background: var(--white); }

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

.about-img-wrap {
  position: relative; border-radius: 4px; overflow: hidden;
}
.about-img-wrap::before {
  content: '';
  position: absolute; top: -12px; left: -12px;
  width: 60%; height: 60%;
  border-left: 4px solid var(--orange);
  border-top: 4px solid var(--orange);
  z-index: 1; pointer-events: none;
}
.about-img-wrap::after {
  content: '';
  position: absolute; bottom: -12px; right: -12px;
  width: 60%; height: 60%;
  border-right: 4px solid var(--blue);
  border-bottom: 4px solid var(--blue);
  z-index: 1; pointer-events: none;
}
.about-img-wrap img {
  display: block; width: 100%; height: 420px;
  object-fit: cover; border-radius: 4px;
  position: relative; z-index: 0;
}

.about-text .section-sub { max-width: 100%; margin-bottom: 24px; }

.about-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin: 28px 0;
}
.stat-box {
  background: var(--light-bg); padding: 18px 20px; border-radius: 3px;
  border-left: 3px solid var(--orange);
}
.stat-box .num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem; color: var(--orange); line-height: 1;
}
.stat-box .lbl {
  font-size: 0.82rem; color: var(--mid); font-weight: 500; margin-top: 2px;
}

/* ── WHY US ── */
#why { background: var(--dark); padding: var(--section-pad); }
#why .section-h2 { color: var(--white); }
#why .section-sub { color: rgba(255,255,255,0.6); }

.why-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px; margin-top: 48px;
}

.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px; padding: 28px;
  transition: border-color 0.3s;
  opacity: 0; transform: translateY(20px);
}
.why-card.visible { opacity: 1; transform: translateY(0); }
.why-card:hover { border-color: rgba(244,124,32,0.4); }

.why-card i { color: var(--orange); font-size: 1.6rem; margin-bottom: 14px; display: block; }
.why-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem; font-weight: 700; color: var(--white);
  letter-spacing: 0.5px; margin-bottom: 8px;
}
.why-card p { color: rgba(255,255,255,0.58); font-size: 0.9rem; line-height: 1.65; }

/* ── GALLERY ── */
#gallery { background: var(--light-bg); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 12px; margin-top: 40px;
}

.gallery-item {
  overflow: hidden; border-radius: 3px; position: relative;
  opacity: 0; transform: scale(0.96);
  cursor: pointer;
}
.gallery-item.visible { opacity: 1; transform: scale(1); }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.5s;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:first-child { grid-row: 1 / 3; }

.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(26,26,46,0); transition: background 0.3s, opacity 0.3s;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.6rem; opacity: 0;
}
.gallery-item:hover .gallery-overlay {
  background: rgba(26,26,46,0.65);
  opacity: 1;
}

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(10, 10, 18, 0.95);
  z-index: 2000; display: none;
  align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s ease;
}
.lightbox.open { display: flex; opacity: 1; }
.lightbox-content {
  position: relative; max-width: 90%; max-height: 85vh;
  display: flex; flex-direction: column; align-items: center;
}
.lightbox img {
  max-width: 100%; max-height: 80vh; object-fit: contain;
  border-radius: 4px; box-shadow: 0 10px 40px rgba(0,0,0,0.8);
  transform: scale(0.95); opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.lightbox.open img { transform: scale(1); opacity: 1; }
.lightbox-caption {
  color: rgba(255,255,255,0.85); margin-top: 16px;
  font-size: 0.95rem; font-weight: 500; text-align: center; letter-spacing: 0.5px;
}
.lightbox-close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: none; color: var(--white);
  font-size: 2rem; cursor: pointer; transition: color 0.2s, transform 0.2s; z-index: 2002;
}
.lightbox-close:hover { color: var(--orange); transform: scale(1.1); }
.lightbox-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  color: var(--white); font-size: 1.5rem; width: 48px; height: 48px;
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; z-index: 2001;
}
.lightbox-arrow:hover { background: var(--orange); border-color: var(--orange); }
.lightbox-arrow.prev { left: 24px; }
.lightbox-arrow.next { right: 24px; }

/* ── CONTACT ── */
#contact { background: var(--white); }

.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 60px; align-items: start;
}

.contact-info h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem; font-weight: 700; color: var(--dark);
  letter-spacing: 0.5px; margin-bottom: 20px;
}

.contact-item {
  display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 20px; padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.contact-item:last-of-type { border-bottom: none; }

.ci-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(244,124,32,0.1); border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
}
.ci-icon i { color: var(--orange); font-size: 1rem; }

.ci-text .label {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; color: var(--mid); margin-bottom: 2px;
}
.ci-text a, .ci-text p {
  color: var(--dark); font-weight: 500; font-size: 0.97rem;
  text-decoration: none; transition: color 0.2s;
}
.ci-text a:hover { color: var(--orange); }

/* Form */
.contact-form { background: var(--light-bg); padding: 36px; border-radius: 4px; }

.contact-form h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem; font-weight: 700; color: var(--dark);
  margin-bottom: 24px; letter-spacing: 0.5px;
}

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

.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 0.82rem; font-weight: 600;
  color: var(--charcoal); margin-bottom: 6px; letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid #ddd; border-radius: 3px;
  font-family: 'Inter', sans-serif; font-size: 0.92rem;
  color: var(--charcoal); background: var(--white);
  transition: border-color 0.2s; outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); }
.form-group textarea { resize: vertical; min-height: 110px; }

.btn-submit {
  width: 100%; background: var(--orange); color: var(--white);
  padding: 14px; border: none; border-radius: 3px;
  font-family: 'Inter', sans-serif; font-weight: 700;
  font-size: 1rem; cursor: pointer; transition: all 0.25s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-submit:hover { background: var(--orange-dark); transform: translateY(-1px); }
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

.form-message {
  display: none; text-align: center; padding: 20px;
  border-radius: 4px; margin-top: 12px;
}
.form-message.success {
  display: block; color: #2a7a3b;
  background: #eaf5ec; border: 1px solid #b7dfbe;
}
.form-message.error {
  display: block; color: #8b1a1a;
  background: #fdf0f0; border: 1px solid #f5c6c6;
}
.form-message i { font-size: 2rem; display: block; margin-bottom: 8px; }

/* ── CTA BAND ── */
#cta-band {
  background: linear-gradient(135deg, var(--orange) 0%, #E8610A 100%);
  padding: 60px 5%; text-align: center;
}
#cta-band h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--white); letter-spacing: 2px; margin-bottom: 10px;
}
#cta-band p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 28px; }
#cta-band .btn-white {
  background: var(--white); color: var(--orange);
  padding: 14px 36px; border-radius: 3px;
  font-weight: 700; font-size: 1rem; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.25s;
}
#cta-band .btn-white:hover { background: var(--dark); color: var(--white); transform: translateY(-2px); }

/* ── FOOTER ── */
footer {
  background: var(--dark); color: rgba(255,255,255,0.55);
  padding: 52px 5% 28px;
}

.footer-top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}

.footer-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; margin-bottom: 16px;
}
.footer-logo img {
  height: 48px; width: auto; object-fit: contain;
  border-radius: 6px; border: 1.5px solid var(--orange); background: #1A1A2E;
}
.footer-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.footer-logo-text span:first-child {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem; letter-spacing: 2px; color: var(--orange);
}
.footer-logo-text span:last-child {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem; letter-spacing: 3px;
  text-transform: uppercase; color: var(--blue);
}
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 300px; }

.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--white); margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.55); text-decoration: none;
  font-size: 0.88rem; transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--orange); }
.footer-col p { font-size: 0.88rem; margin-bottom: 8px; }
.footer-col a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; }
.footer-bottom a { color: var(--orange); text-decoration: none; }
.footer-bottom a:hover { text-decoration: underline; }

/* ── FLOATING CTA ── */
.float-cta {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  background: var(--orange); color: var(--white);
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(244,124,32,0.5);
  text-decoration: none; font-size: 1.3rem;
  transition: all 0.25s;
  animation: pulse-float 2.5s infinite;
}
.float-cta:hover { background: var(--orange-dark); transform: scale(1.1); }
@keyframes pulse-float {
  0%,100% { box-shadow: 0 4px 20px rgba(244,124,32,0.5); }
  50% { box-shadow: 0 4px 30px rgba(244,124,32,0.8); }
}

/* ── TRANSITIONS ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RECAPTCHA BADGE ── */
.grecaptcha-badge { visibility: hidden !important; }
.recaptcha-notice {
  font-size: 0.75rem; color: var(--mid); margin-top: 10px; text-align: center;
}
.recaptcha-notice a { color: var(--orange); text-decoration: none; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap img { height: 300px; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item:first-child { grid-row: auto; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  nav { height: 108px; }
  .mobile-menu { top: 108px; }
  #hero { padding-top: 108px; }
  .nav-logo img { height: 92px; }
}

@media (max-width: 600px) {
  :root { --section-pad: 56px 0; }
  .form-row { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .footer-top { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); width: 100%; padding: 12px 0; }
  #trust { flex-direction: column; gap: 0; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-btns { flex-direction: column; align-items: center; }
  nav { height: 96px; }
  .mobile-menu { top: 96px; }
  #hero { padding-top: 96px; }
  .nav-logo img { height: 80px; }
  .lightbox-arrow { width: 40px; height: 40px; font-size: 1.2rem; }
  .lightbox-arrow.prev { left: 12px; }
  .lightbox-arrow.next { right: 12px; }
  .lightbox-close { top: 12px; right: 12px; }
}
