@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

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

html{
  scroll-behavior:smooth;
}

body{
  background:#070707;
  color:#f5f5f5;
  font-family:Inter,Arial,sans-serif;
  overflow-x:hidden;
}

body:before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:.025;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
  z-index:100;
}

a{
  color:inherit;
  text-decoration:none;
}

button{
  font:inherit;
}

.scroll-line{
  position:fixed;
  top:0;
  left:0;
  width:0;
  height:2px;
  background:#fff;
  z-index:999;
}

.navbar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 6vw;
  z-index:90;
  background:rgba(7,7,7,.72);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(255,255,255,.06);
}

.logo{
  font-size:14px;
  font-weight:800;
  letter-spacing:4px;
}

.logo span{
  display:inline-flex;
  width:30px;
  height:30px;
  align-items:center;
  justify-content:center;
  margin-right:7px;
  border:1px solid #777;
  border-radius:50%;
}

nav{
  display:flex;
  gap:32px;
}

nav a{
  font-size:12px;
  color:#999;
  transition:.25s;
}

nav a:hover{
  color:#fff;
}

.menu-btn{
  display:none;
}

.section{
  position:relative;
  width:100%;
  padding:130px 8vw;
}

.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:50px;
  padding-top:140px;
  overflow:hidden;
}

.hero-bg{
  position:absolute;
  inset:0;
  pointer-events:none;
}

.orb{
  position:absolute;
  width:360px;
  height:360px;
  border-radius:50%;
  filter:blur(80px);
  opacity:.12;
}

.orb-one{
  background:#ffffff;
  right:10%;
  top:12%;
}

.orb-two{
  background:#777;
  left:5%;
  bottom:5%;
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:680px;
}

.status{
  display:inline-flex;
  align-items:center;
  gap:9px;
  padding:9px 13px;
  border:1px solid rgba(255,255,255,.1);
  border-radius:50px;
  color:#aaa;
  font-size:10px;
  letter-spacing:1px;
  margin-bottom:30px;
  background:rgba(255,255,255,.025);
}

.status span{
  width:6px;
  height:6px;
  border-radius:50%;
  background:#fff;
  box-shadow:0 0 12px #fff;
}

.mini-title{
  color:#888;
  letter-spacing:6px;
  font-size:11px;
  margin-bottom:10px;
}

h1{
  font-size:clamp(58px,9vw,130px);
  line-height:.82;
  letter-spacing:-7px;
  font-weight:900;
}

h1 strong{
  display:block;
  color:transparent;
  -webkit-text-stroke:1px #aaa;
}

.hero-role{
  display:flex;
  gap:13px;
  align-items:center;
  margin-top:32px;
  font-size:11px;
  letter-spacing:2px;
  color:#aaa;
}

.hero-role b{
  color:#fff;
}

.hero-text{
  max-width:550px;
  margin-top:24px;
  color:#888;
  font-size:14px;
  line-height:1.9;
}

.hero-buttons{
  display:flex;
  gap:12px;
  margin-top:34px;
}

.btn{
  border:1px solid rgba(255,255,255,.15);
  padding:15px 21px;
  border-radius:4px;
  cursor:pointer;
  font-size:11px;
  letter-spacing:1px;
  transition:.25s;
}

.btn span{
  margin-left:14px;
}

.primary{
  background:#fff;
  color:#050505;
}

.primary:hover{
  transform:translateY(-3px);
}

.outline{
  background:transparent;
  color:#fff;
}

.outline:hover{
  background:#fff;
  color:#000;
}

.contact-links{
  display:flex;
  flex-wrap:wrap;
  gap:7px;
  max-height:0;
  opacity:0;
  overflow:hidden;
  transform:translateY(-10px);
  transition:.4s ease;
  margin-top:0;
}

.contact-links.open{
  max-height:100px;
  opacity:1;
  transform:translateY(0);
  margin-top:18px;
}

.contact-links a{
  padding:9px 13px;
  border:1px solid #222;
  color:#aaa;
  font-size:10px;
  border-radius:3px;
  transition:.2s;
}

