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

:root{
  --bg:#050605;
  --bg-soft:#0a0b0a;
  --panel:#10100f;
  --panel-2:#151412;
  --line:rgba(255,255,255,.13);
  --line-gold:rgba(232,181,75,.45);
  --gold:#f1bd55;
  --gold-2:#b77722;
  --gold-3:#ffd97a;
  --text:#fffaf0;
  --muted:#b7b0a5;
  --muted-2:#7f786f;
  --green:#32d37b;
  --shadow:0 22px 70px rgba(0,0,0,.45);
  --scissor-svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f1bd55' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='6' cy='6' r='3'/%3E%3Ccircle cx='6' cy='18' r='3'/%3E%3Cpath d='M20 4 8.1 15.9M14.5 14.5 20 20M8.1 8.1 12 12'/%3E%3C/svg%3E");
}

html{
  scroll-behavior:smooth;
  -webkit-text-size-adjust:100%;
}

body{
  min-height:100vh;
  background:
    linear-gradient(115deg, rgba(255,255,255,.025), transparent 20%, transparent 74%, rgba(241,189,85,.08)),
    radial-gradient(circle at 76% 9%, rgba(241,189,85,.13), transparent 260px),
    linear-gradient(180deg, #050504 0%, #080a09 45%, #030404 100%);
  color:var(--text);
  font-family:'Inter', Arial, sans-serif;
  overflow-x:hidden;
}

body::before{
  content:'';
  position:fixed;
  inset:0;
  z-index:-2;
  pointer-events:none;
  background-image:
    linear-gradient(120deg, transparent 0 42%, rgba(255,255,255,.035) 42.2%, transparent 42.8% 100%),
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.014) 1px, transparent 1px);
  background-size:760px 760px, 58px 58px, 58px 58px;
  mask-image:linear-gradient(180deg, rgba(0,0,0,.9), rgba(0,0,0,.25) 78%, transparent);
}

body::after{
  content:'';
  position:fixed;
  inset:auto -10% 0 auto;
  z-index:-1;
  width:52%;
  height:92%;
  pointer-events:none;
  background:
    linear-gradient(110deg, transparent 0 52%, rgba(241,189,85,.14) 52.4%, rgba(241,189,85,.02) 53.8%, transparent 55%),
    linear-gradient(110deg, transparent 0 68%, rgba(241,189,85,.42) 68.4%, rgba(241,189,85,.05) 69.4%, transparent 70%);
  opacity:.9;
}

a,
button{
  -webkit-tap-highlight-color:transparent;
}

button{
  font:inherit;
}

svg{
  width:20px;
  height:20px;
  display:block;
  fill:none;
  stroke:currentColor;
  stroke-linecap:round;
  stroke-linejoin:round;
  stroke-width:2;
}

.page-loader{
  position:fixed;
  inset:0;
  z-index:1000;
  display:grid;
  place-content:center;
  justify-items:center;
  gap:18px;
  background:#030303;
  color:var(--text);
  pointer-events:auto;
  animation:loaderExit .26s ease 1.02s forwards;
}

.loader-seen .page-loader{
  display:none;
}

.page-loader.is-done{
  opacity:0;
  visibility:hidden;
  pointer-events:none;
}

.loader-emblem{
  position:relative;
  width:116px;
  height:116px;
  display:grid;
  place-items:center;
  animation:loaderLogoSettle .45s ease .72s both;
}

.loader-mark{
  width:66px;
  height:66px;
  display:grid;
  place-items:center;
  border:1px solid var(--line-gold);
  border-radius:8px;
  background:linear-gradient(145deg, rgba(241,189,85,.25), rgba(241,189,85,.04));
  color:var(--gold-3);
  font-family:'Poppins', Arial, sans-serif;
  font-size:38px;
  font-weight:900;
  box-shadow:0 0 45px rgba(241,189,85,.18);
}

.loader-scissor{
  position:absolute;
  inset:0;
  width:116px;
  height:116px;
  color:var(--gold);
  opacity:.82;
  stroke-width:2.1;
}

.loader-scissor-a{
  transform:rotate(-28deg) scale(.9);
  animation:loaderScissorA .82s ease-in-out both;
}

.loader-scissor-b{
  transform:rotate(28deg) scale(.9);
  animation:loaderScissorB .82s ease-in-out both;
}

.page-loader strong{
  color:#f4eddf;
  font-size:15px;
  font-weight:900;
  letter-spacing:0;
  text-transform:uppercase;
}

.loader-progress{
  position:relative;
  width:190px;
  height:2px;
  overflow:hidden;
  border-radius:999px;
  background:rgba(241,189,85,.18);
}

.loader-progress::before{
  content:'';
  position:absolute;
  inset:0;
  transform-origin:left;
  transform:scaleX(0);
  background:linear-gradient(90deg, rgba(241,189,85,.1), var(--gold-3), var(--gold-2));
  animation:loaderProgress .82s ease forwards;
}

