/* ============================================
   IN HIS IMAGE PHOTOGRAPHY
   A faith-inspired photography website
   ============================================ */

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

:root {
  --gold: #c9a96e;
  --gold-light: #e8d5a8;
  --gold-dark: #a07d3f;
  --cream: #faf6f0;
  --cream-dark: #f0e8d8;
  --charcoal: #2c2c2c;
  --charcoal-light: #4a4a4a;
  --sage: #8a9a7b;
  --sage-light: #b5c4a8;
  --warm-white: #fffdf8;
  --text: #3a3a3a;
  --text-light: #6b6b6b;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', 'Helvetica Neue', sans-serif;
  --font-script: 'Great Vibes', cursive;
}

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

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--warm-white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
}

.section-subtitle {
  font-family: var(--font-script);
  color: var(--gold);
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--charcoal);
  margin-bottom: 1rem;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.section-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem auto;
  position: relative;
}

.section-divider::before {
  content: '\2727';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--warm-white);
  padding: 0 10px;
  color: var(--gold);
  font-size: 0.9rem;
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.2rem 2rem;
  transition: all 0.4s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(250, 246, 240, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 0.8rem 2rem;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: white;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 300;
  transition: color 0.4s ease;
}

.nav-logo span {
  font-family: var(--font-script);
  text-transform: none;
  letter-spacing: 0;
  font-size: 1.6rem;
  color: var(--gold-light);
}

.navbar.scrolled .nav-logo {
  color: var(--charcoal);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-links a {
  color: white;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  transition: color 0.4s ease;
}

.navbar.scrolled .nav-links a {
  color: var(--text);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

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

.navbar.scrolled .nav-links a:hover {
  color: var(--gold);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: white;
  transition: all 0.3s ease;
}

.navbar.scrolled .hamburger span {
  background: var(--charcoal);
}

/* ---------- Hero ---------- */
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/dual-cameras-back.jpeg');
  background-size: cover;
  background-position: center 20%;
  filter: brightness(0.5);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.2) 0%,
    rgba(0,0,0,0.4) 50%,
    rgba(0,0,0,0.6) 100%
  );
}

.hero-content {
  position: relative;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 2rem;
}

.hero-scripture {
  font-family: var(--font-script);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.3s forwards;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.6s forwards;
}

.hero-title em {
  font-style: normal;
  font-family: var(--font-script);
  text-transform: none;
  letter-spacing: 0;
  display: block;
  font-size: 0.5em;
  color: var(--gold-light);
  margin-bottom: 0.3em;
}

.hero-tagline {
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 300;
  margin-top: 1rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.9s forwards;
}

.hero-cta {
  display: inline-block;
  margin-top: 2.5rem;
  padding: 14px 40px;
  border: 1px solid var(--gold-light);
  color: var(--gold-light);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.4s ease;
  opacity: 0;
  animation: fadeUp 1s ease 1.2s forwards;
}

.hero-cta:hover {
  background: var(--gold-light);
  color: var(--charcoal);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeUp 1s ease 1.5s forwards;
}

.scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold-light), transparent);
  animation: scrollPulse 2s ease infinite;
}

/* ---------- About ---------- */
.about {
  padding: 8rem 2rem;
  background: var(--warm-white);
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-images {
  position: relative;
  height: 600px;
}

.about-img-main {
  width: 70%;
  height: 80%;
  object-fit: cover;
  object-position: top;
  border-radius: 2px;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.about-img-accent {
  width: 55%;
  height: 50%;
  object-fit: cover;
  object-position: top;
  border-radius: 2px;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 3;
  border: 5px solid var(--warm-white);
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.about-frame {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 70%;
  height: 80%;
  border: 1px solid var(--gold-light);
  border-radius: 2px;
  z-index: 1;
}

.about-text {
  padding-left: 1rem;
}

.about-text .section-divider {
  margin: 1.5rem 0;
}

.about-description {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.9;
}

.about-verse {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold-dark);
  font-size: 1.1rem;
  padding: 1.5rem;
  border-left: 2px solid var(--gold-light);
  background: rgba(201, 169, 110, 0.05);
  margin: 2rem 0;
  line-height: 1.6;
}

.about-verse cite {
  display: block;
  font-style: normal;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 0.8rem;
}

.about-signature {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--gold);
  margin-top: 1.5rem;
}

/* ---------- Featured / Bible-Boots-Camera ---------- */
.featured-banner {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.featured-banner-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/bible-boots-camera.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: brightness(0.55) sepia(0.2);
}

.featured-banner-content {
  position: relative;
  text-align: center;
  color: white;
  max-width: 700px;
  padding: 0 2rem;
}

.featured-banner-content .section-subtitle {
  color: var(--gold-light);
  font-size: 1.8rem;
}

.featured-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  margin: 1rem 0;
}

.featured-quote cite {
  display: block;
  font-style: normal;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 1rem;
  color: var(--gold-light);
}

/* ---------- Portfolio / Gallery ---------- */
.portfolio {
  padding: 8rem 2rem;
  background: var(--cream);
}

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

.portfolio-header .section-divider::before {
  background: var(--cream);
}

.portfolio-grid {
  max-width: 1300px;
  margin: 0 auto;
}