.contact-links a:hover{
  background:#fff;
  color:#000;
}

.hero-photo-wrap{
  position:relative;
  width:min(390px,36vw);
  aspect-ratio:3/4;
  z-index:2;
}

.photo-card{
  position:absolute;
  inset:12px;
  border:1px solid rgba(255,255,255,.14);
  background:#111;
  padding:10px;
  transform:rotate(2deg);
  box-shadow:0 30px 80px rgba(0,0,0,.6);
}

.photo{
  width:100%;
  height:100%;
  background-image:url("sia32m.jpg");
  background-size:cover;
  background-position:center top;
  filter:grayscale(.12) contrast(1.05);
}

.photo-info{
  position:absolute;
  bottom:10px;
  left:10px;
  right:10px;
  padding:40px 15px 15px;
  display:flex;
  flex-direction:column;
  background:linear-gradient(transparent,rgba(0,0,0,.95));
}

.photo-info small{
  font-size:8px;
  letter-spacing:2px;
  color:#aaa;
}

.photo-info strong{
  font-size:16px;
  margin-top:5px;
}

.photo-info span{
  font-size:9px;
  color:#aaa;
  margin-top:3px;
}

.photo-ring{
  position:absolute;
  inset:0;
  border:1px solid rgba(255,255,255,.08);
  transform:rotate(-7deg);
}

.floating-tag{
  position:absolute;
  padding:10px 13px;
  border:1px solid rgba(255,255,255,.15);
  background:rgba(10,10,10,.8);
  backdrop-filter:blur(8px);
  font-size:9px;
  letter-spacing:2px;
}

.tag-one{
  left:-45px;
  top:20%;
}

.tag-two{
  right:-35px;
  top:48%;
}

.tag-three{
  left:-25px;
  bottom:13%;
}

.scroll-down{
  position:absolute;
  bottom:30px;
  left:8vw;
  display:flex;
  align-items:center;
  gap:10px;
  font-size:8px;
  color:#666;
  letter-spacing:3px;
}

.scroll-down span{
  width:35px;
  height:1px;
  background:#555;
}


/* HEADINGS */

.section-head{
  margin-bottom:70px;
}

.section-head > span,
.contact-inner > span{
  font-size:9px;
  color:#777;
  letter-spacing:3px;
}

.section-head h2{
  font-size:clamp(38px,6vw,75px);
  line-height:1;
  letter-spacing:-3px;
  margin-top:17px;
}

em{
  color:#777;
  font-style:normal;
}


/* ABOUT */

.about{
  border-top:1px solid #111;
}

.about-grid{
  display:grid;
  grid-template-columns:1.3fr .7fr;
  gap:10vw;
  align-items:start;
}

.about-text .big{
  font-size:clamp(24px,3vw,39px);
  line-height:1.35;
  color:#aaa;
  margin-bottom:30px;
}

.about-text p:not(.big){
  color:#777;
  font-size:14px;
  line-height:2;
  margin-bottom:18px;
  max-width:650px;
}