.site-header,
.hero,
.stats-strip,
.services-section,
.gallery-section,
.benefits-strip,
.steps-section,
.cta-section,
.footer{
  width:min(100%, 1240px);
  margin:0 auto;
  padding-left:20px;
  padding-right:20px;
}

.site-header{
  position:sticky;
  top:0;
  z-index:40;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:22px;
  padding-top:18px;
  padding-bottom:18px;
  background:linear-gradient(180deg, rgba(5,6,5,.92), rgba(5,6,5,.62));
  backdrop-filter:blur(18px);
}

.brand{
  display:flex;
  align-items:center;
  min-width:0;
  gap:12px;
  color:var(--text);
  text-decoration:none;
}

.brand-mark{
  width:52px;
  height:52px;
  flex:0 0 auto;
  display:grid;
  place-items:center;
  border:1px solid var(--line-gold);
  border-radius:8px;
  background:linear-gradient(145deg, rgba(241,189,85,.22), rgba(241,189,85,.04));
  color:var(--gold-3);
  font-family:'Poppins', Arial, sans-serif;
  font-size:29px;
  font-weight:900;
  box-shadow:0 0 0 1px rgba(0,0,0,.28) inset, 0 14px 30px rgba(241,189,85,.18);
}

.brand-copy small,
.section-mini{
  color:var(--gold);
  font-size:12px;
  font-weight:900;
  letter-spacing:0;
  text-transform:uppercase;
}

.brand-copy strong{
  display:block;
  margin-top:2px;
  font-size:18px;
  font-weight:900;
  letter-spacing:0;
  line-height:1.05;
  text-transform:uppercase;
}

.primary-nav{
  justify-self:center;
  display:none;
  align-items:center;
  gap:8px;
  padding:4px;
  border:1px solid rgba(255,255,255,.06);
  border-radius:8px;
  background:rgba(255,255,255,.018);
}

.primary-nav a{
  min-height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0 18px;
  border-radius:7px;
  color:#efeae1;
  font-size:14px;
  font-weight:700;
  text-decoration:none;
}

.primary-nav a.active,
.primary-nav a:hover{
  background:rgba(255,255,255,.07);
}

.header-actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:12px;
}

.header-schedule{
  min-height:52px;
  display:none;
  align-items:center;
  gap:10px;
  padding:0 20px;
  border:1px solid var(--line-gold);
  border-radius:8px;
  color:var(--gold-3);
  font-weight:900;
  text-decoration:none;
}

.menu-button{
  width:44px;
  height:44px;
  display:grid;
  place-content:center;
  gap:6px;
  color:var(--text);
  text-decoration:none;
}

.menu-button span{
  width:24px;
  height:2px;
  display:block;
  border-radius:99px;
  background:currentColor;
}

.hero{
  position:relative;
  display:grid;
  gap:30px;
  padding-top:28px;
  padding-bottom:18px;
}

.hero-copy{
  position:relative;
  z-index:2;
  align-self:center;
}

.pill{
  width:max-content;
  max-width:100%;
  display:inline-flex;
  align-items:center;
  gap:9px;
  margin-bottom:26px;
  padding:12px 16px;
  border:1px solid var(--line-gold);
  border-radius:999px;
  background:linear-gradient(135deg, rgba(241,189,85,.18), rgba(241,189,85,.04));
  color:var(--gold-3);
  font-size:12px;
  font-weight:900;
  letter-spacing:0;
  text-transform:uppercase;
}

.pill span{
  width:8px;
  height:8px;
  flex:0 0 auto;
  border-radius:50%;
  background:var(--gold-3);
  box-shadow:0 0 18px rgba(241,189,85,.72);
}

.hero h1,
.section-heading h2,
.steps-section h2,
.cta-copy h2{
  font-family:'Poppins', Arial, sans-serif;
  font-weight:900;
  letter-spacing:0;
}

.hero h1{
  max-width:620px;
  font-size:52px;
  line-height:1.02;
  text-transform:uppercase;
}

.hero h1 .title-line{
  display:block;
}

.hero h1 .title-gold,
.cta-copy h2 span{
  display:block;
  color:var(--gold);
}

.hero h1 .title-gold{
  position:relative;
  width:max-content;
  max-width:100%;
  overflow:hidden;
}

.hero h1 .title-gold::after{
  content:'';
  position:absolute;
  inset:0;
  transform:translateX(-115%);
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.34), transparent);
  pointer-events:none;
}

.hero-text{
  max-width:510px;
  margin-top:22px;
  color:#d2ccc2;
  font-size:18px;
  line-height:1.65;
}

.hero-buttons{
  display:grid;
  gap:12px;
  margin-top:28px;
}

.primary-button,
.secondary-button{
  min-height:62px;
  position:relative;
  isolation:isolate;
  overflow:hidden;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  border-radius:8px;
  font-size:14px;
  font-weight:900;
  text-decoration:none;
  text-transform:uppercase;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease, color .25s ease;
}

