
:root{
  --orange:#ef4804;
  --white:#ffffff;
  --shadow:0 18px 55px rgba(0,0,0,.22);
  --radius:16px;
}

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

body{
  margin:0;
  font-family: 'Josefin Sans', sans-serif;
  background:var(--orange);
  color:var(--white);
  text-align:center; /* CENTER ALL TEXT */
}

.hero{
  background:var(--orange);
  min-height:85vh;
  display:flex;
  align-items:center;
  justify-content:center;
}

.hero__inner{
  padding:60px 18px;
}

.hero__logo{
  width:720px; /* BIGGER LOGO */
  max-width:92vw;
  height:auto;
  display:block;
  margin:0 auto;
  filter:drop-shadow(0 24px 60px rgba(0,0,0,.25));
}

.hero__tag{
  margin-top:18px;
  letter-spacing:.16em;
  text-transform:uppercase;
  font-size:15px;
}

.section{
  padding:60px 18px;
  background:var(--orange);
}

.container{
  max-width:1000px;
  margin:0 auto;
}

.sectionTitle{
  margin-bottom:28px;
  font-size:30px;
}

.card{
  margin:0 auto 36px auto;
  background:rgba(255,255,255,0.10);
  border:1px solid rgba(255,255,255,0.18);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
}

.card img{
  width:100%;
  display:block;
  aspect-ratio:16/9;
  object-fit:cover;
}

.card__title{
  padding:14px;
  font-weight:700;
}

.servicesSection{
  padding:40px 18px 70px;
  background:var(--orange);
}

.servicesLine{
  margin:0 auto;
  font-size:16px;
  font-weight:700;
  letter-spacing:.02em;
  background:rgba(255,255,255,0.10);
  border:1px solid rgba(255,255,255,0.18);
  border-radius:999px;
  padding:14px 18px;
  display:inline-block;
}

.profileSection{
  padding:70px 18px 90px;
  background:var(--orange);
}

.profileCircle{
  width:200px;
  height:200px;
  margin:0 auto 20px;
  border-radius:50%;
  overflow:hidden;
  border:3px solid rgba(255,255,255,.85);
  box-shadow:var(--shadow);
}

.profileCircle img{
  width:100%;
  height:100%;
  object-fit:cover;
}

h3{
  margin:0;
  font-size:24px;
}

.email{
  margin-top:10px;
  font-weight:600;
}

.email a{
  color:#fff;
  text-decoration:none;
}
.email a:hover{text-decoration:underline}

.footer{
  padding:20px 18px 30px;
  background:var(--orange);
}

.footerInner{
  max-width:1000px;
  margin:0 auto;
  display:flex;
  justify-content:center; /* CENTER FOOTER CONTENT */
  gap:20px;
  flex-wrap:wrap;
}

.footer a{
  color:#fff;
  text-decoration:none;
  font-weight:700;
}
.footer a:hover{text-decoration:underline}


body{
  text-transform: uppercase;
  letter-spacing:.08em;
}

/* v2 tweaks */
.card{
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  overflow: visible !important;
  margin-bottom: 42px !important;
}

.card img{
  border-radius: 14px;
}

.card__title{
  padding: 14px 0 0 !important;
}