.about-card{
  border:1px solid #1d1d1d;
  padding:35px;
  background:linear-gradient(145deg,#111,#090909);
}

.card-number{
  font-size:55px;
  color:#222;
  font-weight:900;
  margin-bottom:50px;
}

.about-card small{
  color:#666;
  letter-spacing:2px;
  font-size:8px;
}

.about-card h3{
  font-size:15px;
  margin-top:8px;
}

.about-card p{
  color:#666;
  font-size:10px;
  margin-top:4px;
}

.line{
  height:1px;
  background:#222;
  margin:28px 0;
}


/* SKILLS */

.skills{
  background:#090909;
  border-top:1px solid #111;
}

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

.skill-card{
  position:relative;
  min-height:330px;
  padding:27px;
  border:1px solid #1d1d1d;
  background:#0c0c0c;
  transition:.35s;
  overflow:hidden;
}

.skill-card:before{
  content:"";
  position:absolute;
  width:100px;
  height:100px;
  right:-50px;
  top:-50px;
  border-radius:50%;
  background:#fff;
  opacity:.035;
}

.skill-card:hover{
  transform:translateY(-7px);
  border-color:#444;
}

.skill-icon{
  font-size:26px;
  font-weight:800;
  margin-bottom:70px;
}

.skill-card small{
  color:#555;
  font-size:9px;
}

.skill-card h3{
  margin-top:7px;
  font-size:21px;
}

.skill-card p{
  color:#666;
  font-size:10px;
  line-height:1.7;
  margin-top:10px;
}

.skill-line{
  position:absolute;
  left:27px;
  right:27px;
  bottom:43px;
  height:2px;
  background:#222;
}

.skill-line span{
  display:block;
  height:100%;
  background:#aaa;
}

.skill-card > b{
  position:absolute;
  right:27px;
  bottom:23px;
  color:#555;
  font-size:9px;
}


/* VISION */

.vision{
  min-height:90vh;
  display:flex;
  align-items:center;
  justify-content:center;
}

.vision-box{
  width:100%;
  border:1px solid #222;
  padding:40px 5vw;
  background:
    radial-gradient(circle at 50% 50%,#171717 0,#090909 50%);
}

.vision-top,
.vision-bottom{
  display:flex;
  justify-content:space-between;
  color:#666;
  font-size:8px;
  letter-spacing:2px;
}

.vision-main{
  padding:100px 0;
  text-align:center;
}

.vision-main > p:first-child{
  color:#666;
  font-size:9px;
  letter-spacing:4px;
}

.vision-main h2{
  font-size:clamp(45px,8vw,105px);
  line-height:.9;
  letter-spacing:-5px;
  margin:25px 0;
}

.vision-main h2 span{
  color:transparent;
  -webkit-text-stroke:1px #aaa;
}

.vision-description{
  max-width:600px;
  margin:auto;
  color:#777;
  font-size:12px;
  line-height:1.9;
}

.vision-description strong{
  color:#ddd;
}


/* TIMELINE */

.journey{
  border-top:1px solid #111;
}

.timeline{
  max-width:850px;
  margin:auto;
}

.timeline-item{
  display:grid;
  grid-template-columns:70px 1fr;
  gap:30px;
  padding:32px 0;
  border-bottom:1px solid #1a1a1a;
}

.timeline-item > span{
  color:#444;
  font-size:12px;
}

.timeline-item small{
  color:#666;
  letter-spacing:2px;
  font-size:8px;
}

.timeline-item h3{
  margin-top:8px;
  font-size:20px;
}

.timeline-item p{
  margin-top:7px;
  color:#666;
  font-size:11px;
}


/* CONTACT */

.contact{
  border-top:1px solid #111;
  min-height:80vh;
  display:flex;
  align-items:center;
}

.contact-inner{
  width:100%;
}

.contact-inner h2{
  font-size:clamp(50px,8vw,105px);
  line-height:.9;
  letter-spacing:-5px;
  margin:25px 0;
}

.contact-inner > p{
  color:#777;
  max-width:480px;
  font-size:12px;
  line-height:1.8;
}

.email{
  display:flex;
  align-items:center;
  justify-content:space-between;
  max-width:550px;
  border-bottom:1px solid #333;
  padding:25px 0;
  margin-top:35px;
  font-size:18px;
}

.email span{
  color:#777;
}

.socials{
  display:flex;
  gap:8px;
  margin-top:25px;
}

.socials a{
  width:40px;
  height:40px;
  border:1px solid #222;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:9px;
  color:#777;
  transition:.25s;
}

.socials a:hover{
  background:#fff;
  color:#000;
}


/* FOOTER */

footer{
  padding:35px 8vw;
  border-top:1px solid #111;
  display:flex;
  justify-content:space-between;
  align-items:center;
  color:#555;
}

footer div{
  display:flex;
  flex-direction:column;
  gap:5px;
}

footer strong{
  color:#aaa;
  font-size:12px;
  letter-spacing:2px;
}

footer span,
footer p{
  font-size:8px;
  letter-spacing:1px;
}


/* TOP */

.top-btn{
  position:fixed;
  right:25px;
  bottom:25px;
  width:42px;
  height:42px;
  border:1px solid #333;
  background:#0b0b0b;
  color:#fff;
  cursor:pointer;
  opacity:0;
  transform:translateY(20px);
  transition:.3s;
  z-index:80;
}

.top-btn.show{
  opacity:1;
  transform:translateY(0);
}


/* REVEAL */

.reveal{
  opacity:0;
  transform:translateY(45px) scale(.98);
  filter:blur(5px);
  transition:
    opacity .7s ease,
    transform .7s cubic-bezier(.2,.8,.2,1),
    filter .7s ease;
}

.reveal.visible{
  opacity:1;
  transform:none;
  filter:none;
}


/* MOBILE */

@media(max-width:850px){

  .navbar{
    height:70px;
    padding:0 6vw;
  }

  .menu-btn{
    display:flex;
    width:38px;
    height:38px;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:6px;
    background:transparent;
    border:1px solid #222;
    color:white;
  }

  .menu-btn i{
    width:14px;
    height:1px;
    background:#aaa;
  }

  nav{
    position:absolute;
    top:70px;
    left:0;
    width:100%;
    padding:20px 6vw;
    background:#080808;
    border-bottom:1px solid #222;
    display:flex;
    flex-direction:column;
    gap:20px;
    opacity:0;
    pointer-events:none;
    transform:translateY(-10px);
    transition:.3s;
  }

  nav.open{
    opacity:1;
    pointer-events:auto;
    transform:none;
  }

  .hero{
    min-height:auto;
    padding-top:120px;
    padding-bottom:100px;
    flex-direction:column;
    align-items:flex-start;
  }

  h1{
    font-size:18vw;
    letter-spacing:-4px;
  }

  .hero-role{
    flex-wrap:wrap;
  }

  .hero-photo-wrap{
    width:min(330px,80vw);
    align-self:center;
    margin-top:50px;
  }

  .tag-one{
    left:-15px;
  }

  .tag-two{
    right:-10px;
  }

  .tag-three{
    left:-10px;
  }

  .section{
    padding:95px 7vw;
  }

  .about-grid{
    grid-template-columns:1fr;
    gap:45px;
  }

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

  .skill-card{
    min-height:290px;
    padding:20px;
  }

  .skill-icon{
    margin-bottom:45px;
  }

  .vision-main{
    padding:70px 0;
  }

  .vision-main h2{
    letter-spacing:-3px;
  }

  footer{
    flex-direction:column;
    align-items:flex-start;
    gap:20px;
  }
}

@media(max-width:500px){

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

  .skill-card{
    min-height:260px;
  }

  .hero-buttons{
    flex-direction:column;
    align-items:stretch;
  }

  .btn{
    text-align:center;
  }

  .contact-links a{
    flex:1;
    text-align:center;
  }

  .timeline-item{
    grid-template-columns:40px 1fr;
    gap:15px;
  }

  .vision-box{
    padding:25px 20px;
  }

  .vision-main h2{
    font-size:14vw;
  }

  .contact-inner h2{
    font-size:15vw;
    letter-spacing:-3px;
  }

  .email{
    font-size:14px;
  }
}


/* =========================================
   SIAM MAHMUD — PREMIUM MOBILE UPGRADE
   ========================================= */

.photo-card{
  z-index:3;
  padding:12px;
  transform:rotate(1.5deg);
}

.photo{
  position:relative;
  z-index:1;
}

.photo-info{
  z-index:5;
  left:12px;
  right:12px;
  bottom:12px;
  padding:75px 20px 20px;
  background:linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0,0,0,.15) 25%,
    rgba(0,0,0,.88) 75%,
    rgba(0,0,0,.98) 100%
  );
}