.primary-button{
  border:1px solid rgba(255,225,152,.5);
  background:linear-gradient(135deg, #ffe08a 0%, #f2ba52 54%, #b77722 100%);
  color:#130d05;
  box-shadow:0 18px 42px rgba(241,189,85,.26);
}

.primary-button::before{
  content:'';
  position:absolute;
  top:-35%;
  bottom:-35%;
  left:-65%;
  z-index:-1;
  width:46%;
  transform:skewX(-22deg);
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.48), transparent);
  opacity:0;
}

.primary-button:hover{
  transform:scale(1.02);
  box-shadow:0 20px 50px rgba(241,189,85,.32);
}

.primary-button:hover::before{
  animation:buttonSheen .68s ease;
}

.secondary-button{
  border:1px solid rgba(241,189,85,.38);
  background:rgba(255,255,255,.035);
  color:var(--text);
}

.secondary-button:hover{
  border-color:rgba(50,211,123,.42);
  background:linear-gradient(135deg, rgba(50,211,123,.12), rgba(255,255,255,.035));
  box-shadow:0 16px 38px rgba(50,211,123,.08);
}

.secondary-button svg{
  color:#33d779;
}

.social-proof{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:14px;
  margin-top:32px;
  color:#e7e0d6;
  font-size:13px;
  font-weight:700;
}

.social-proof > span{
  min-width:0;
}

.avatar-stack{
  display:flex;
  padding-left:6px;
}

.avatar-stack img{
  width:38px;
  height:38px;
  margin-left:-6px;
  border:2px solid #15110b;
  border-radius:50%;
  object-fit:cover;
  background:var(--panel);
}

.rating-inline{
  display:flex;
  align-items:center;
  gap:8px;
  color:var(--gold-3);
}

.rating-inline span{
  font-size:14px;
  line-height:1;
}

.rating-inline strong{
  color:var(--text);
}

.hero-visual{
  position:relative;
  min-height:470px;
  isolation:isolate;
  display:grid;
  place-items:end center;
  overflow:hidden;
}

.hero-visual::before{
  content:'';
  position:absolute;
  right:11%;
  bottom:2%;
  z-index:-3;
  width:36%;
  height:98%;
  border-right:2px solid rgba(241,189,85,.86);
  transform:skewX(-24deg);
  filter:drop-shadow(0 0 20px rgba(241,189,85,.45));
}

.hero-visual::after{
  content:'';
  position:absolute;
  inset:23% 5% 0 12%;
  z-index:-2;
  background:
    radial-gradient(circle at 44% 64%, rgba(241,189,85,.36), transparent 6px),
    radial-gradient(circle at 58% 70%, rgba(241,189,85,.22), transparent 4px),
    radial-gradient(circle at 48% 75%, rgba(241,189,85,.15), transparent 3px),
    linear-gradient(128deg, transparent 18%, rgba(241,189,85,.22), transparent 56%);
  opacity:.85;
  filter:blur(.1px);
}

.hero-scissor-bg{
  position:absolute;
  left:2%;
  top:13%;
  z-index:-1;
  width:76%;
  height:auto;
  color:var(--gold);
  opacity:.055;
  stroke-width:5;
  transform:rotate(-18deg);
  transform-origin:center;
  animation:scissorDrift 28s ease-in-out infinite;
}

.hero-visual img{
  position:relative;
  z-index:1;
  width:min(100%, 560px);
  max-height:610px;
  display:block;
  object-fit:contain;
  object-position:center bottom;
  filter:drop-shadow(0 35px 52px rgba(0,0,0,.66));
  mask-image:linear-gradient(180deg, #000 0 82%, transparent 100%);
}

.hero-monogram{
  position:absolute;
  left:4%;
  top:8%;
  z-index:-1;
  color:transparent;
  -webkit-text-stroke:1px rgba(241,189,85,.28);
  font-family:'Poppins', Arial, sans-serif;
  font-size:330px;
  font-weight:900;
  line-height:.8;
  opacity:.75;
}

.hero-light{
  position:absolute;
  z-index:-2;
  display:block;
  background:linear-gradient(180deg, transparent, rgba(241,189,85,.5), transparent);
  filter:blur(1px);
  transform:rotate(27deg);
}

.hero-light-a{
  left:12%;
  bottom:10%;
  width:2px;
  height:310px;
}

.hero-light-b{
  right:4%;
  bottom:3%;
  width:2px;
  height:370px;
}

.quality-seal{
  position:absolute;
  right:3%;
  top:16%;
  z-index:2;
  width:126px;
  height:126px;
  display:grid;
  place-items:center;
  border:1px solid var(--line-gold);
  border-radius:50%;
  color:var(--gold-3);
  background:rgba(5,5,4,.55);
  box-shadow:0 18px 45px rgba(0,0,0,.34);
}

.quality-seal span,
.quality-seal small{
  position:absolute;
  width:100%;
  text-align:center;
  color:var(--gold-3);
  font-size:9px;
  font-weight:900;
  letter-spacing:0;
  text-transform:uppercase;
}

.quality-seal span{
  top:18px;
  transform:rotate(-18deg);
}

.quality-seal small{
  bottom:20px;
  transform:rotate(18deg);
}

.quality-seal svg{
  width:48px;
  height:48px;
  stroke-width:1.8;
}

.signature-block{
  position:absolute;
  right:16%;
  bottom:11%;
  z-index:2;
  display:grid;
  gap:6px;
  text-align:center;
  transform:rotate(-6deg);
}

.signature-block strong{
  color:var(--gold);
  font-family:'Brush Script MT', 'Segoe Script', cursive;
  font-size:34px;
  font-weight:400;
}

.signature-block span{
  color:#eee7dc;
  font-size:10px;
  font-weight:800;
  letter-spacing:6px;
  text-transform:uppercase;
}

.stats-strip{
  display:grid;
  gap:0;
  margin-top:16px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.016)),
    rgba(11,12,11,.76);
  box-shadow:var(--shadow);
}

