:root{
  --paper:#F6F8F4;
  --ink:#24302A;
  --ink-soft:#3A473F;
  --sage:#56775A;
  --sage-deep:#46634B;
  --pale:#D8E4D8;
  --mist:#EDF2EC;
  --white:#FFFFFF;
  --hairline:#C7D5C9;
  --line:#56775A;
}

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

html{
  scroll-behavior:smooth;
}

body{
  font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size:16px;
  line-height:1.6;
  color:var(--ink);
  background-color:var(--paper);
  overflow-x:hidden;
}

a{
  color:var(--sage);
  text-decoration:none;
}

a:hover{
  color:var(--sage-deep);
}

.home-page{
  width:100%;
  overflow-x:hidden;
}

/* ---------- Reel Nav ---------- */

.reel-nav{
  position:sticky;
  top:0;
  z-index:50;
  background-color:var(--paper);
  border-bottom:2px solid var(--line);
}

.reel-nav.scrolled{
  background-color:var(--mist);
}

.nav-inner{
  max-width:1200px;
  margin:0 auto;
  padding:14px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.brand-glyph{
  width:22px;
  height:22px;
  background-color:var(--sage);
  border-radius:3px;
  flex:0 0 auto;
}

.brand-text{
  display:flex;
  flex-direction:column;
  line-height:1.15;
}

.brand-name{
  font-weight:700;
  letter-spacing:0.12em;
  color:var(--ink);
  font-size:16px;
}

.brand-caption{
  font-size:10px;
  letter-spacing:0.16em;
  text-transform:uppercase;
  color:var(--sage);
  margin-top:2px;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:26px;
}

.nav-link{
  display:flex;
  align-items:center;
  gap:8px;
  text-transform:uppercase;
  font-size:12px;
  font-weight:600;
  letter-spacing:0.14em;
  color:var(--ink);
}

.nav-link:hover{
  color:var(--sage-deep);
}

.nav-link.active{
  color:var(--sage);
}

.frame-glyph{
  position:relative;
  display:inline-block;
  width:14px;
  height:11px;
  border:2px solid var(--sage);
  border-radius:1px;
  flex:0 0 auto;
}

.frame-glyph::before,
.frame-glyph::after{
  content:"";
  position:absolute;
  left:-3px;
  width:4px;
  height:2px;
  background-color:var(--sage);
}

.frame-glyph::before{
  top:1px;
}

.frame-glyph::after{
  bottom:1px;
}

.nav-link.active .frame-glyph{
  background-color:var(--sage);
  border-color:var(--sage);
}

.nav-link.active .frame-glyph::before,
.nav-link.active .frame-glyph::after{
  background-color:var(--sage);
}

.nav-toggle{
  display:none;
  background:none;
  border:none;
  cursor:pointer;
  flex-direction:column;
  gap:5px;
  padding:8px;
}

.toggle-bar{
  display:block;
  width:24px;
  height:2px;
  background-color:var(--ink);
}

.mobile-panel{
  display:none;
  background-color:var(--mist);
  border-top:1px solid var(--hairline);
}

.mobile-panel a{
  display:block;
  padding:14px 24px;
  color:var(--ink);
  font-weight:600;
  letter-spacing:0.08em;
  text-transform:uppercase;
  font-size:13px;
  border-bottom:1px solid var(--hairline);
}

.mobile-panel a:hover{
  background-color:var(--pale);
}

.mobile-panel.open{
  display:block;
}

/* ---------- Stage Hero ---------- */

.stage-hero{
  background-color:var(--paper);
  padding:72px 24px 0;
}

.stage-copy{
  max-width:1200px;
  margin:0 auto;
}

.eyebrow-chip{
  display:inline-block;
  background-color:var(--sage);
  color:var(--white);
  text-transform:uppercase;
  font-size:12px;
  font-weight:700;
  letter-spacing:0.16em;
  padding:8px 16px;
  border-radius:4px;
  margin-bottom:26px;
}

.stage-hero h1{
  font-size:58px;
  line-height:1.08;
  letter-spacing:-0.015em;
  color:var(--ink);
  font-weight:700;
  max-width:900px;
}

.hero-sub{
  font-size:19px;
  line-height:1.65;
  color:var(--ink);
  max-width:640px;
  margin-top:24px;
}

.hero-ctas{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  margin-top:34px;
}

.btn{
  display:inline-block;
  padding:14px 30px;
  border-radius:5px;
  font-weight:700;
  font-size:15px;
  letter-spacing:0.04em;
  transition:background-color .2s ease,color .2s ease,border-color .2s ease;
}

.btn-primary{
  background-color:var(--sage);
  color:var(--white);
}

.btn-primary:hover{
  background-color:var(--sage-deep);
  color:var(--white);
}

.btn-outline{
  background-color:transparent;
  color:var(--sage);
  border:2px solid var(--sage);
}

.btn-outline:hover{
  background-color:var(--pale);
  color:var(--sage-deep);
  border-color:var(--sage-deep);
}

.btn-light{
  background-color:var(--white);
  color:var(--sage);
}

.btn-light:hover{
  background-color:var(--mist);
  color:var(--sage-deep);
}

.stage-graphic{
  position:relative;
  max-width:1200px;
  margin:64px auto 0;
  height:210px;
}

.stage-beam{
  position:absolute;
  top:0;
  width:2px;
  height:160px;
  background-color:var(--sage);
}

.beam-left{
  left:10%;
  transform:rotate(24deg);
  transform-origin:top center;
}

.beam-right{
  right:10%;
  transform:rotate(-24deg);
  transform-origin:top center;
}

.stage-arc{
  position:absolute;
  bottom:28px;
  left:50%;
  transform:translateX(-50%);
  width:320px;
  height:150px;
  border:3px solid var(--sage);
  border-bottom:none;
  border-radius:320px 320px 0 0;
}

.stage-spot{
  position:absolute;
  bottom:20px;
  left:50%;
  transform:translateX(-50%);
  width:22px;
  height:22px;
  border-radius:50%;
  background-color:var(--sage);
}

.stage-baseline{
  position:absolute;
  bottom:6px;
  left:0;
  right:0;
  height:2px;
  background-color:var(--sage);
}

.stage-captions{
  max-width:1200px;
  margin:0 auto;
  padding:10px 24px 54px;
  display:flex;
  justify-content:space-between;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:0.2em;
  color:var(--sage);
  font-weight:700;
}

/* ---------- Section Head ---------- */

.section-head{
  max-width:860px;
  margin:0 auto 44px;
}

.section-head h2{
  font-size:34px;
  color:var(--ink);
  letter-spacing:-0.01em;
  margin-bottom:14px;
}

.section-head p{
  color:var(--ink);
  font-size:17px;
}

/* ---------- Reel Rows ---------- */

.reel-rows{
  background-color:var(--white);
  padding:72px 24px 60px;
}

.reel-row{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  align-items:flex-start;
  gap:26px;
  padding:26px 0;
  border-top:1px solid var(--hairline);
}

.reel-row:last-child{
  border-bottom:1px solid var(--hairline);
}

.reel-row .frame-glyph{
  margin-top:8px;
  width:18px;
  height:14px;
  flex:0 0 auto;
}

.reel-body{
  flex:1;
}

.reel-body h3{
  font-size:22px;
  color:var(--ink);
  margin-bottom:8px;
}

.reel-body p{
  color:var(--ink);
  font-size:16px;
}

.sage-chip{
  display:inline-block;
  background-color:var(--pale);
  color:var(--ink);
  font-size:12px;
  font-weight:700;
  letter-spacing:0.06em;
  text-transform:uppercase;
  padding:6px 14px;
  border-radius:999px;
  white-space:nowrap;
  margin-top:6px;
  flex:0 0 auto;
}

/* ---------- Clap Strip ---------- */

.clap-strip{
  background-color:var(--mist);
  padding:72px 24px;
}

.clap-tiles{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.clap-tile{
  background-color:var(--paper);
  border:2px solid var(--hairline);
  border-radius:8px;
  padding:24px;
}

.clap-tile h3{
  font-size:18px;
  color:var(--ink);
  margin:14px 0 6px;
}

.clap-tile p{
  color:var(--ink);
  font-size:14px;
}

.clap-shape{
  position:relative;
  display:block;
  width:26px;
  height:18px;
  border:2px solid var(--sage);
  border-radius:2px;
  transform:rotate(-6deg);
}

.clap-shape::before,
.clap-shape::after{
  content:"";
  position:absolute;
  left:-4px;
  right:-4px;
  height:2px;
  background-color:var(--sage);
  top:50%;
}

.clap-shape::before{
  transform:rotate(9deg);
}

.clap-shape::after{
  transform:rotate(-8deg);
}

.clap-shape.filled{
  background-color:var(--sage);
  border-color:var(--sage);
}

.clap-shape.filled::before,
.clap-shape.filled::after{
  background-color:var(--sage);
}

/* ---------- Craft Rows ---------- */

.craft-rows{
  background-color:var(--paper);
  padding:72px 24px 60px;
}

.craft-row{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  align-items:flex-start;
  gap:26px;
  padding:26px 0;
  border-top:1px solid var(--hairline);
}

.craft-row:last-child{
  border-bottom:1px solid var(--hairline);
}

.spot-mark{
  position:relative;
  width:14px;
  height:14px;
  border-radius:50%;
  background-color:var(--sage);
  margin-top:8px;
  flex:0 0 auto;
}

.spot-mark::after{
  content:"";
  position:absolute;
  top:100%;
  left:50%;
  transform:translateX(-50%);
  border-left:5px solid transparent;
  border-right:5px solid transparent;
  border-top:9px solid var(--sage);
}

.craft-body{
  flex:1;
}

.craft-body h3{
  font-size:22px;
  color:var(--ink);
  margin-bottom:8px;
}

.craft-body p{
  color:var(--ink);
  font-size:16px;
}

/* ---------- CTA Band ---------- */

.cta-band{
  background-color:var(--sage);
  padding:80px 24px;
}

.cta-inner{
  max-width:760px;
  margin:0 auto;
  text-align:center;
}

.cta-inner h2{
  font-size:34px;
  color:var(--white);
  margin-bottom:16px;
}

.cta-inner p{
  color:var(--white);
  font-size:18px;
  margin-bottom:30px;
}

/* ---------- Spotlight Footer ---------- */

.spotlight-footer{
  background-color:var(--paper);
  border-top:2px solid var(--line);
}

.footer-row{
  max-width:1200px;
  margin:0 auto;
  padding:40px 24px 28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  flex-wrap:wrap;
}

.footer-brand{
  display:flex;
  flex-direction:column;
  line-height:1.3;
}

.footer-brand .brand-name{
  font-size:16px;
}

.footer-brand .brand-caption{
  font-size:10px;
}

.footer-links{
  display:flex;
  gap:26px;
}

.footer-links a{
  color:var(--ink);
  font-weight:600;
  font-size:14px;
  letter-spacing:0.04em;
}

.footer-links a:hover{
  color:var(--sage-deep);
}

.footer-contact{
  display:flex;
  gap:10px;
  font-size:14px;
  color:var(--ink);
  align-items:center;
}

.footer-contact a{
  color:var(--ink);
  font-weight:600;
}

.footer-contact a:hover{
  color:var(--sage-deep);
}

.footer-legal{
  border-top:1px solid var(--hairline);
  max-width:1200px;
  margin:0 auto;
  padding:18px 24px;
  display:flex;
  align-items:center;
  gap:16px;
  justify-content:center;
}

.footer-legal p{
  font-size:12px;
  color:var(--ink);
  letter-spacing:0.03em;
}

.footer-legal a{
  color:var(--sage);
  font-weight:600;
}

.footer-legal a:hover{
  color:var(--sage-deep);
}

.footer-legal .frame-glyph{
  width:12px;
  height:9px;
  flex:0 0 auto;
}

/* ---------- Reveal ---------- */

.fade-up{
  opacity:0;
  transform:translateY(26px);
  transition:opacity .6s ease,transform .6s ease;
}

.fade-up.visible{
  opacity:1;
  transform:none;
}

/* ---------- Secondary page shared blocks ---------- */

.page-hero{
  background-color:var(--mist);
  padding:64px 24px 48px;
  border-bottom:2px solid var(--hairline);
}

.page-hero .page-hero-inner{
  max-width:960px;
  margin:0 auto;
}

.page-hero .eyebrow-chip{
  margin-bottom:20px;
}

.page-hero h1{
  font-size:40px;
  line-height:1.1;
  color:var(--ink);
  letter-spacing:-0.015em;
}

.page-hero p{
  font-size:18px;
  color:var(--ink);
  margin-top:16px;
  max-width:760px;
}

.plain-section{
  background-color:var(--paper);
  padding:64px 24px;
}

.plain-section .inner{
  max-width:960px;
  margin:0 auto;
}

.plain-section h2{
  font-size:28px;
  color:var(--ink);
  margin-bottom:14px;
}

.plain-section p{
  color:var(--ink);
  font-size:16px;
  margin-bottom:14px;
}

.mist-section{
  background-color:var(--mist);
  padding:64px 24px;
}

.mist-section .inner{
  max-width:960px;
  margin:0 auto;
}

.mist-section h2{
  font-size:28px;
  color:var(--ink);
  margin-bottom:14px;
}

.mist-section p{
  color:var(--ink);
  font-size:16px;
  margin-bottom:14px;
}

.section-list{
  list-style:none;
  margin-top:6px;
}

.section-list li{
  position:relative;
  padding-left:28px;
  color:var(--ink);
  margin-bottom:10px;
}

.section-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:8px;
  width:10px;
  height:10px;
  background-color:var(--sage);
  border-radius:2px;
}

.two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:34px;
}