.photo-info small{
  font-size:8px;
  letter-spacing:4px;
  color:#aaa;
  margin-bottom:6px;
}

.photo-info strong{
  display:block;
  font-size:clamp(22px,5vw,30px);
  line-height:1;
  letter-spacing:-1px;
  color:#fff;
  text-shadow:0 3px 18px rgba(0,0,0,.9);
}

.photo-info span{
  display:block;
  margin-top:7px;
  font-size:10px;
  letter-spacing:1px;
  color:#bbb;
}


/* Floating labels stay behind name area */

.floating-tag{
  z-index:2;
  box-shadow:0 12px 30px rgba(0,0,0,.45);
  transition:transform .3s ease;
}

.tag-one{
  left:-48px;
  top:18%;
}

.tag-two{
  right:-42px;
  top:47%;
}

.tag-three{
  left:-38px;
  bottom:18%;
}


/* Bigger + more premium hero */

.hero-content{
  max-width:760px;
}

h1{
  text-shadow:0 15px 50px rgba(255,255,255,.04);
}

h1 strong{
  -webkit-text-stroke:1.2px #777;
}


/* Premium buttons */

.btn{
  position:relative;
  overflow:hidden;
}

.btn:before{
  content:"";
  position:absolute;
  left:-120%;
  top:0;
  width:70%;
  height:100%;
  background:linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.35),
    transparent
  );
  transform:skewX(-20deg);
  transition:.6s;
}