.stats-strip article{
  display:flex;
  align-items:center;
  gap:18px;
  min-height:128px;
  padding:24px;
  border-bottom:1px solid rgba(255,255,255,.09);
}

.stats-strip article:last-child{
  border-bottom:0;
}

.stat-icon,
.service-icon,
.benefits-strip article > span,
.step-icon{
  width:62px;
  height:62px;
  flex:0 0 auto;
  display:grid;
  place-items:center;
  border:1px solid rgba(241,189,85,.28);
  border-radius:50%;
  background:
    radial-gradient(circle at 50% 45%, rgba(241,189,85,.3), rgba(241,189,85,.05) 58%, transparent),
    rgba(255,255,255,.03);
  color:var(--gold-3);
}

.stat-icon svg,
.service-icon svg,
.benefits-strip svg,
.step-icon svg{
  width:30px;
  height:30px;
  stroke-width:1.8;
}

.stats-strip strong{
  display:block;
  font-family:'Poppins', Arial, sans-serif;
  font-size:32px;
  line-height:1;
}

.stats-strip p{
  margin-top:8px;
  color:#c8c0b4;
  font-size:14px;
}

.services-section,
.gallery-section,
.steps-section,
.cta-section{
  position:relative;
  padding-top:48px;
}

.services-section::before,
.gallery-section::before,
.steps-section::before,
.cta-section::before{
  content:'';
  position:absolute;
  left:20px;
  right:20px;
  top:20px;
  height:1px;
  transform-origin:left;
  background:linear-gradient(90deg, transparent, rgba(241,189,85,.48), transparent);
  opacity:.62;
}

.services-section::after,
.gallery-section::after,
.steps-section::after,
.cta-section::after{
  content:'';
  position:absolute;
  top:11px;
  left:20px;
  width:18px;
  height:18px;
  background-image:var(--scissor-svg);
  background-position:center;
  background-repeat:no-repeat;
  background-size:contain;
  opacity:0;
  pointer-events:none;
}

.section-heading{
  display:grid;
  gap:18px;
  margin-bottom:22px;
}

.section-mini{
  display:block;
  margin-bottom:7px;
}

.section-heading h2,
.steps-section h2{
  color:var(--text);
  font-size:34px;
  line-height:1.12;
}

.outline-link{
  width:max-content;
  min-height:56px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  padding:0 22px;
  border:1px solid rgba(241,189,85,.28);
  border-radius:8px;
  color:var(--gold-3);
  font-size:13px;
  font-weight:900;
  text-decoration:none;
}

.outline-link svg{
  width:18px;
  height:18px;
}

.services-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
}

.service-card{
  min-height:206px;
  position:relative;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  padding:24px 22px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:8px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.014)),
    rgba(15,16,15,.86);
  color:var(--text);
  text-decoration:none;
  box-shadow:0 18px 45px rgba(0,0,0,.23);
  transition:transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.service-card::before{
  content:'';
  position:absolute;
  top:18px;
  right:18px;
  width:20px;
  height:20px;
  background-image:var(--scissor-svg);
  background-position:center;
  background-repeat:no-repeat;
  background-size:contain;
  opacity:.28;
  pointer-events:none;
  transform:rotate(-16deg);
  transform-origin:center;
}

.service-card:hover{
  border-color:rgba(241,189,85,.62);
  transform:translateY(-4px);
  box-shadow:0 24px 58px rgba(0,0,0,.32), 0 0 34px rgba(241,189,85,.09);
}

.service-card:hover::before{
  opacity:.62;
  animation:serviceSnip .46s ease;
}

.service-card strong{
  display:block;
  min-height:42px;
  font-size:18px;
  font-weight:900;
  line-height:1.18;
}

.service-card p{
  min-height:50px;
  color:#c1baaf;
  font-size:13px;
  line-height:1.55;
}

.card-action{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  color:var(--gold-3);
  font-size:13px;
  font-weight:900;
}

