:root{
  --ink:#292929;
  --muted:#676d75;
  --line:#e6e8eb;
  --soft:#f6f7f8;
  --blue:#2f77ff;
  --blue-dark:#1762e5;
  --white:#fff;
  --max:1280px
}

*{
  box-sizing:border-box
}

html{
  scroll-behavior:smooth
}

body{
  margin:0;
  color:var(--ink);
  background:#fff;
  font-family:Inter,ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  line-height:1.5;
  -webkit-font-smoothing:antialiased
}

a{
  color:inherit
}

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

.wrap{
  width:min(calc(100% - 52px),var(--max));
  margin:0 auto
}

.eyebrow{
  margin:0 0 12px;
  color:var(--blue);
  font-size:.76rem;
  font-weight:800;
  letter-spacing:.1em
}

.centered{
  text-align:center
}

h1,
h2,
h3{
  margin:0;
  line-height:1.08;
  letter-spacing:-.035em
}

h1{
  font-size:clamp(3.1rem,5vw,5.25rem)
}

h2{
  font-size:clamp(2rem,3vw,3rem)
}

h3{
  font-size:1rem;
  letter-spacing:-.015em
}

p{
  color:var(--muted)
}


/* Header */

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.95);
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(12px)
}

.nav-wrap{
  height:118px;
  display:flex;
  align-items:center;
  justify-content:space-between
}

.brand img{
  width:114px;
  height:114px;
  object-fit:contain
}

.site-nav{
  display:flex;
  align-items:center;
  gap:34px
}

.site-nav a{
  text-decoration:none;
  font-size:.92rem;
  font-weight:700
}

.site-nav a:hover,
.site-nav .external{
  color:var(--blue)
}

.menu-toggle{
  display:none;
  border:1px solid var(--line);
  background:#fff;
  padding:10px 14px;
  font:inherit;
  font-weight:700
}


/* Temporary shipping notice */

.shipping-notice{
  background:#f4f7fc;
  border-bottom:1px solid #dce4f1
}

.shipping-notice-inner{
  min-height:46px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  padding-top:9px;
  padding-bottom:9px
}

.shipping-notice-inner>div{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:0
}

.shipping-notice strong{
  flex:0 0 auto;
  color:var(--blue);
  font-size:.76rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.06em
}

.shipping-notice span{
  color:#565e68;
  font-size:.82rem;
  line-height:1.4
}

.shipping-notice a{
  flex:0 0 auto;
  color:var(--blue);
  font-size:.78rem;
  font-weight:750;
  text-decoration:none
}

.shipping-notice a:hover{
  text-decoration:underline
}


/* Hero */

.hero{
  padding:38px 0 20px
}

.hero-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:44px;
  align-items:center
}

.hero-copy{
  padding:28px 0
}

.hero-copy h1{
  max-width:680px
}

.lead{
  max-width:650px;
  margin:24px 0 26px;
  font-size:1.06rem
}

.button{
  display:inline-flex;
  align-items:center;
  gap:16px;
  justify-content:center;
  min-height:48px;
  padding:0 21px;
  border:1px solid var(--blue);
  background:#fff;
  color:var(--blue);
  text-decoration:none;
  text-transform:uppercase;
  font-size:.76rem;
  letter-spacing:.05em;
  font-weight:800;
  cursor:pointer
}

.button.primary{
  color:#fff;
  background:var(--blue)
}

.button.primary:hover{
  background:var(--blue-dark);
  border-color:var(--blue-dark)
}

.accent-line{
  display:block;
  width:32px;
  height:3px;
  background:var(--blue);
  margin-top:28px
}

.hero-visual{
  min-height:420px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  background:#fff
}

.hero-visual img{
  display:block;
  width:100%;
  max-width:720px;
  height:auto
}


/* Services */

.services{
  padding:34px 0 58px;
  border-top:1px solid var(--line)
}

.section-heading{
  max-width:740px;
  margin:0 auto 34px
}

.section-heading h2{
  margin-bottom:12px
}

.section-heading p:last-child{
  margin:0
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line)
}

.service-card{
  text-align:center;
  padding:30px 18px 28px;
  border-right:1px solid var(--line)
}

.service-card:last-child{
  border-right:0
}

