/* =========================
   Lenscape Atelier
   Premium Hero + Gallery
   ========================= */

/* Font choices (safe system + premium feel) */
:root{
  --bg: #7a7d78;          /* muted grey/olive like reference */
  --bgSoft: #e9ece6;      /* soft light section background */
  --ink: #0d0f10;
  --white: #f6f7f3;
  --whiteSoft: rgba(246,247,243,.78);
  --line: rgba(255,255,255,.22);
  --lineDark: rgba(10,12,13,.14);
  --shadow: rgba(0,0,0,.28);
  --radius: 22px;

  --serif: ui-serif, "Georgia", "Times New Roman", Times, serif;
  --sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin: 0;
  background: #111;
  color: var(--white);
  font-family: var(--sans);
}

/* =========================
   HERO
   ========================= */
.hero{
  position: relative;
  min-height: 100vh;
  background: var(--bg);
  overflow: hidden;
  padding: 26px 34px 60px;
}

/* grid guide lines */
.grid-guides{
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .7;
}
.grid-guides span{
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,.0),
    rgba(255,255,255,.35),
    rgba(255,255,255,.0)
  );
}
.grid-guides span:nth-child(1){ left: 18%; }
.grid-guides span:nth-child(2){ left: 50%; }
.grid-guides span:nth-child(3){ left: 72%; }
.grid-guides span:nth-child(4){ left: 92%; }

/* header */
.header{
  position: relative;
  z-index: 8;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 12px;
}

.brand{
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  letter-spacing: .3px;
}
.brandMark{
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: rgba(255,255,255,.85);
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}
.brandName{
  font-size: 15px;
  opacity: .92;
}

.location{
  text-align: center;
  font-family: var(--serif);
  opacity: .88;
  font-size: 14px;
}

.nav{
  display: flex;
  justify-content: flex-end;
  gap: 22px;
}
.nav a{
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font-family: var(--serif);
  font-size: 14px;
  transition: opacity .2s ease, transform .2s ease;
}
.nav a:hover{
  opacity: 1;
  transform: translateY(-1px);
}

/* hero layout */
.heroLayout{
  position: relative;
  z-index: 7;
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1.1fr .8fr 1fr;
  gap: 20px;
  align-items: start;
}

.heroLeft{
  padding-top: 40px;
}
.heroTitle{
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.05;
  font-size: clamp(38px, 4.4vw, 74px);
  color: rgba(255,255,255,.9);
}

.heroCta{
  display: inline-block;
  margin-top: 22px;
  color: rgba(255,255,255,.82);
  font-family: var(--serif);
  text-decoration: none;
  font-size: 15px;
  transition: transform .2s ease, opacity .2s ease;
}
.heroCta:hover{
  transform: translateY(-1px);
  opacity: 1;
}

.heroMeta{
  position: absolute;
  left: 34px;
  bottom: 22px;
  font-family: var(--serif);
  opacity: .8;
  font-size: 14px;
}
.rightMeta{
  left: auto;
  right: 34px;
}

.heroCenter{
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 10px;
}

.hangingWrap{
  position: relative;
  width: min(240px, 70%);
  aspect-ratio: 1/1.2;
  display: grid;
  place-items: center;
}

.hangingCam{
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 40px 40px rgba(0,0,0,.25));
  transform: translateY(0);
  animation: floaty 5.6s ease-in-out infinite;
  border-radius: 25px;
}

@keyframes floaty{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-10px); }
}

/* seal */
.seal{
  position: absolute;
  right: -10px;
  top: 10px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(10,10,10,.55);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 20px 50px rgba(0,0,0,.22);
}
.seal::after{
  content: "✦";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 16px;
  opacity: .8;
  color: rgba(255,255,255,.85);
}

.heroRight{
  padding-top: 70px;
  display: flex;
  justify-content: flex-end;
}
.heroStat{
  width: min(320px, 100%);
  text-align: left;
}

.statBig{
  font-family: var(--serif);
  font-size: clamp(46px, 5vw, 66px);
  font-weight: 500;
  letter-spacing: .5px;
  color: rgba(255,255,255,.9);
}
.plus{
  font-size: .55em;
  opacity: .85;
}

.statText{
  margin: 10px 0 0;
  color: rgba(255,255,255,.65);
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
}

/* main camera (fixed height like reference) */
.mainCamWrap{
  position: absolute;
  left: 50%;
  bottom: -30px;
  transform: translateX(-50%);
  width: min(980px, 92vw);
  height: min(360px, 42vh); /* controls how tall it looks */
  z-index: 6;
  pointer-events: none;
  overflow: hidden;
}

.mainCam{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%; /* move camera up/down */
  filter: drop-shadow(0 70px 60px rgba(0,0,0,.32));
  border-radius: 20px;
  accent-color: rgba(255,255,255,.85);
}