.card-action b{
  display:inline-block;
  font-size:20px;
  font-weight:900;
  line-height:1;
  transition:transform .25s ease;
}

.service-card:hover .card-action b{
  transform:translateX(5px);
}

.cuts-gallery{
  display:grid;
  grid-auto-flow:column;
  grid-auto-columns:74%;
  gap:12px;
  margin:0 -20px;
  padding:4px 20px 10px;
  overflow-x:auto;
  scroll-snap-type:x proximity;
  scrollbar-width:none;
}

.cuts-gallery::-webkit-scrollbar{
  display:none;
}

.gallery-item,
.video-tile{
  width:100%;
  aspect-ratio:1 / 1.15;
  position:relative;
  display:block;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.15);
  border-radius:8px;
  background:var(--panel);
  box-shadow:0 18px 44px rgba(0,0,0,.28);
  scroll-snap-align:start;
}

.gallery-item img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  transition:transform .45s ease;
}

.video-tile video{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  transition:transform .45s ease;
}

.gallery-item::after,
.video-tile::after{
  content:'';
  position:absolute;
  inset:0;
  z-index:1;
  background:linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.72));
  opacity:0;
  transition:opacity .3s ease;
}

.video-tile span{
  position:absolute;
  left:18px;
  bottom:18px;
  z-index:2;
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.64);
  border-radius:50%;
  color:#fff;
  background:rgba(0,0,0,.35);
  backdrop-filter:blur(6px);
  transition:opacity .25s ease, transform .25s ease;
}

.video-tile span svg{
  width:24px;
  height:24px;
  margin-left:3px;
  fill:currentColor;
  stroke-width:0;
}

.gallery-caption{
  position:absolute;
  left:14px;
  right:14px;
  bottom:14px;
  z-index:3;
  display:grid;
  gap:8px;
  opacity:0;
  transform:translateY(10px);
  transition:opacity .3s ease, transform .3s ease;
}

.gallery-caption strong{
  color:#fff8eb;
  font-size:14px;
  line-height:1.2;
}

.gallery-caption em{
  width:max-content;
  min-height:32px;
  display:inline-flex;
  align-items:center;
  padding:0 12px;
  border:1px solid rgba(241,189,85,.55);
  border-radius:8px;
  background:rgba(0,0,0,.35);
  color:var(--gold-3);
  font-size:12px;
  font-style:normal;
  font-weight:900;
}

.gallery-item:hover img,
.video-tile:hover video{
  transform:scale(1.04);
}

.gallery-item:hover::after,
.video-tile:hover::after{
  opacity:1;
}

.gallery-item:hover .gallery-caption,
.video-tile:hover .gallery-caption{
  opacity:1;
  transform:translateY(0);
}

.video-tile:hover > span{
  opacity:0;
  transform:scale(.92);
}

.benefits-strip{
  display:grid;
  gap:0;
  margin-top:42px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.017)),
    rgba(16,17,16,.86);
  box-shadow:var(--shadow);
}

.benefits-strip article{
  display:flex;
  align-items:center;
  gap:18px;
  min-height:124px;
  padding:22px;
  border-bottom:1px solid rgba(255,255,255,.09);
}

.benefits-strip article:last-child{
  border-bottom:0;
}

.benefits-strip strong{
  display:block;
  font-size:17px;
  line-height:1.25;
}

.benefits-strip p{
  max-width:230px;
  margin-top:8px;
  color:#c1baaf;
  font-size:13px;
  line-height:1.55;
}

.steps-section{
  position:relative;
}

.steps-grid{
  position:relative;
  display:grid;
  gap:24px;
  margin-top:28px;
}

.steps-grid article{
  position:relative;
  display:grid;
  gap:13px;
  align-content:start;
}

.step-icon{
  position:relative;
  width:88px;
  height:88px;
  border-color:rgba(241,189,85,.6);
}