.step-list{
  list-style:none;
  counter-reset:step;
}

.step-list li{
  counter-increment:step;
  padding:18px 0;
  border-bottom:1px solid var(--hairline);
  color:var(--ink);
}

.step-list li:last-child{
  border-bottom:none;
}

.step-list li strong{
  color:var(--sage);
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
  font-size:13px;
}

.step-list li strong::before{
  content:"0" counter(step) "  ·  ";
  color:var(--sage);
}

/* ---------- Contact page ---------- */

.contact-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:40px;
}

.contact-form{
  background-color:var(--white);
  border:2px solid var(--hairline);
  border-radius:8px;
  padding:32px;
}

.form-field{
  margin-bottom:20px;
}

.form-field label{
  display:block;
  font-weight:700;
  font-size:13px;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--ink);
  margin-bottom:8px;
}

.form-field input,
.form-field textarea{
  width:100%;
  padding:12px 14px;
  border:2px solid var(--hairline);
  border-radius:5px;
  background-color:var(--paper);
  color:var(--ink);
  font-family:inherit;
  font-size:15px;
}

.form-field input:focus,
.form-field textarea:focus{
  outline:none;
  border-color:var(--sage);
}

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

.form-note{
  font-size:13px;
  color:var(--ink);
  margin-bottom:18px;
}

