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

*:focus,
*:focus-visible{
  outline:none!important;
  box-shadow:none!important;
}

img:hover,
a:hover{
  border-style:solid!important;
  border-color:#a86d45!important;
  text-decoration-style:solid!important;
  text-decoration-color:#a86d45!important;
}

body{
  font-family:Arial,sans-serif;
  background:radial-gradient(circle at 50% 15%,#261912 0%,#090706 42%,#000 78%);
  background-attachment:fixed;
  animation:backgroundGlow 12s ease-in-out infinite alternate;
  color:#fff;
  line-height:1.6;
  padding-top:125px;
  padding-bottom:70px;
  cursor:url("https://i.imgur.com/isbiQtJ.png"),auto
}

a{color:#fff;text-decoration:none}

.now-playing{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:20;
  text-align:center;
  font-size:11px;
  color:#fff;
  background:#000;
  padding:3px
}

.song-title{color:#966844}

.header-fixed{
  position:fixed;
  top:34px;
  left:0;
  width:100%;
  height:58px;
  z-index:30;
  background:#000;
  border-bottom:1px solid #444
}

.logo-wrapper{
  position:absolute;
  top:28px;
  left:50%;
  transform:translateX(-50%);
  z-index:3000
}

.logo-wrapper img{
  width:105px;
  height:105px;
  border-radius:50%;
  border:3px solid #fff;
  box-shadow:0 0 18px #68432d;
  object-fit:cover
}

.navbar{
  width:100%;
  margin:0;
  padding:8px 12px
}

.navbar ul{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  width:100%;
  margin:0 auto;
  padding:0;
  list-style:none;
  gap:0
}

.navbar li:not(:last-child)::after{
  content:"";
  display:inline-block;
  width:1px;
  height:16px;
  background:#966844;
  vertical-align:middle;
  opacity:.6
}

.navbar a{
  padding:8px 14px;
  border-radius:5px;
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#c9bbb2;
  transition:color .2s,background .2s,transform .2s
}

.navbar a:hover,
.navbar a[aria-current="page"]{
  background:#a86d45;
  color:#fff;
  transform:translateY(-1px)
}

.page{
  max-width:1180px;
  margin:auto;
  padding:72px 28px;
  text-align:center
}

.hero{
  min-height:520px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center
}

@keyframes photoGlow{
  0%,100%{box-shadow:0 0 14px rgba(168,109,69,.45),0 0 28px rgba(168,109,69,.18)}
  50%{box-shadow:0 0 26px rgba(208,154,109,.9),0 0 52px rgba(168,109,69,.4)}
}

@keyframes backgroundGlow{
  0%{background-position:50% 15%;}
  100%{background-position:50% 85%;}
}

img{
  animation:photoGlow 4s ease-in-out infinite;
}

.headshot{
  width:160px;
  height:160px;
  border-radius:50%;
  border:4px solid #fff;
  box-shadow:0 0 20px #8b5e3c;
  object-fit:cover;
  margin-bottom:24px
}

h1,h2{
  margin:0;
  font-weight:700;
  letter-spacing:.02em
}

h1{
  font-size:clamp(2.2rem,6vw,4.5rem)
}

h2{
  font-size:1.8rem
}

h1 u,h2 u{
  text-decoration-color:#a86d45;
  text-decoration-thickness:2px;
  text-underline-offset:8px
}

.intro{
  max-width:560px;
  margin:18px auto;
  color:#c9bbb2;
  font-size:1.1rem;
  line-height:1.85
}

.about-copy{
  max-width:620px;
  margin-left:auto;
  margin-right:auto
}

.section{
  padding:72px 0;
  border-top:1px solid #51372a
}

.projects{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:28px;
  margin-top:28px;
  align-items:stretch
}

.portfolio .projects,
.products-page .projects{
  grid-template-columns:repeat(3,minmax(0,200px));
  justify-content:center
}

.card{
  background:linear-gradient(145deg,rgba(33,23,20,.96),rgba(14,10,9,.96));
  border:1px solid #51372a;
  border-radius:16px;
  padding:22px;
  display:flex;
  flex-direction:column;
  gap:14px;
  min-height:100%;
  overflow:hidden;
  box-shadow:0 14px 32px rgba(0,0,0,.3);
  transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease
}

.page > .section .card{
  background:#000
}

.card:hover{
  transform:translateY(-5px);
  border-color:#a86d45;
  box-shadow:0 18px 38px rgba(0,0,0,.5),0 0 22px rgba(168,109,69,.12)
}

.card h2{
  min-height:2.5em;
  display:flex;
  align-items:flex-start;
  justify-content:center;
  font-size:1.2rem;
  line-height:1.3;
  color:#f5eee8
}

.card p{
  color:#c9bbb2;
  line-height:1.65
}

.card p:last-child{
  margin-top:auto;
  color:#fff;
  font-weight:700;
  letter-spacing:.04em
}

.card img{
  width:100%;
  height:160px;
  aspect-ratio:1 / 1;
  object-fit:cover;
  background:#000;
  border:8px solid #050403;
  border-radius:10px
}

.products-page .card img{
  border:20px solid #050403
}

.service-icon{
  display:block;
  width:52px;
  height:52px;
  margin:4px auto 2px;
  fill:none;
  stroke:#d4af37;
  stroke-width:3;
  stroke-linecap:round;
  stroke-linejoin:round;
  filter:drop-shadow(0 0 7px rgba(208,154,109,.18))
}

.massage-icon{stroke:#e58b9b}
.tattoo-icon{stroke:#c78cff}
.writing-icon{stroke:#6ec6ff}
.membership-icon{stroke:#f0b45b}
.growth-icon{stroke:#72d18b}
.music-icon{stroke:#ffcf5c}
.gigs-icon{stroke:#ff8b6a}
.web-icon{stroke:#72c7ff}

.btn,
form button{
  display:inline-block;
  background:linear-gradient(135deg,#a86d45,#70442c);
  color:#fff;
  border:1px solid rgba(245,238,232,.16);
  padding:11px 18px;
  border-radius:9px;
  cursor:pointer;
  font-weight:700;
  letter-spacing:.04em;
  transition:transform .2s,box-shadow .2s,background .2s
}

.btn:hover,
form button:hover{
  background:linear-gradient(135deg,#d09a6d,#a86d45);
  box-shadow:0 8px 20px rgba(168,109,69,.25);
  transform:translateY(-2px)
}

.contact-info{
  max-width:600px;
  margin:auto;
  background:rgba(23,17,14,.72);
  border:1px solid #51372a;
  border-radius:16px;
  padding:28px;
  box-shadow:0 14px 32px rgba(0,0,0,.25)
}

.contact-info p{
  margin-bottom:25px
}

form{
  display:flex;
  flex-direction:column;
  text-align:left;
  gap:8px
}

input,
textarea,
select{
  background:#0d0a09;
  color:#f5eee8;
  border:1px solid #624333;
  border-radius:9px;
  padding:12px;
  font:inherit;
  margin-bottom:12px;
  outline:none
}

input:focus,
textarea:focus,
select:focus{
  border-color:#d09a6d;
  box-shadow:0 0 0 3px rgba(168,109,69,.18)
}

textarea{
  min-height:140px
}

select{
  text-align:center;
  text-align-last:center
}

footer{
  position:fixed;
  bottom:0;
  left:0;
  width:100%;
  background:rgba(8,7,6,.94);
  border-top:1px solid rgba(208,154,109,.28);
  padding:16px;
  text-align:center;
  z-index:10
}

.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  max-width:1180px;
  margin:0 auto
}

.footer-logo{
  width:48px;
  height:48px;
  border-radius:50%;
  border:2px solid #fff;
  object-fit:cover;
  box-shadow:none!important;
  animation:none!important
}

.seed-button{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  background:#68432d!important;
  color:#fff!important;
  border-radius:5px!important;
  padding:7px 14px!important;
  font-size:.8rem!important;
  line-height:1.2!important;
  white-space:nowrap
}

.social-links{
  display:flex;
  flex-direction:row-reverse;
  justify-content:flex-start;
  align-items:center;
  gap:2px;
  margin-left:auto
}

.social-links a{
  position:relative;
  font-weight:bold;
  font-size:20px;
  color:#d09a6d
}

.social-links a:hover{
  color:#fff
}

.social-links img{
   animation:none!important;
   box-shadow:none!important;
   width:24px;
   height:24px;
  display:block;
  object-fit:cover;
  border-radius:6px;
  border:1px solid rgba(208,154,109,.35)
}

.social-links img:hover{
  transform:scale(1.1)
}

@media(min-width:601px){
   .social-links img{
     width:34px;
     height:34px
  }
}

@media(max-width:600px){
  body{
    padding-top:120px
  }

  .navbar{
    padding-left:2px;
    padding-right:2px
  }

  .navbar ul{
    flex-wrap:nowrap;
    justify-content:space-between
  }

  .navbar a{
    padding:8px 5px;
    font-size:10px;
    white-space:nowrap
  }

  .page{
    padding:42px 18px
  }

  .section{
    padding:48px 0
  }

  .projects,
  .portfolio .projects,
  .products-page .projects{
    grid-template-columns:1fr
  }

  .card{
    padding:18px;
    min-height:320px
  }

  .hero{
    min-height:400px
  }

  .hero h1{
    letter-spacing:.1em
  }

  .footer-inner{
    padding:0 4px
  }

  .seed-button{
    font-size:.7rem!important;
    padding:6px 9px!important
  }
}