.step-icon small{
  position:absolute;
  right:-7px;
  bottom:6px;
  width:25px;
  height:25px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:linear-gradient(135deg, #ffe08a, #b77722);
  color:#140e05;
  font-size:12px;
  font-weight:900;
}

.steps-grid strong{
  font-size:18px;
  line-height:1.25;
}

.steps-grid p{
  max-width:240px;
  color:#c1baaf;
  font-size:14px;
  line-height:1.62;
}

.cta-card{
  position:relative;
  display:grid;
  gap:24px;
  padding:20px;
  overflow:hidden;
  border:1px solid rgba(241,189,85,.58);
  border-radius:8px;
  background:
    linear-gradient(90deg, rgba(5,6,5,.88), rgba(5,6,5,.72)),
    linear-gradient(110deg, rgba(241,189,85,.14), transparent 44%),
    rgba(12,13,12,.92);
  box-shadow:0 24px 64px rgba(0,0,0,.36);
}

.cta-photo{
  min-height:190px;
  border-radius:6px;
  background:
    linear-gradient(90deg, rgba(0,0,0,.15), rgba(0,0,0,.76)),
    url('../assets/corte.jpeg') center 42% / cover;
}

.cta-copy p{
  margin-bottom:8px;
  color:#f0e7da;
  font-size:18px;
}

.cta-copy h2{
  max-width:470px;
  font-size:34px;
  line-height:1.12;
}

.cta-points{
  display:grid;
  gap:14px;
  align-content:center;
  color:#eee6db;
  font-size:14px;
  font-weight:700;
}

.cta-points span{
  position:relative;
  padding-left:30px;
}

.cta-points span::before{
  content:'';
  position:absolute;
  left:0;
  top:1px;
  width:16px;
  height:16px;
  border:1px solid var(--gold);
  border-radius:50%;
}

.cta-points span::after{
  content:'';
  position:absolute;
  left:5px;
  top:6px;
  width:6px;
  height:3px;
  border-left:2px solid var(--gold);
  border-bottom:2px solid var(--gold);
  transform:rotate(-45deg);
}

.footer{
  position:relative;
  display:grid;
  gap:28px;
  margin-top:18px;
  padding-top:52px;
  padding-bottom:28px;
  color:#b7afa4;
}

.footer::before{
  content:'';
  position:absolute;
  left:20px;
  right:20px;
  top:18px;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(241,189,85,.45), rgba(255,255,255,.1), transparent);
}

.footer-brand{
  display:grid;
  gap:22px;
}

.footer .brand-mark{
  width:42px;
  height:42px;
  font-size:23px;
}

.footer .brand-copy strong{
  font-size:14px;
}

.footer-social{
  display:flex;
  align-items:center;
  gap:18px;
}

.footer-social a{
  color:#eee7dc;
  text-decoration:none;
}

.footer-social svg{
  width:20px;
  height:20px;
}

.footer-column{
  display:grid;
  gap:12px;
  align-content:start;
  padding:0;
}

.footer-column strong{
  color:var(--text);
  font-size:15px;
}

.footer-column p{
  color:#b7afa4;
  font-size:14px;
  line-height:1.55;
}

.footer-column a{
  width:max-content;
  color:var(--gold-3);
  font-size:14px;
  font-weight:800;
  text-decoration:none;
  transition:color .2s ease, transform .2s ease;
}

.footer-column a:hover{
  color:#ffe7a8;
  transform:translateX(3px);
}

.footer-bottom{
  display:grid;
  gap:12px;
  color:#8f877c;
  font-size:12px;
}

.footer-bottom a{
  color:var(--gold-3);
  font-weight:900;
  text-decoration:none;
}

.footer-bottom a:hover{
  color:#ffe7a8;
}

@keyframes loaderScissorA{
  0%{transform:rotate(-46deg) scale(.72); opacity:0;}
  48%{transform:rotate(-24deg) scale(.96); opacity:.9;}
  100%{transform:rotate(-31deg) scale(.9); opacity:.78;}
}

@keyframes loaderScissorB{
  0%{transform:rotate(46deg) scale(.72); opacity:0;}
  48%{transform:rotate(24deg) scale(.96); opacity:.9;}
  100%{transform:rotate(31deg) scale(.9); opacity:.78;}
}

@keyframes loaderLogoSettle{
  0%, 70%{transform:scale(1);}
  100%{transform:scale(.94);}
}

@keyframes loaderProgress{
  to{transform:scaleX(1);}
}

@keyframes loaderExit{
  to{
    opacity:0;
    visibility:hidden;
    pointer-events:none;
  }
}

@keyframes headerDrop{
  from{opacity:0; transform:translateY(-18px);}
  to{opacity:1; transform:translateY(0);}
}

@keyframes fadeUp{
  from{opacity:0; transform:translateY(18px);}
  to{opacity:1; transform:translateY(0);}
}

@keyframes fadeOnly{
  from{opacity:0;}
  to{opacity:1;}
}

@keyframes titleIn{
  from{opacity:0; transform:translateX(-28px);}
  to{opacity:1; transform:translateX(0);}
}

@keyframes imageReveal{
  from{opacity:0; filter:blur(14px); transform:scale(1.04);}
  to{opacity:1; filter:blur(0); transform:scale(1);}
}

@keyframes goldSweep{
  0%{transform:translateX(-115%);}
  100%{transform:translateX(115%);}
}

@keyframes scissorDrift{
  0%, 100%{transform:rotate(-18deg) translate3d(0,0,0);}
  50%{transform:rotate(-14deg) translate3d(8px,-6px,0);}
}

@keyframes buttonSheen{
  0%{left:-65%; opacity:0;}
  22%{opacity:.9;}
  100%{left:120%; opacity:0;}
}

@keyframes serviceSnip{
  0%, 100%{transform:rotate(-16deg) scale(1);}
  38%{transform:rotate(10deg) scale(1.08);}
  68%{transform:rotate(-24deg) scale(.98);}
}