.btn:hover:before{
  left:140%;
}

.primary{
  box-shadow:0 15px 40px rgba(255,255,255,.08);
}


/* Better section typography */

.section-head h2{
  font-weight:800;
  text-wrap:balance;
}

.section-head h2 em{
  background:linear-gradient(90deg,#777,#aaa,#555);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}


/* Extra premium border glow */

.about-card,
.skill-card,
.vision-box{
  position:relative;
}

.about-card:after,
.skill-card:after,
.vision-box:after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  border:1px solid rgba(255,255,255,.025);
}


/* MOBILE */

@media(max-width:850px){

  .hero{
    padding-top:105px;
    padding-left:6vw;
    padding-right:6vw;
    gap:30px;
  }

  .hero-content{
    width:100%;
  }

  .mini-title{
    letter-spacing:4px;
  }

  h1{
    font-size:17vw;
    letter-spacing:-5px;
  }

  .hero-text{
    font-size:13px;
    line-height:1.8;
  }

  .hero-photo-wrap{
    width:min(360px,84vw);
    margin-top:35px;
  }

  .photo-card{
    inset:8px;
    padding:9px;
  }

  .photo-info{
    left:9px;
    right:9px;
    bottom:9px;
    padding:90px 18px 18px;
  }

  .photo-info strong{
    font-size:25px;
    letter-spacing:-1.2px;
  }

  .photo-info span{
    font-size:9px;
  }

  .tag-one{
    left:-18px;
    top:19%;
  }

  .tag-two{
    right:-15px;
    top:46%;
  }

  .tag-three{
    left:-15px;
    bottom:13%;
  }

  .floating-tag{
    padding:11px 13px;
    font-size:8px;
    letter-spacing:2px;
  }

}


/* SMALL PHONE */

@media(max-width:500px){

  .hero{
    padding-top:95px;
  }

  h1{
    font-size:18vw;
  }

  .hero-photo-wrap{
    width:88vw;
    max-width:370px;
  }

  .photo-info{
    padding-top:105px;
  }

  .photo-info strong{
    font-size:27px;
  }

  .photo-info span{
    font-size:9px;
  }

  .tag-one{
    left:-10px;
  }

  .tag-two{
    right:-8px;
  }

  .tag-three{
    left:-8px;
    bottom:10%;
  }

}


/* Reduced motion for weaker phones */

@media(prefers-reduced-motion:reduce){

  *,
  *:before,
  *:after{
    animation:none !important;
    transition:none !important;
    scroll-behavior:auto !important;
  }

}


/* =========================================
   SIAM MAHMUD — PREMIUM MOBILE UPGRADE
   ========================================= */

.photo-card{
  z-index:3;
  padding:12px;
  transform:rotate(1.5deg);
}

.photo{
  position:relative;
  z-index:1;
}

.photo-info{
  z-index:5;
  left:12px;
  right:12px;
  bottom:12px;
  padding:75px 20px 20px;
  background:linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0,0,0,.15) 25%,
    rgba(0,0,0,.88) 75%,
    rgba(0,0,0,.98) 100%
  );
}