.form-status{
  display:none;
  margin-top:16px;
  padding:14px 16px;
  border-radius:5px;
  font-weight:600;
}

.form-status.ok{
  display:block;
  background-color:var(--pale);
  color:var(--ink);
}

.form-status.err{
  display:block;
  background-color:#F5D9D5;
  color:#7A2E26;
}

.contact-details .detail-block{
  margin-bottom:26px;
}

.contact-details h3{
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:0.12em;
  color:var(--sage);
  margin-bottom:8px;
}

.contact-details p,
.contact-details a{
  color:var(--ink);
  font-size:16px;
}

.contact-details a{
  font-weight:600;
}

.contact-details a:hover{
  color:var(--sage-deep);
}

.faq-list{
  list-style:none;
}

.faq-item{
  border:2px solid var(--hairline);
  border-radius:8px;
  background-color:var(--white);
  margin-bottom:14px;
  overflow:hidden;
}

.faq-q{
  width:100%;
  text-align:left;
  background:none;
  border:none;
  padding:18px 22px;
  font-family:inherit;
  font-size:16px;
  font-weight:700;
  color:var(--ink);
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.faq-q .faq-mark{
  color:var(--sage);
  font-size:20px;
  font-weight:700;
  transition:transform .2s ease;
}

.faq-item.open .faq-mark{
  transform:rotate(45deg);
}

.faq-a{
  display:none;
  padding:0 22px 18px;
  color:var(--ink);
  font-size:15px;
}

.faq-item.open .faq-a{
  display:block;
}

/* ---------- Services page ---------- */

.service-block{
  padding:22px 0;
  border-bottom:1px solid var(--hairline);
}

.service-block:last-child{
  border-bottom:none;
}

.service-block h2{
  font-size:24px;
  color:var(--ink);
  margin-bottom:10px;
}

.service-block p{
  color:var(--ink);
  font-size:16px;
}

/* ---------- Responsive ---------- */

@media (max-width:920px){
  .nav-links{
    display:none;
  }

  .nav-toggle{
    display:flex;
  }

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

  .two-col{
    grid-template-columns:1fr;
  }

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

  .stage-hero h1{
    font-size:42px;
  }

  .footer-row{
    flex-direction:column;
    align-items:flex-start;
  }

  .footer-links{
    flex-wrap:wrap;
    gap:16px;
  }
}

@media (max-width:560px){
  .clap-tiles{
    grid-template-columns:1fr;
  }

  .reel-row,
  .craft-row{
    flex-direction:column;
    gap:14px;
  }

  .sage-chip{
    align-self:flex-start;
  }

  .stage-hero h1{
    font-size:34px;
  }

  .stage-arc{
    width:240px;
    height:110px;
    border-radius:240px 240px 0 0;
  }

  .stage-beam{
    height:120px;
  }

  .hero-sub{
    font-size:17px;
  }
}