@keyframes dividerScissorRun{
  0%{opacity:0; transform:translateX(0) rotate(-18deg);}
  18%{opacity:.85;}
  100%{opacity:0; transform:translateX(calc(100vw - 92px)) rotate(8deg);}
}

@media(prefers-reduced-motion:no-preference){
  .site-header{
    opacity:0;
    animation:headerDrop .58s cubic-bezier(.2,.8,.2,1) .08s forwards;
  }

  .pill{
    opacity:0;
    animation:fadeUp .52s ease .2s forwards;
  }

  .hero h1 .title-line{
    opacity:0;
    animation:titleIn .58s cubic-bezier(.2,.8,.2,1) forwards;
  }

  .hero h1 .title-line:nth-child(1){
    animation-delay:.3s;
  }

  .hero h1 .title-line:nth-child(2){
    animation-delay:.4s;
  }

  .hero h1 .title-line:nth-child(3){
    animation-delay:.5s;
  }

  .hero h1 .title-gold::after{
    animation:goldSweep 1.05s ease .95s both;
  }

  .hero-text{
    opacity:0;
    animation:fadeUp .5s ease .62s forwards;
  }

  .hero-buttons a{
    opacity:0;
    animation:fadeUp .45s ease forwards;
  }

  .hero-buttons a:nth-child(1){
    animation-delay:.74s;
  }

  .hero-buttons a:nth-child(2){
    animation-delay:.82s;
  }

  .social-proof{
    opacity:0;
    animation:fadeUp .45s ease .9s forwards;
  }

  .hero-visual img{
    opacity:0;
    animation:imageReveal .82s cubic-bezier(.2,.8,.2,1) .34s forwards;
  }

  .quality-seal{
    opacity:0;
    animation:fadeUp .5s ease .66s forwards;
  }

  .signature-block{
    opacity:0;
    animation:fadeOnly .5s ease .86s forwards;
  }

  .stats-strip article{
    opacity:0;
    transform:translateY(16px);
    animation:fadeUp .45s ease forwards;
  }

  .stats-strip article:nth-child(1){animation-delay:.92s;}
  .stats-strip article:nth-child(2){animation-delay:1s;}
  .stats-strip article:nth-child(3){animation-delay:1.08s;}
  .stats-strip article:nth-child(4){animation-delay:1.16s;}

  .js .reveal-on-scroll{
    opacity:0;
    transform:translate3d(0, 22px, 0);
    transition:opacity .58s ease, transform .58s cubic-bezier(.2,.8,.2,1), filter .58s ease;
    transition-delay:var(--reveal-delay, 0ms);
    will-change:opacity, transform;
  }

  .js .reveal-on-scroll.reveal-gallery{
    transform:scale(.97);
  }

  .js .reveal-on-scroll.reveal-cta{
    filter:blur(10px);
  }

  .js .reveal-on-scroll.is-visible{
    opacity:1;
    transform:translate3d(0, 0, 0) scale(1);
    filter:blur(0);
  }

  .js .services-section::before,
  .js .gallery-section::before,
  .js .steps-section::before,
  .js .cta-section::before{
    transform:scaleX(0);
    transition:transform .78s cubic-bezier(.2,.8,.2,1);
  }

  .js .services-section.divider-play::before,
  .js .gallery-section.divider-play::before,
  .js .steps-section.divider-play::before,
  .js .cta-section.divider-play::before{
    transform:scaleX(1);
  }

  .js .services-section.divider-play::after,
  .js .gallery-section.divider-play::after,
  .js .steps-section.divider-play::after,
  .js .cta-section.divider-play::after{
    animation:dividerScissorRun .9s ease .1s both;
  }
}

@media(prefers-reduced-motion:reduce){
  *,
  *::before,
  *::after{
    animation-duration:.001ms !important;
    animation-iteration-count:1 !important;
    scroll-behavior:auto !important;
    transition-duration:.001ms !important;
  }

  .page-loader{
    display:none;
  }
}

@media(max-width:390px){
  .site-header,
  .hero,
  .stats-strip,
  .services-section,
  .gallery-section,
  .benefits-strip,
  .steps-section,
  .cta-section,
  .footer{
    padding-left:14px;
    padding-right:14px;
  }

  .brand-copy strong{
    font-size:15px;
  }

  .brand-mark{
    width:46px;
    height:46px;
  }

  .hero h1{
    font-size:40px;
  }

  .hero-text{
    font-size:16px;
  }

  .hero-visual{
    min-height:410px;
  }

  .quality-seal{
    right:8px;
    width:98px;
    height:98px;
  }

  .signature-block{
    right:auto;
    left:50%;
    bottom:9%;
    transform:translateX(-50%) rotate(-6deg);
  }

  .signature-block strong{
    font-size:26px;
  }

  .signature-block span{
    font-size:9px;
    letter-spacing:5px;
  }

  .cuts-gallery{
    grid-auto-columns:78%;
    margin-left:-14px;
    margin-right:-14px;
    padding-left:14px;
    padding-right:14px;
  }
}