.photo-info small{
  font-size:8px;
  letter-spacing:4px;
  color:#aaa;
  margin-bottom:6px;
}

.photo-info strong{
  display:block;
  font-size:clamp(22px,5vw,30px);
  line-height:1;
  letter-spacing:-1px;
  color:#fff;
  text-shadow:0 3px 18px rgba(0,0,0,.9);
}

.photo-info span{
  display:block;
  margin-top:7px;
  font-size:10px;
  letter-spacing:1px;
  color:#bbb;
}


/* Floating labels stay behind name area */

.floating-tag{
  z-index:2;
  box-shadow:0 12px 30px rgba(0,0,0,.45);
  transition:transform .3s ease;
}

.tag-one{
  left:-48px;
  top:18%;
}

.tag-two{
  right:-42px;
  top:47%;
}

.tag-three{
  left:-38px;
  bottom:18%;
}


/* Bigger + more premium hero */

.hero-content{
  max-width:760px;
}

h1{
  text-shadow:0 15px 50px rgba(255,255,255,.04);
}

h1 strong{
  -webkit-text-stroke:1.2px #777;
}


/* Premium buttons */

.btn{
  position:relative;
  overflow:hidden;
}

.btn:before{
  content:"";
  position:absolute;
  left:-120%;
  top:0;
  width:70%;
  height:100%;
  background:linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.35),
    transparent
  );
  transform:skewX(-20deg);
  transition:.6s;
}

.btn:hover:before{
  left:140%;
}

.primary{
  box-shadow:0 15px 40px rgba(255,255,255,.08);
}


/* Better section typography */

.section-head h2{
  font-weight:800;
  text-wrap:balance;
}

.section-head h2 em{
  background:linear-gradient(90deg,#777,#aaa,#555);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}


/* Extra premium border glow */

.about-card,
.skill-card,
.vision-box{
  position:relative;
}

.about-card:after,
.skill-card:after,
.vision-box:after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  border:1px solid rgba(255,255,255,.025);
}


/* MOBILE */

@media(max-width:850px){

  .hero{
    padding-top:105px;
    padding-left:6vw;
    padding-right:6vw;
    gap:30px;
  }

  .hero-content{
    width:100%;
  }

  .mini-title{
    letter-spacing:4px;
  }

  h1{
    font-size:17vw;
    letter-spacing:-5px;
  }

  .hero-text{
    font-size:13px;
    line-height:1.8;
  }

  .hero-photo-wrap{
    width:min(360px,84vw);
    margin-top:35px;
  }

  .photo-card{
    inset:8px;
    padding:9px;
  }

  .photo-info{
    left:9px;
    right:9px;
    bottom:9px;
    padding:90px 18px 18px;
  }

  .photo-info strong{
    font-size:25px;
    letter-spacing:-1.2px;
  }

  .photo-info span{
    font-size:9px;
  }

  .tag-one{
    left:-18px;
    top:19%;
  }

  .tag-two{
    right:-15px;
    top:46%;
  }

  .tag-three{
    left:-15px;
    bottom:13%;
  }

  .floating-tag{
    padding:11px 13px;
    font-size:8px;
    letter-spacing:2px;
  }

}


/* SMALL PHONE */

@media(max-width:500px){

  .hero{
    padding-top:95px;
  }

  h1{
    font-size:18vw;
  }

  .hero-photo-wrap{
    width:88vw;
    max-width:370px;
  }

  .photo-info{
    padding-top:105px;
  }

  .photo-info strong{
    font-size:27px;
  }

  .photo-info span{
    font-size:9px;
  }

  .tag-one{
    left:-10px;
  }

  .tag-two{
    right:-8px;
  }

  .tag-three{
    left:-8px;
    bottom:10%;
  }

}


/* Reduced motion for weaker phones */

@media(prefers-reduced-motion:reduce){

  *,
  *:before,
  *:after{
    animation:none !important;
    transition:none !important;
    scroll-behavior:auto !important;
  }

}