.portfolio-category-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  text-align: center;
  color: var(--charcoal);
  margin: 3rem 0 1.5rem;
  letter-spacing: 0.05em;
}

.portfolio-category-title:first-child {
  margin-top: 0;
}

.portfolio-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
  aspect-ratio: 3/4;
}

.portfolio-item.landscape {
  aspect-ratio: 4/3;
  grid-column: span 2;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.8s ease, filter 0.5s ease;
}

.portfolio-item:hover img {
  transform: scale(1.05);
  filter: brightness(0.7);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s ease;
  color: white;
  padding: 2rem;
  text-align: center;
}

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

.portfolio-overlay h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 0.3rem;
}

.portfolio-overlay p {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* ---------- Services ---------- */
.services {
  padding: 8rem 2rem;
  background: var(--warm-white);
}

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

.services-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.service-card {
  text-align: center;
  padding: 3rem 2rem;
  border: 1px solid var(--cream-dark);
  border-radius: 2px;
  transition: all 0.4s ease;
  background: var(--warm-white);
}

.service-card:hover {
  border-color: var(--gold-light);
  box-shadow: 0 15px 50px rgba(0,0,0,0.06);
  transform: translateY(-5px);
}

.service-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--charcoal);
  margin-bottom: 1rem;
  font-weight: 400;
}

.service-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.service-price {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--gold-dark);
  font-style: italic;
}

/* ---------- Testimonial / Quote Banner ---------- */
.testimonial-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 2rem;
}

.testimonial-banner-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/shooting-field-cattle.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: brightness(0.4);
}

.testimonial-content {
  position: relative;
  text-align: center;
  color: white;
  max-width: 750px;
  padding: 0 2rem;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* ---------- Behind the Lens ---------- */
.behind-lens {
  padding: 8rem 2rem;
  background: var(--cream);
}

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

.behind-lens-header .section-divider::before {
  background: var(--cream);
}

.behind-lens-message {
  max-width: 700px;
  margin: 0 auto 2.5rem;
  text-align: center;
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.8;
}

.behind-lens-message p {
  margin-bottom: 1rem;
}

.behind-lens-message p:first-child {
  font-family: var(--font-accent);
  font-size: 1.6rem;
}

.behind-lens-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.behind-lens-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: top;
  border-radius: 2px;
  filter: grayscale(20%);
  transition: all 0.5s ease;
}

.behind-lens-grid img:hover {
  filter: grayscale(0%);
}

/* ---------- Contact ---------- */
.contact {
  padding: 8rem 2rem;
  background: var(--warm-white);
}

.contact-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-info {
  padding-top: 1rem;
}

.contact-info .section-divider {
  margin: 1.5rem 0;
}

.contact-description {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 2rem;
}

.contact-details {
  list-style: none;
  margin-bottom: 2rem;
}

.contact-details li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 0.9rem;
  color: var(--text-light);
}

.contact-details li .detail-icon {
  color: var(--gold);
  width: 20px;
  text-align: center;
}

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

.contact-socials a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--cream-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.contact-socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.contact-form {
  background: var(--cream);
  padding: 3rem;
  border-radius: 2px;
}

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

.form-group label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--cream-dark);
  background: var(--warm-white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text);
  border-radius: 2px;
  transition: border-color 0.3s ease;
  appearance: none;
}

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

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

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

.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--charcoal);
  color: white;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.4s ease;
  border-radius: 2px;
}

.btn-submit:hover {
  background: var(--gold-dark);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 4rem 2rem;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: white;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.footer-logo span {
  font-family: var(--font-script);
  text-transform: none;
  letter-spacing: 0;
  font-size: 1.6rem;
  color: var(--gold-light);
}

.footer-verse {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.4);
  margin: 1rem 0 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  margin-bottom: 2rem;
}

.footer-links a {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-social {
  margin-top: 1.5rem;
}

.footer-social a {
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}

.footer-social a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

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

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

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

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

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

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 2px;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  font-weight: 300;
  transition: color 0.3s;
  font-family: var(--font-serif);
}

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

/* ---------- Mobile Nav Overlay ---------- */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(44, 44, 44, 0.98);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-nav.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  color: white;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  transition: color 0.3s;
}

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

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-images {
    height: 450px;
    max-width: 500px;
    margin: 0 auto;
  }

  .about-text {
    padding-left: 0;
    text-align: center;
  }

  .about-text .section-divider {
    margin: 1.5rem auto;
  }

  .about-verse {
    text-align: left;
  }

  .portfolio-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-item.landscape {
    grid-column: span 1;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .behind-lens-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .contact-info {
    text-align: center;
  }

  .contact-info .section-divider {
    margin: 1.5rem auto;
  }

  .contact-details li {
    justify-content: center;
  }

  .contact-socials {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-title {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .portfolio-category-grid {
    grid-template-columns: 1fr;
  }

  .behind-lens-grid {
    grid-template-columns: 1fr 1fr;
  }

  .behind-lens-grid img {
    height: 220px;
  }

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

  .featured-banner,
  .testimonial-banner {
    background-attachment: scroll;
  }

  .featured-banner-bg,
  .testimonial-banner-bg {
    background-attachment: scroll;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .about-images {
    height: 350px;
  }

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

  .behind-lens-grid {
    grid-template-columns: 1fr;
  }
}