@media(max-width:620px){
  .page-loader{
    animation:loaderExit .2s ease .72s forwards;
  }

  .loader-progress::before{
    animation-duration:.62s;
  }

  .hero-copy,
  .hero-text,
  .hero-buttons,
  .social-proof{
    width:100%;
    max-width:350px;
  }

  .hero-visual{
    width:100%;
    max-width:350px;
    margin:0 auto;
  }

  .hero-scissor-bg{
    display:none;
  }

  .primary-button,
  .secondary-button{
    width:100%;
  }

  .rating-inline{
    flex-basis:100%;
  }

  .signature-block{
    right:auto;
    left:50%;
    transform:translateX(-50%) rotate(-6deg);
  }
}

@media(max-width:620px) and (prefers-reduced-motion:no-preference){
  .hero h1 .title-line:nth-child(1){animation-delay:.18s;}
  .hero h1 .title-line:nth-child(2){animation-delay:.26s;}
  .hero h1 .title-line:nth-child(3){animation-delay:.34s;}
  .hero-text{animation-delay:.42s;}
  .hero-buttons a:nth-child(1){animation-delay:.5s;}
  .hero-buttons a:nth-child(2){animation-delay:.56s;}
  .social-proof{animation-delay:.62s;}
  .hero-visual img{animation-delay:.28s;}
  .quality-seal{animation-delay:.42s;}
  .signature-block{animation-delay:.58s;}
  .stats-strip article:nth-child(1){animation-delay:.68s;}
  .stats-strip article:nth-child(2){animation-delay:.73s;}
  .stats-strip article:nth-child(3){animation-delay:.78s;}
  .stats-strip article:nth-child(4){animation-delay:.83s;}
}

@media(min-width:620px){
  .hero-buttons{
    grid-template-columns:240px 200px;
  }

  .services-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .cuts-gallery{
    grid-auto-columns:220px;
  }
}

@media(min-width:860px){
  .site-header{
    padding-top:28px;
    background:transparent;
    backdrop-filter:none;
  }

  .primary-nav,
  .header-schedule{
    display:flex;
  }

  .hero{
    grid-template-columns:minmax(0, 1fr) minmax(420px, 620px);
    align-items:center;
    min-height:690px;
    padding-top:20px;
  }

  .hero h1{
    font-size:78px;
  }

  .hero-visual{
    min-height:650px;
  }

  .stats-strip{
    grid-template-columns:repeat(4, 1fr);
    margin-top:0;
  }

  .stats-strip article{
    border-right:1px solid rgba(255,255,255,.09);
    border-bottom:0;
  }

  .stats-strip article:last-child{
    border-right:0;
  }

  .section-heading{
    grid-template-columns:1fr auto;
    align-items:end;
  }

  .section-heading h2,
  .steps-section h2{
    font-size:40px;
  }

  .benefits-strip{
    grid-template-columns:repeat(4, 1fr);
  }

  .benefits-strip article{
    align-items:flex-start;
    border-right:1px solid rgba(255,255,255,.09);
    border-bottom:0;
  }

  .benefits-strip article:last-child{
    border-right:0;
  }

  .steps-grid{
    grid-template-columns:repeat(3, 1fr);
    gap:42px;
  }

  .steps-grid::before{
    content:'';
    position:absolute;
    left:8%;
    right:8%;
    top:44px;
    height:1px;
    background:linear-gradient(90deg, transparent, rgba(241,189,85,.9), transparent);
  }

  .steps-grid article{
    z-index:1;
  }

  .cta-card{
    grid-template-columns:200px minmax(270px, 1fr) 210px 230px;
    align-items:center;
    min-height:210px;
    padding:26px;
  }

  .cta-photo{
    min-height:156px;
  }

  .cta-card .primary-button{
    min-width:224px;
  }

  .footer{
    grid-template-columns:1.15fr .85fr .9fr .75fr;
    align-items:start;
  }

  .footer-column{
    min-height:118px;
    padding-left:28px;
    border-left:1px solid rgba(255,255,255,.09);
  }

  .footer-bottom{
    grid-column:1 / -1;
    grid-template-columns:1fr auto;
    align-items:center;
  }
}

@media(min-width:860px) and (max-width:1059px){
  .primary-nav{
    display:none;
  }

  .hero{
    grid-template-columns:1fr;
    min-height:auto;
  }

  .hero-copy{
    max-width:650px;
  }

  .hero h1{
    font-size:68px;
  }

  .hero-visual{
    width:100%;
    max-width:620px;
    min-height:560px;
    margin:0 auto;
  }
}

@media(min-width:1060px){
  .hero h1{
    font-size:86px;
  }

  .services-grid{
    grid-template-columns:repeat(6, minmax(0, 1fr));
  }

  .service-card{
    min-height:258px;
    padding:26px 22px;
  }

  .cuts-gallery{
    grid-auto-columns:160px;
    margin-left:0;
    margin-right:0;
    padding-left:0;
    padding-right:0;
  }
}