/* moving background marquee */
.marquee{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 40px;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
  opacity: .9;
}

.marqueeTrack{
  display: flex;
  gap: 70px;
  white-space: nowrap;
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(80px, 14vw, 200px);
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.18);
  animation: marqueeMove 22s linear infinite;
}

@keyframes marqueeMove{
  0%{ transform: translateX(-10%); }
  100%{ transform: translateX(-55%); }
}

/* =========================
   SECTIONS
   ========================= */
/* =========================
   ABOUT (Upgraded Premium)
   ========================= */

.about{
  background: #e9ece6;
  color: #0d0f10;
  padding: 90px 34px;
  border-top: 1px solid rgba(0,0,0,.08);
}

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

.aboutTitle{
  font-family: var(--serif);
  margin: 0;
  font-weight: 600;
  letter-spacing: .2px;
  font-size: clamp(38px, 4.4vw, 74px);
  line-height: 1.02;
}

.aboutSub{
  margin: 16px 0 0;
  font-size: 15px;
  line-height: 1.7;
  opacity: .72;
  max-width: 520px;
}

.aboutText{
  margin: 0;
  font-size: 15px;
  line-height: 1.85;
  opacity: .75;
}

.aboutPoints{
  margin-top: 28px;
  display: grid;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,.1);
}

.point{
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 14px;
  align-items: start;
}

.dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.85);
  margin-top: 7px;
  box-shadow: 0 10px 20px rgba(0,0,0,.08);
}

.point h4{
  margin: 0;
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: .2px;
}

.point p{
  margin: 6px 0 0;
  font-size: 13.5px;
  line-height: 1.65;
  opacity: .7;
}

/* Responsive */
@media (max-width: 980px){
  .aboutInner{
    grid-template-columns: 1fr;
    gap: 34px;
  }
}
/* =========================
   SERVICES / CATEGORIES
   ========================= */

.services{
  background: #e9ece6;
  color: #0d0f10;
  padding: 90px 34px;
  border-top: 1px solid rgba(0,0,0,.08);
}

.servicesHeader{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 28px;
}

.servicesTitle{
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(30px, 3.6vw, 54px);
  line-height: 1.1;
}

.servicesDesc{
  margin: 0;
  font-size: 14.5px;
  line-height: 1.8;
  opacity: .72;
  max-width: 520px;
  justify-self: end;
}

.servicesGrid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.serviceCard{
  border-radius: 22px;
  overflow: hidden;
  background: rgba(0,0,0,.03);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 20px 50px rgba(0,0,0,.08);
  cursor: default;
  transform: translateY(0);
  transition: transform .25s ease, box-shadow .25s ease;
}

.serviceCard:hover{
  transform: translateY(-4px);
  box-shadow: 0 32px 70px rgba(0,0,0,.14);
}

.serviceImg{
  height: 260px;
  overflow: hidden;
}

.serviceImg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .45s ease, filter .45s ease;
  filter: saturate(.95) contrast(1.02);
}

.serviceCard:hover img{
  transform: scale(1.10);
  filter: saturate(1) contrast(1.05);
}

.serviceInfo{
  padding: 18px 18px 20px;
}

.serviceInfo h3{
  margin: 0;
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: .2px;
}

.serviceInfo p{
  margin: 8px 0 0;
  font-size: 13.5px;
  line-height: 1.65;
  opacity: .72;
}