.service-card svg{
  width:34px;
  height:34px;
  margin:0 auto 14px;
  stroke:var(--blue);
  stroke-width:1.45;
  fill:none;
  stroke-linecap:round;
  stroke-linejoin:round
}

.service-card p{
  font-size:.87rem;
  margin:9px 0 0
}


/* Materials */

.materials{
  padding:54px 0;
  background:var(--soft);
  border-top:1px solid #f0f1f3;
  border-bottom:1px solid #eceef0
}

.materials-layout{
  display:grid;
  grid-template-columns:.72fr 1.28fr;
  gap:44px;
  align-items:center
}

.materials-copy h2{
  max-width:420px
}

.materials-copy p{
  max-width:440px;
  margin:17px 0 10px
}

.text-link{
  color:var(--blue);
  font-weight:750;
  text-decoration:none;
  font-size:.9rem
}

.text-link:hover{
  text-decoration:underline
}

.material-row{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  background:#fff;
  border:1px solid var(--line)
}

.material-card{
  text-align:center;
  padding:38px 22px 34px;
  min-height:180px;
  border-right:1px solid var(--line);
  display:flex;
  flex-direction:column;
  justify-content:center
}

.material-card:last-child{
  border-right:0
}

.material-card p{
  font-size:.84rem;
  margin:10px 0 0
}

.reel{
  position:relative;
  width:88px;
  height:88px;
  margin:0 auto 14px;
  border-radius:50%;
  display:block;
  background:linear-gradient(145deg,#222,#555);
  box-shadow:
    inset 0 0 0 8px rgba(255,255,255,.06),
    0 8px 18px rgba(0,0,0,.12)
}

.reel:before{
  content:"";
  position:absolute;
  inset:22px;
  border-radius:50%;
  background:#fafafa;
  box-shadow:0 0 0 5px rgba(0,0,0,.13)
}

.reel:after{
  content:"";
  position:absolute;
  inset:8px;
  border-radius:50%;
  border:2px dashed rgba(255,255,255,.28)
}

.reel-pla{
  background:linear-gradient(145deg,#303030,#666)
}

.reel-petg{
  background:linear-gradient(145deg,#454545,#777)
}

.reel-tpu{
  background:linear-gradient(145deg,#111,#444)
}

.reel-other{
  background:linear-gradient(145deg,#e9e7e1,#fff);
  box-shadow:
    inset 0 0 0 8px rgba(0,0,0,.04),
    0 8px 18px rgba(0,0,0,.08)
}

.reel-other:after{
  border-color:rgba(0,0,0,.15)
}


/* Homepage projects */

.projects{
  padding:56px 0 62px;
  background:#fff;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line)
}

.projects-heading{
  max-width:820px;
  margin:0 0 32px
}

.home-project-feature{
  display:grid;
  grid-template-columns:.45fr 1fr;
  min-height:340px;
  border:1px solid var(--line);
  background:#fff;
  color:var(--ink);
  text-decoration:none;
  overflow:hidden
}

.home-project-feature:hover,
.home-project-mini-card:hover{
  border-color:#cbd1d8;
  box-shadow:0 12px 30px rgba(26,35,50,.07)
}

.home-project-feature-image{
  min-height:340px;
  overflow:hidden;
  background:var(--soft)
}

.home-project-feature-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 44%
}

.home-project-feature-copy{
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
  padding:38px 46px
}

.home-project-feature-copy h3{
  font-size:clamp(1.8rem,2.7vw,2.6rem);
  line-height:1.08;
  letter-spacing:-.035em
}

.home-project-feature-copy>p:not(.eyebrow){
  max-width:620px;
  margin:18px 0 22px
}

.home-project-mini-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:20px
}

.home-project-mini-card{
  border:1px solid var(--line);
  background:#fff;
  color:var(--ink);
  text-decoration:none;
  overflow:hidden
}

.home-project-mini-card>img{
  width:100%;
  height:210px;
  object-fit:cover
}

.home-project-mini-card>div{
  padding:22px 22px 24px
}

.home-project-mini-card h3{
  font-size:1.2rem;
  margin-bottom:10px
}

.home-project-mini-card p:not(.eyebrow){
  font-size:.87rem;
  margin:0 0 16px
}

.projects-footer-copy{
  margin-top:28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  padding-top:24px;
  border-top:1px solid var(--line)
}

.projects-footer-copy p{
  max-width:790px;
  margin:0
}


/* About + contact */

.about-contact{
  padding:52px 0
}

.about-contact-grid{
  display:grid;
  grid-template-columns:1.05fr .42fr 1.38fr;
  gap:32px;
  align-items:start
}

.about-panel h2{
  max-width:390px
}

.about-panel>p:not(.eyebrow){
  font-size:.92rem;
  max-width:480px;
  margin:16px 0
}

.trust-row{
  display:flex;
  gap:22px;
  margin-top:28px;
  flex-wrap:wrap
}

.trust-row span{
  display:flex;
  flex-direction:column;
  gap:6px;
  font-size:.74rem;
  font-weight:700;
  color:var(--ink);
  text-align:center
}

.trust-row b{
  color:var(--blue);
  font-size:1.55rem;
  font-weight:500
}

.process-image{
  height:100%;
  min-height:310px;
  overflow:hidden;
  background:var(--soft)
}

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

.contact-panel h2{
  font-size:clamp(1.8rem,2.6vw,2.45rem);
  margin-bottom:6px
}

.contact-panel>p:not(.eyebrow){
  font-size:.9rem;
  margin:0 0 18px
}

.form-message{
  padding:11px 13px;
  margin-bottom:14px;
  border:1px solid var(--line);
  font-size:.88rem;
  font-weight:700
}

.form-message.success{
  background:#f4fbf5;
  border-color:#9bc9a8
}

.form-message.error{
  background:#fff6f6;
  border-color:#e3abab
}

form{
  display:grid;
  gap:10px
}

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

label{
  display:grid;
  gap:5px;
  font-size:.76rem;
  font-weight:700
}

label span{
  font-weight:500;
  color:var(--muted)
}

input,
textarea{
  width:100%;
  border:1px solid #ccd1d7;
  background:#fff;
  color:var(--ink);
  padding:9px 10px;
  font:inherit;
  outline:none;
  border-radius:0
}

input:focus,
textarea:focus{
  border-color:var(--blue);
  box-shadow:0 0 0 3px rgba(47,119,255,.1)
}

textarea{
  min-height:94px;
  resize:vertical
}

.consent{
  display:flex;
  gap:8px;
  align-items:flex-start;
  font-weight:500;
  color:var(--muted);
  line-height:1.35
}

.consent input{
  width:auto;
  margin-top:2px
}

.consent a{
  color:var(--blue)
}

.hp{
  position:absolute!important;
  left:-9999px!important;
  opacity:0!important;
  pointer-events:none!important
}

.contact-panel .button{
  justify-self:start;
  min-height:40px;
  padding:0 15px;
  font-size:.68rem
}


/* Footer */

.site-footer{
  border-top:1px solid var(--line);
  padding:28px 0 16px
}

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

.footer-grid>div{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:5px
}

.footer-grid strong{
  font-size:.83rem;
  margin-bottom:3px
}

.footer-grid a,
.footer-grid span{
  font-size:.76rem;
  color:var(--muted);
  text-decoration:none
}

.footer-grid a:hover,
.footer-grid .etsy-link{
  color:var(--blue)
}

.footer-bottom{
  display:flex;
  justify-content:center;
  gap:80px;
  margin-top:22px;
  padding-top:16px;
  border-top:1px solid var(--line);
  font-size:.69rem;
  color:var(--muted)
}

.footer-bottom a{
  color:var(--blue);
  text-decoration:none
}


/* Legal pages */

.legal-page{
  padding:70px 0 100px
}

.narrow{
  max-width:820px
}

.legal-page h1{
  font-size:clamp(2.8rem,6vw,4.8rem)
}

.legal-page h2{
  font-size:1.5rem;
  margin-top:38px
}

.legal-page a{
  color:var(--blue)
}

.legal-note{
  margin-top:40px;
  padding:16px;
  border:1px solid var(--line);
  background:var(--soft)
}


/* Keep anchored sections visible below sticky header */

#printing,
#materials,
#projects,
#about,
#contact{
  scroll-margin-top:132px
}


/* Tablet */

@media(max-width:1050px){

  .hero-grid{
    grid-template-columns:1fr 1fr
  }

  .service-grid{
    grid-template-columns:repeat(3,1fr)
  }

  .service-card:nth-child(3){
    border-right:0
  }

  .service-card:nth-child(-n+3){
    border-bottom:1px solid var(--line)
  }

  .materials-layout{
    grid-template-columns:1fr
  }

  .home-project-feature{
    grid-template-columns:.55fr 1fr
  }

  .home-project-mini-grid{
    grid-template-columns:1fr 1fr
  }

  .about-contact-grid{
    grid-template-columns:1fr 1fr
  }

  .process-image{
    display:none
  }

  .footer-grid{
    grid-template-columns:repeat(4,1fr)
  }

  .hero-visual{
    min-height:340px
  }

}


/* Mobile */

@media(max-width:700px){

  #printing,
  #materials,
  #projects,
  #about,
  #contact{
    scroll-margin-top:116px
  }

  .wrap{
    width:min(calc(100% - 30px),var(--max))
  }

  .nav-wrap{
    height:102px
  }

  .brand img{
    width:93px;
    height:93px
  }

  .menu-toggle{
    display:block
  }

  .site-nav{
    display:none;
    position:absolute;
    top:102px;
    left:0;
    right:0;
    background:#fff;
    border-bottom:1px solid var(--line);
    padding:12px 20px 18px;
    flex-direction:column;
    align-items:stretch;
    gap:0
  }

  .site-nav.open{
    display:flex
  }

  .site-nav a{
    padding:12px 0;
    border-bottom:1px solid var(--line)
  }

  .site-nav a:last-child{
    border-bottom:0
  }


  /* Shipping notice mobile */

  .shipping-notice-inner{
    display:block;
    padding-top:12px;
    padding-bottom:13px
  }

  .shipping-notice-inner>div{
    display:block
  }

  .shipping-notice strong{
    display:block;
    margin-bottom:4px
  }

  .shipping-notice span{
    display:block;
    font-size:.8rem
  }

  .shipping-notice a{
    display:inline-block;
    margin-top:7px
  }


  /* Hero */

  .hero{
    padding-top:28px
  }

  .hero-grid{
    grid-template-columns:1fr;
    gap:8px
  }

  .hero-copy{
    padding-bottom:0
  }

  .hero-copy h1{
    font-size:clamp(2.7rem,12vw,4rem)
  }

  .hero-visual{
    min-height:auto
  }

  .hero-visual img{
    margin-top:8px
  }


  /* Services */

  .services{
    padding-bottom:42px
  }

  .section-heading{
    margin-bottom:24px
  }

  .service-grid{
    grid-template-columns:1fr 1fr
  }

  .service-card{
    border-bottom:1px solid var(--line)
  }

  .service-card:nth-child(odd){
    border-right:1px solid var(--line)
  }

  .service-card:nth-child(even){
    border-right:0
  }

  .service-card:nth-last-child(-n+2){
    border-bottom:0
  }


  /* Materials */

  .materials{
    padding:42px 0
  }

  .material-row{
    grid-template-columns:1fr 1fr
  }

  .material-card:nth-child(2){
    border-right:0
  }

  .material-card:nth-child(-n+2){
    border-bottom:1px solid var(--line)
  }


  /* Projects */

  .projects{
    padding:42px 0
  }

  .home-project-feature{
    grid-template-columns:1fr;
    min-height:0
  }

  .home-project-feature-image{
    min-height:0;
    aspect-ratio:4/3
  }

  .home-project-feature-copy{
    padding:26px 22px 28px
  }

  .home-project-mini-grid{
    grid-template-columns:1fr
  }

  .home-project-mini-card{
    display:grid;
    grid-template-columns:120px 1fr
  }

  .home-project-mini-card>img{
    height:100%;
    min-height:180px
  }

  .home-project-mini-card>div{
    padding:20px
  }

  .projects-footer-copy{
    display:block
  }

  .projects-footer-copy .text-link{
    display:inline-block;
    margin-top:14px
  }


  /* About + contact */

  .about-contact{
    padding:42px 0
  }

  .about-contact-grid{
    grid-template-columns:1fr
  }

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


  /* Footer */

  .footer-grid{
    grid-template-columns:1fr 1fr
  }

  .footer-bottom{
    justify-content:space-between;
    gap:20px
  }

  .trust-row{
    justify-content:flex-start
  }

}