/* Responsive */
@media (max-width: 980px){
  .servicesHeader{
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .servicesDesc{
    justify-self: start;
  }

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

@media (max-width: 520px){
  .servicesGrid{
    grid-template-columns: 1fr;
  }

  .serviceImg{
    height: 240px;
  }
}

/* =========================
   TESTIMONIALS / EXPERIENCE
   ========================= */

.testimonials{
  background: #e9ece6;
  color: #0d0f10;
  padding: 90px 34px;
  border-top: 1px solid rgba(0,0,0,.08);
}

.testHeader{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 28px;
}

.testTitle{
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(30px, 3.6vw, 54px);
  line-height: 1.1;
}

.testDesc{
  margin: 0;
  font-size: 14.5px;
  line-height: 1.8;
  opacity: .72;
  max-width: 520px;
  justify-self: end;
}

.testGrid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testCard{
  border-radius: 22px;
  padding: 22px 20px;
  background: rgba(255,255,255,.45);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 20px 50px rgba(0,0,0,.06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.testCard:hover{
  transform: translateY(-4px);
  box-shadow: 0 32px 70px rgba(0,0,0,.10);
}

.quote{
  margin: 0;
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.8;
  opacity: .85;
}

.who{
  margin-top: 16px;
  font-size: 13px;
  opacity: .65;
  letter-spacing: .2px;
}

/* bottom strip */
.testStrip{
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 22px;
  border-top: 1px solid rgba(0,0,0,.1);
}

.stripItem{
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 14px;
  border-radius: 18px;
  background: rgba(0,0,0,.03);
  border: 1px solid rgba(0,0,0,.06);
}

.stripNum{
  font-family: var(--serif);
  font-weight: 700;
  opacity: .8;
}

.stripText{
  font-size: 13.5px;
  opacity: .75;
}

/* Responsive */
@media (max-width: 980px){
  .testHeader{
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .testDesc{
    justify-self: start;
  }

  .testGrid{
    grid-template-columns: 1fr;
  }

  .testStrip{
    grid-template-columns: 1fr;
  }
}

/* =========================
   GALLERY
   ========================= */
/* =========================
   GALLERY (Dark like Hero)
   Featured + Grid
   ========================= */

.gallery{
  background: var(--bg);
  color: var(--white);
  padding: 90px 34px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.lightLabel{
  color: rgba(255,255,255,.72);
}
.lightTitle{
  color: rgba(255,255,255,.92);
}
.lightHint{
  color: rgba(255,255,255,.62);
}

.galleryHeader{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 26px;
}

.galleryTitle{
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(30px, 3.6vw, 54px);
  line-height: 1.1;
}

.galleryHint{
  font-size: 13px;
  opacity: .75;
}

/* Featured layout */
.galleryFeatured{
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.featureMain{
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.15);
  height: 520px;
  cursor: pointer;
  box-shadow: 0 40px 90px rgba(0,0,0,.25);
}

.featureSide{
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
}

.featureMini{
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.15);
  cursor: pointer;
  height: 251px;
  box-shadow: 0 30px 70px rgba(0,0,0,.20);
}

.featureMain img,
.featureMini img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform .45s ease, filter .45s ease;
  filter: saturate(.95) contrast(1.02);
}

.featureMain:hover img,
.featureMini:hover img{
  transform: scale(1.10);
  filter: saturate(1) contrast(1.05);
}

/* Grid */
.darkGrid{
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.galleryGrid{
  display: grid;
}

.galleryItem{
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 22px 60px rgba(0,0,0,.18);
  cursor: pointer;
  transform: translateY(0);
  transition: transform .22s ease, box-shadow .22s ease;
  aspect-ratio: 3/4;
}

.galleryItem:hover{
  transform: translateY(-3px);
  box-shadow: 0 34px 90px rgba(0,0,0,.28);
}

.galleryItem img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .35s ease, filter .35s ease;
  filter: saturate(.92) contrast(1.02);
}

.galleryItem:hover img{
  transform: scale(1.08);
  filter: saturate(1) contrast(1.05);
}

/* Responsive */
@media (max-width: 980px){
  .galleryFeatured{
    grid-template-columns: 1fr;
  }

  .featureMain{
    height: 420px;
  }

  .featureSide{
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .featureMini{
    height: 220px;
  }

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

@media (max-width: 520px){
  .featureMain{
    height: 320px;
  }

  .featureSide{
    grid-template-columns: 1fr;
  }

  .featureMini{
    height: 220px;
  }

  .darkGrid{
    grid-template-columns: 1fr;
  }
}

/* =========================
   LIGHTBOX
   ========================= */
.lightbox{
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,.88);
  backdrop-filter: blur(10px);
  display: none;
  z-index: 9999;
  padding: 22px;
}

.lightbox.open{
  display: grid;
  place-items: center;
}

.lbStage{
  width: min(1200px, 94vw);
  height: auto;
  max-height: 86vh;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 50px 120px rgba(0,0,0,.5);
  display: grid;
  place-items: center;
  padding: 12px;
}

.lbStage img{
  max-width: 100%;
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}


.lbClose{
  position: fixed;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.85);
  cursor: pointer;
  font-size: 16px;
}

.lbNav{
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.9);
  cursor: pointer;
  font-size: 30px;
  line-height: 0;
  display: grid;
  place-items: center;
}

.lbPrev{ left: 18px; }
.lbNext{ right: 18px; }

/* =========================
   CONTACT + FOOTER
   ========================= */
/* =========================
   CONTACT (Dark Premium)
   ========================= */

.contact{
  background: var(--bg);
  color: var(--white);
  padding: 100px 34px;
  border-top: 1px solid rgba(255,255,255,.12);
}

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

.contactTitle{
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 4.2vw, 70px);
  line-height: 1.02;
  font-weight: 600;
}

.contactDesc{
  margin: 16px 0 0;
  font-size: 14.5px;
  line-height: 1.8;
  max-width: 520px;
}

.contactInfo{
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.14);
  display: grid;
  gap: 14px;
  max-width: 520px;
}

.infoRow{
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.infoLabel{
  font-family: var(--serif);
  opacity: .72;
}

.infoValue{
  opacity: .9;
  text-align: right;
}

.infoValue a{
  color: rgba(255,255,255,.92);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.25);
  padding-bottom: 2px;
}

.infoValue a:hover{
  border-bottom-color: rgba(255,255,255,.55);
}

/* Right card */
.contactCard{
  border-radius: 26px;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 50px 120px rgba(0,0,0,.35);
  padding: 26px 22px;
  backdrop-filter: blur(10px);
}

.formTop h3{
  margin: 0;
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: .2px;
  color: rgba(255,255,255,.92);
}

.formTop p{
  margin: 10px 0 0;
  font-size: 13.5px;
  line-height: 1.6;
  opacity: .65;
}

.formGrid{
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field{
  display: grid;
  gap: 8px;
}

.field.full{
  grid-column: 1 / -1;
}

.field label{
  font-size: 12.5px;
  opacity: .7;
}

.field input,
.field select,
.field textarea{
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  padding: 12px 12px;
  font-size: 14px;
  outline: none;
  transition: border-color .2s ease, background .2s ease;
}

.field textarea{
  resize: vertical;
  min-height: 140px;
}

.field input:focus,
.field select:focus,
.field textarea:focus{
  border-color: rgba(255,255,255,.34);
  background: rgba(255,255,255,.08);
}

.sendBtn{
  margin-top: 16px;
  width: 100%;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.92);
  color: rgba(10,10,10,.92);
  font-size: 14px;
  cursor: pointer;
  transition: transform .2s ease, opacity .2s ease;
}

.sendBtn:hover{
  transform: translateY(-2px);
  opacity: .95;
}

.formNote{
  margin: 14px 0 0;
  font-size: 12px;
  line-height: 1.5;
  opacity: .55;
}

/* Responsive */
@media (max-width: 980px){
  .contactInner{
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .formGrid{
    grid-template-columns: 1fr;
  }
}


.footer{
  background: #0b0c0d;
  color: rgba(255,255,255,.7);
  padding: 18px 34px;
}
.footerInner{
  width: min(1180px, 100%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  font-size: 13px;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 980px){
  .heroLayout{
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .heroLeft{
    padding-top: 18px;
  }

  .heroRight{
    padding-top: 0;
    justify-content: flex-start;
  }

  .heroMeta{
    position: static;
    margin-top: 18px;
  }
  .rightMeta{
    position: static;
    margin-top: 18px;
  }

  .mainCamWrap{
    bottom: -50px;
  }

  .about .sectionInner{
    grid-template-columns: 1fr;
  }

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

@media (max-width: 520px){
  .hero{
    padding: 18px 16px 50px;
  }

  .header{
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 10px;
  }

  .location{
    text-align: left;
  }

  .nav{
    justify-content: flex-start;
    gap: 16px;
    flex-wrap: wrap;
  }

  .galleryGrid{
    grid-template-columns: 1fr;
  }

  .lbPrev{ left: 10px; }
  .lbNext{ right: 10px; }
}
/* =========================
   MOBILE FIX (Hero + Header)
   ========================= */

@media (max-width: 820px){

  /* Hero spacing */
  .hero{
    min-height: auto;
    padding-bottom: 90px;
  }

  /* Header becomes stacked */
  .header{
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: start;
    padding: 18px 18px 0;
  }

  .location{
    justify-self: start;
    opacity: .75;
    font-size: 13px;
  }

  /* Nav becomes wrapped */
  .nav{
    display: flex;
    flex-wrap: wrap;
    gap: 14px 18px;
    justify-content: flex-start;
    padding-bottom: 10px;
  }

  .nav a{
    font-size: 15px;
    opacity: .9;
  }

  /* Hero layout stacks */
  .heroLayout{
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 18px;
    margin-top: 12px;
  }

  .heroTitle{
    font-size: clamp(34px, 10vw, 54px);
    line-height: 1.05;
  }

  .heroLeft{
    order: 1;
  }

  .heroCenter{
    order: 2;
    display: grid;
    place-items: center;
  }

  .heroRight{
    order: 3;
  }

  /* Hanging camera fits */
  .hangingWrap{
    width: min(320px, 78vw);
    height: auto;
    margin: 0 auto;
  }

  .hangingCam{
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  /* Hide the big main camera on mobile */
  .mainCamWrap{
    display: none;
  }

  /* Marquee smaller */
  .marquee{
    height: 58px;
  }

  .marqueeTrack span{
    font-size: 42px;
    opacity: .16;
  }

  /* Right stat spacing */
  .heroStat{
    max-width: 520px;
  }

  .statBig{
    font-size: 54px;
  }
}

/* Extra small phones */
@media (max-width: 420px){
  .heroTitle{
    font-size: 36px;
  }

  .nav{
    gap: 10px 14px;
  }

  .nav a{
    font-size: 14px;
  }
}
